summaryrefslogtreecommitdiff
path: root/1418/CH27/EX27.10/EX27_10.sce
blob: 11418721e95e890cebc03870a2eea9ac81448426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//EXAMPLE 27.10
//DC MACHINE

clc;
funcprot(0);

//Variable Initialisation
P=4;.......//Total number of poles
N=1500;.......//Speed in rpm
Cd=30;.........//Commutator distance in Centi Meter
Ia=150;......//Armature current in Amperes
Wb=1.25;.......//Thickness of brush in Centi Meter
L=0.07;.......//Self inductance of each armature coil in Mili Henry
Aw=2;........//Number of parallel paths in a wave wound generator

I=Ia/Aw;............//Current per conductor in Amperes
v=3.14*Cd*(N/60);........//Peripheral velocity in cm/s
Tc=Wb/v;.............//Time for each commutation in Seconds
E=L*2*I*10^-3/Tc;...........//EMF induced in each coil dring commutation in Volts
r=round(E*10)/10;........//Rounding of decimal places
disp(r,"EMF induced in each coil dring commutation in Volts:");