blob: 0a259dbff289b58280666cf42f489fcf3f4acfab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
|