diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1418/CH26/EX26.11.a/EX26_11a.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
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:");
|