blob: 7174390661d60e497939b9131e8749ed73dfb1bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Calculating the speed of running motor and its slip
//Chapter 4
//Example 4.5
//page 294
clear;
clc;
disp("Example 4.5")
f=50;...................//induction motor frequency in hertz
fr=1.5;.................//rotor frequency in hertz
S=fr/f;................//slip
P=8;...................//pole
Ns=(120*f)/P;
printf("synchronous speed=%frpm",Ns)
Nr=Ns-(S*Ns);
printf("\nmotor running speed=%frpm",Nr)
S1=S*100;
printf("\nslip percent=%fpercent",S1)
|