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.15 | |
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.15')
-rw-r--r-- | 1418/CH26/EX26.15/EX26_15.jpg | bin | 0 -> 88809 bytes | |||
-rw-r--r-- | 1418/CH26/EX26.15/EX26_15.sce | 30 |
2 files changed, 30 insertions, 0 deletions
diff --git a/1418/CH26/EX26.15/EX26_15.jpg b/1418/CH26/EX26.15/EX26_15.jpg Binary files differnew file mode 100644 index 000000000..0677b2a0c --- /dev/null +++ b/1418/CH26/EX26.15/EX26_15.jpg diff --git a/1418/CH26/EX26.15/EX26_15.sce b/1418/CH26/EX26.15/EX26_15.sce new file mode 100644 index 000000000..3cb008e22 --- /dev/null +++ b/1418/CH26/EX26.15/EX26_15.sce @@ -0,0 +1,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:");
|