blob: 0861c8ed8e553890ff71599cdc079665dd505e16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc;
f=50; //frequency of stator
P=6;
NofO=90; //number of oscillation
f2=NofO/60; //rotor frequency
s=f2/f; //slip
Ns=(120*f)/P; //synchronous speed
Nr=Ns*(1-s); //rotor speed
mprintf('The rotor speed is %f rpm',Nr);
|