summaryrefslogtreecommitdiff
path: root/1418/CH26/EX26.32
diff options
context:
space:
mode:
Diffstat (limited to '1418/CH26/EX26.32')
-rw-r--r--1418/CH26/EX26.32/EX26_32.jpgbin0 -> 90722 bytes
-rw-r--r--1418/CH26/EX26.32/EX26_32.sce18
2 files changed, 18 insertions, 0 deletions
diff --git a/1418/CH26/EX26.32/EX26_32.jpg b/1418/CH26/EX26.32/EX26_32.jpg
new file mode 100644
index 000000000..634bfeac6
--- /dev/null
+++ b/1418/CH26/EX26.32/EX26_32.jpg
Binary files differ
diff --git a/1418/CH26/EX26.32/EX26_32.sce b/1418/CH26/EX26.32/EX26_32.sce
new file mode 100644
index 000000000..8ca6e238f
--- /dev/null
+++ b/1418/CH26/EX26.32/EX26_32.sce
@@ -0,0 +1,18 @@
+//EXAMPLE 26.32
+//LONG SHUNT DC COMPOUND GENERATOR
+
+clc;
+funcprot(0);
+
+//Variable Initialisation
+Po=110;........//Output power in Kilo Watts
+V=220;........//Terminal voltage in Volts
+Ra=0.01;........//Armature resistance in Ohms
+Rse=0.002;.......//Series field resistance in Ohms
+Rsh=110;..........//Shunt field resistance in Ohms
+
+I=(Po*1000)/V;.....//Load current in Amperes
+Ish=V/Rsh;..........//Shunt field current in Amperes
+Ia=I+Ish;..........//Armature current in Amperes
+E=V+(Ia*(Ra+Rse));...//Generated EMF in Volts
+disp(E,"Generated EMF in Volts:");