summaryrefslogtreecommitdiff
path: root/3760/CH6/EX6.34/Ex6_34.sce
blob: 69f94a8213c1557de13426e19abb86e0f08cc022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
clc;
f1=50; // rated frequency of 3- phase induction motor
f2=40; // applied frequency
vr=0.9; // ratio of applied voltage to rated voltage
m=3; // number o phases
fr=f2/f1; // ratio of frequencies
ir=fr/vr;
printf('Ratio of starting current at %d Hz to starting current at %d Hz is %f \n',f1,f2,ir);
tr=(m/f1)*(f2/m)*(fr/vr)^2;
printf('Ratio of starting torque at %d Hz to starting torque at %d Hz is %f \n',f1,f2,tr);
tmr=(m/f1)*(f2/m)*(fr/(vr)^2);
printf('Ratio of maximum torque at %d Hz to maximum torque at %d Hz is %f \n',f1,f2,tmr);
vr1=sqrt((m/f1)*(f2/m)*fr^2);
printf('For the same starting torque ratio of voltage at %d Hz to ratio of voltage at %d Hz is %f\n',f2,f1,vr1);
vr2=sqrt((m/f1)*(f2/m)*fr);
printf('For the same maximum torque ratio of voltage at %d Hz to ratio of voltage at %d Hz is %f\n',f2,f1,vr2);
// answer for ratio of v2/v1 for same starting torque is slightly different from what is given in book