summaryrefslogtreecommitdiff
path: root/1541/CH3/EX3.1/Chapter3_Example1.sce
blob: 1c809f3ab5ef9eaf41070d173b94222af586844d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Chapter-3, Example 3.1, Page 3.6
//=============================================================================
clc
clear

//INPUT DATA
N=900;//Rotor speed in rpm
f=50;//Power supply frequency in Hz
P=6;//No. of poles

//CALCULATIONS
Ns=(120*f)/P;//Synchronous speed in rpm
s=((Ns-N)/Ns)*100;//%slip 
f1=(s*f)/100;//Frequency of rotor current in Hz

//OUTPUT
mprintf('Slip of a 3 phase motor is %i percent\nFrequency of rotor current is %i Hz',s,f1)

//=================================END OF PROGRAM==============================