blob: d536c6df7d23ee76af3764ff346e087581951d66 (
plain)
1
2
3
4
5
6
7
8
9
|
//calculate the synchronous speed ,slip,frequncy induced emf
f=50
p=4
Ns=120*f/p
N=1460
s=(Ns-N)/Ns
f1=(s*f)
disp( 'f1='+string(f1)+'hz' , 's='+string(s)+' ' , 'Ns='+string(Ns)+'rpm' )
|