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

//INPUT DATA
N=600;//Speed of 12 pole 3 phase alternator in rpm
P=12;//No. of poles of alternator
n=6;//No. of poles in induction motor
s=2.5;//slip of the motor in %

//CALCULATIONS
f=(N*P)/120;//Alternator supply frequency in Hz
Ns=(120*f)/n;//Synchronous speed in rpm
N1=(Ns-((s*Ns)/100));//Full load speed of the motor when the slip is 2.5%

//OUTPUT
mprintf('Full load speed of the motor when the slip is 2.5 percent = %irpm',N1)

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