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.23/EX26_23.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.23/EX26_23.sce')
-rw-r--r-- | 1418/CH26/EX26.23/EX26_23.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/1418/CH26/EX26.23/EX26_23.sce b/1418/CH26/EX26.23/EX26_23.sce new file mode 100644 index 000000000..7ca096302 --- /dev/null +++ b/1418/CH26/EX26.23/EX26_23.sce @@ -0,0 +1,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:");
+
+
|