summaryrefslogtreecommitdiff
path: root/1541/CH5/EX5.1/Chapter5_Example1.sce
blob: 995bdd88b64215822cb9412e3c53dea8649bec26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//Chapter-5, Example 5.1, Page 5.6
//=============================================================================
clc
clear

//INPUT DATA
f=50;//Frequency in Hz
Z=200;//Number of conductors
kp=1;//Pitch factor
kd=0.96;//Distribution factor
q=0.05;//Flux in Wb

//CALCULATIONS
Eph=(2.22*kp*kd*f*q*Z);//EMF generated per phase in V
LV=(Eph*sqrt(3));//Line voltage in V

//OUTPUT
mprintf('(i)Emf generated per phase is %3.1f V \n(ii)Line voltage is %3.1f V',Eph,LV)

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