blob: fdba083195d8b0e24c82fdf3891442cfb0325705 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// To actual rotor speed and the rotor frequency at 3 percent slip
clc;
clear;
P=2;
f=50;
V=400;
Vph=V/sqrt(3);
s=3/100;
Ns=120*f/P;
Nr=Ns*(1-s);
rf=s*f; // Rotor Frequency
printf('The Actual rotor speed = %g rpm \n',Nr)
printf('The rotor frequency = %g Hz \n',rf)
|