blob: 7ca096302411f7690665159e0dc31e454d631a38 (
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
|
//EXAMPLE 26.23
//6-POLE SHUNT GENERATOR
clc;
funcprot(0);
//Variable Initialisation
V=250;..................//Terminal voltage in Volts
Po=10;.................//Output power in Kilo Watts
P=6;..................//Total number of poles
N=1000;................//Speed of the generator in rpm
Al=P;..................//Number of parallel paths in a lap wound generator
Z=534;..................//Total number of conductors
Ra=0.4;......................//Armature resistance in Ohms
Lcu=0.64;................//Full load copper loss in Kilo Watts
Vb=1;....................//Brush drop in Volts
I=(Po*1000)/V;..............//Load current in Amperes
Ia=I;......................//Armature current in Amperes
Lacu=(Ra*Ia^2);............//Armature copper loss in Watts
Va=Ia*Ra;.................//Armature drop in Volts
E=V+Vb+Va;................//Generated EMF in Volts
Phi=(E*60*Al*1000)/(P*N*Z);....//Flux per pole in Mili Webers
disp(Phi,"Flux per pole in Mili Webers:");
|