Proj 3 Report

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 6

WESTERN MICHIGAN UNIVERSITY

ADVANCED ELECTRIC DRIVES

ECE 6950

GIRIDHAR SINGH GAJENDRA SINGH

WIN:-976814726
Solution:-
An induction machine has the following constants and ratings:
200 hp, 4 pole, 3 phase, 60 Hz, Yconnected
Rs = 0.183
Rr = 0.277
Lm = 0.0538 H,
Ls = 0.0553 H,
Lr = 0.056 H,
B = 0,
Load torque = T1 = 0 N.m,
J = 0.0165 kg.m2.
Base power is 5 hp

In general arbitrary model:-

In stator refrence frame:-


Rotor reference frame:-

Synchronous reference frame:-

Simulink diagram:-
Outputs:-
Torque v/s speed characteristics:-

Matlab code:-
clear all
clc
% Example 3-4 File Name EX3_4calc.m
% Induction Motor Parameters
Rs=0.183;
Rr=0.277;
Jeq=0.0165;
p=4;

% Steady State Operating Condition


f=60; VLLrms= 200; s=0.01; % phase-a voltage is at its positive peak at t=0
Wsyn=2*pi*f; % synchronous speed in
electrical rad/s
Wm=(1-s)*Wsyn; % rotor speed in
electrical rad/s

% Calculation of machine inductances


Ls = 0.0553;
Lm = 0.0538;
Lr = 0.056;
tau_r=Lr/Rr;

TL_0=0;
Wmech_0=0;
fl_sd_0=eps;
fl_sq_0=eps;
fl_rd_0=eps;
fl_rq_0=eps;
thetar=0;

You might also like