blob: 3cb008e22664b316f15ddea3086a1d00971fa1d5 (
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
|
//4-POLE LONG SHUNT GENERATOR
//EXAMPLE 26.15
clc;
funcprot(0);
//Variable Initialisation
N=1200;.................//Speed of the generator in rpm
Po=25;.................//Output power in Kilo Watts
P=4;....................//Number of poles
V=500;..................//Terminal voltage in Volts
E=240;..................//Induced voltage at rated speed in Volts
Ra=0.03;...............//Armature resistance in Ohms
Rse=0.04;.............//Series field resistance in Ohms
Rsh=200;...............//Shunt field resistance in Ohms
Vb=1*2;...............//Brush drop in Volts
Phi=0.02;..........//Air gap flux per pole in Webers
Al=P;...............//Number of parallel paths in lap wound generator
I=(Po*10^3)/V;.............//Load currrent in Amperes
Ish=V/Rsh;....................//Current across shunt field resistance in Amperes
Ia=I+Ish;.............//Armature current in Amperes
Vse=Ia*Rse;..........//Series field drop in Volts
Va=Ia*Ra;............//Armature drop in Volts
E=V+Vse+Va+Vb;..........//Generated EMF in Volts
disp(E,"Generated EMF in Volts:");
Z=E*60*Al/(Phi*N*P);..............//Total number of conductors
y=round(Z);....................//Rounding of decimal places
disp(y,"Total number of conductors:");
|