diff options
Diffstat (limited to '1628/CH15/EX15.4')
-rwxr-xr-x | 1628/CH15/EX15.4/Ex15_4.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/1628/CH15/EX15.4/Ex15_4.sce b/1628/CH15/EX15.4/Ex15_4.sce new file mode 100755 index 000000000..0a259dbff --- /dev/null +++ b/1628/CH15/EX15.4/Ex15_4.sce @@ -0,0 +1,25 @@ + + + // Examle 15.4 + +p=4; // No.Of poles +f=50; // Frequency +Ns=(120*f)/p; // Synchronous speed +disp(' The Synchronous Speed (Ns) = '+string(Ns)+' rpm'); + +s1=0.04; // Slip +N1=Ns*(1-s1); // The Speed of Rotor +disp('(b) The Speed of Rotor (at s=0.04) = '+string(N1)+' rpm'); + +N=600; // Speed Of rotation +s=(Ns-N)/Ns; // When speed is (600 rmp) Then Slip +fr=s*f; // The Frequence of Rotor (fr) +disp('(d) The Frequence of Rotor (fr) = '+string(fr)+' Hz'); + + + + + // p 594 15.4 + + + |