summaryrefslogtreecommitdiff
path: root/1994/CH9/EX9.2/Example9_2.sce
blob: 5be61bfff87959d02ada9c97ba2eb3d3fd2d28d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Chapter-9,Example9_2,pg 9_15
P=4
phi=21*10^-3//flux(in Wb)
N=1120
C=42//coils
tpC=8//turns per coil
t=C*tpC//total turns
Z=2*t
//for lap wound
A=P
E=phi*P*N*Z/(60*A)
printf("e.m.f for lap wound\n")
printf("E=%.f V\n",E)
//for wave wound
A=2
E=263.424
N=E*60*A/(phi*P*Z)
printf("speed of generator for wave wound\n")
printf("N=%.f r.p.m\n",N)