blob: e66d4578946b2b8e4fb7cfc2247f85977fbac24c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
clear
//
//case a slip
f=50
p=4
ns=(120*f)/p //synchronous speed
printf("\n %0.1f",ns)
n=1440
s=(1500-1440)/(1500)
printf("\n slip= %e pu",s)
//case b rotor resistance loss
pd=25 //power developed
ml=1 //mechanical losses
pm=pd+ml //The total mechanical power developed
pag=pm/(1-s)
rl=s*pag
printf("\n rotor resistance loss= %0.1f kw",rl)
//case c the total input if stator losses are 1.75 kw
sl=1.75 //stator loss
ti=pag+sl
printf("\n total input= %0.1f kw",ti)
//case d efficiency
e=(pd*100)/ti
printf("\n %0.3f ",e)
//case e line current
pf=0.85 //power factor
e1=440
l=(ti*1000)/((3**0.5)*e1*pf)
printf("\n line current= %0.1f A",l)
//case f
fr=s*f
n=fr*60
printf("\n The number of complete cycles of the rotor emf per minute is= %0.0f ",n)
|