blob: 676c0b650ab6ebb9551ef4ff93be831421e4f8d8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc;
Te=200;
s=0.04;
c=4; //given multiplying factor of leakage reactance
//3V*V=a*WS
a=Te*s*(((1+(1/s))*(1+(1/s)))+((c+c)*(c+c)));
Test=a*(1/((1+1)*(1+1)+(c+c)*(c+c)));
Tem=a*(1/2)*(1/(1+sqrt((1)*(1)+(c+c)*(c+c))));
mprintf('The starting torque is %f Nm \n The maximun Torque is %f Nm',Test,Tem);
|