summaryrefslogtreecommitdiff
path: root/503/CH9/EX9.10/ch9_10.sci
blob: 9e6ca1df0507728befd9fb24be0ed8dfa88a350d (plain)
1
2
3
4
5
6
7
8
9
//to calculate max torque and slip, starting torque

clc;
k=5;    //k=I_s/I_fl
s_fl=0.04;
s_max_T=sqrt((s_fl^2*(1-k^2))/((k*s_fl)^2-1));disp(s_max_T,'slip');
T_max=.5*(s_max_T^2+s_fl^2)/(s_fl*s_max_T);disp(T_max,'max torque(pu)');

T_s=k^2*s_fl;disp(T_s,'starting torque(pu)');