blob: a02ef58f99b4de0f513224a61602f930c07affd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Calculating the running speed and frequency of the rotor magnet current
//Chapter 4
//Example 4.9
//page 299
clear;
clc;
disp("Example 4.9")
fr=2;.............................//frequency of motor induced emf in hertz
f=50;.............................//frequency of induction motor in hertz
S=(fr/f)*100;................//slip percent
P=6;..............................//pole
Ns=(120*f)/P;
Nr=Ns-((Ns*S)/100);
printf("percentage slip=%fpercent",S)
printf("\nrotor speed=%frpm",Nr)
|