blob: a7e9199a38516c85ed87a4bae6ae70362ea55168 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Example 1.45
clear; clc; close;
format('v',4);
// Given data
Zi=0.6+%i*7;//in ohm
Zo=3.5+%i*1.5;//in ohm
Sfl=6;//in %
//Calculations
//At starting S=1
Ro=real(Zo);//in ohm
Ri=real(Zi);//in ohm
Xo=imag(Zo);//in ohm
Xi=imag(Zi);//in ohm
Zeq1=Zi*Zo/(Zi+Zo);//equivalent impedence in ohm
Req1=real(Zeq1);//in ohm
//I2=V/Zeq
//Tst=I2^2*R2;//in N-m
//During full load
S=Sfl/100;//slip
Zi=Ri/S+%i*Xi;//in ohm
Zo=Ro/S+%i*Xo;//in ohm
Zeq2=Zi*Zo/(Zi+Zo);//equivalent impedence in ohm
Req2=real(Zeq2);//in ohm
//I2=V/Zeq
//Tfl=I2^2*R2;//in N-m
TstByTfl=(1/abs(Zeq1)^2)/(1/abs(Zeq2)^2)*Req1/Req2;//ratio
disp("Starting torque is "+string(TstByTfl*100)+"% of full load torque.");
//Answer in the book is not accurate.
|