summaryrefslogtreecommitdiff
path: root/371/CH15/EX15.1/15_1.sci
blob: 7ea73545ce0fdfa775b8d5afb4153bc991029a41 (plain)
1
2
3
4
5
6
7
8
9
10
11
//The ac Motor Control//
//Example 15.1//
S1=2;//value of slip in percentage of slip ring induction motor//
Ns=1000;//value of stator speed in rpm//
Nr=500;//value of rotor speed in rpm//
S2=(Ns-Nr)*100/Ns;//valu of slip in percentage of motor//
printf('value of slip of motor=S2=%fpercentage',S2);
I1=50;//stator current in amps//
I2=I1*sqrt(S2/S1);
printf('\nvalue of new stator current=I2=%fAmp',I2);