diff options
Diffstat (limited to '1418/CH26/EX26.11.a/EX26_11a.sce')
-rw-r--r-- | 1418/CH26/EX26.11.a/EX26_11a.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/1418/CH26/EX26.11.a/EX26_11a.sce b/1418/CH26/EX26.11.a/EX26_11a.sce new file mode 100644 index 000000000..ce5ac9ceb --- /dev/null +++ b/1418/CH26/EX26.11.a/EX26_11a.sce @@ -0,0 +1,24 @@ +//EXAMPLE 26.11(a)
+//8-POLE DC SHUNT GENERATOR
+
+clc;
+funcprot(0);
+
+//Variable Initialisation
+P=8;.....................//Number of poles
+Z=778;.....................//Number of conductors
+N=500;..................//Speed of the generator in rpm
+Rl=12.5;................//Load resistance in Ohms
+Ra=0.24;.................//Armature resistance in Ohms
+Rf=250;..................//Field resistance in Ohms
+V=250;...................//Terminal voltage in Volts
+Aw=2;....................//Number of parallel paths for wave winding
+
+Il=V/Rl;....................//Load current in Amperes
+Ish=V/Rf;...................//Shunt current in Amperes
+Ia=Il+Ish;.................//Armature current in Amperes
+Eg=V+(Ia*Ra);...............//Induced EMF in Volts
+Phi=Eg*60*Aw/(Z*N*P);...........//Flux per pole in Webers
+y=Phi*1000;.....................//Flux per pole in Mili Webers
+y1=round(y*100)/100;...........//Rounding of decimal places
+disp(y1,"Flux per pole in Mili Webers:");
|