summaryrefslogtreecommitdiff
path: root/1418/CH26/EX26.7/EX26_7.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1418/CH26/EX26.7/EX26_7.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-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.7/EX26_7.sce')
-rw-r--r--1418/CH26/EX26.7/EX26_7.sce34
1 files changed, 34 insertions, 0 deletions
diff --git a/1418/CH26/EX26.7/EX26_7.sce b/1418/CH26/EX26.7/EX26_7.sce
new file mode 100644
index 000000000..7b17eb0d8
--- /dev/null
+++ b/1418/CH26/EX26.7/EX26_7.sce
@@ -0,0 +1,34 @@
+//EXAMPLE 26.7
+//LONG SHUNT COMPOUND GENERATOR
+
+clc;
+funcprot(0);
+
+//Variable Initialisation
+Po=300*10^3;.............//Output power in Watts
+V=600;.............//Terminal voltage in Volts
+Rsh=75;............//Resistance of shunt field in Ohms
+Ra=0.03;...........//Resistance of armature in Ohms
+Rse=0.012;.........//Resistance of series field in Ohms
+Rd=0.036;...........//Diverter resistance in Ohms
+Rcf=0.011;.........//Commutating field winding resistance in Ohms
+Io=Po/V;..........//Output current in Amperes
+Ish=V/Rsh;..........//Current through shunt field in Amperes
+Ia=Io+Ish;...........//Armature current in Amperes
+
+Vse=Ia*Rse;........//Voltage drop on series field in Volts
+Rc=(Rse*Rd)/(Rse+Rd);........//Combined resistance of series field resistance and diverter resistance in Ohms
+Rta=Ra+Rc+Rcf;.........//Total armature circuit resistance in Ohms
+Va=Ia*Rta;..........//Armature voltage drop in Volts
+Eg=V+Va;..........//EMF generated in the armature in Volts
+disp(Eg,"EMF generated in the armature in Volts:");
+
+Pg=Eg*Ia/1000;..........//Power generated by the armature in Kila Watts
+y=round(Pg*10)/10;
+
+disp(y,"Power generated by the armature in Kilo Watts:");
+
+
+
+
+