diff options
Diffstat (limited to '1418/CH26/EX26.4')
-rw-r--r-- | 1418/CH26/EX26.4/EX26_4.jpg | bin | 0 -> 90989 bytes | |||
-rw-r--r-- | 1418/CH26/EX26.4/EX26_4.sce | 22 |
2 files changed, 22 insertions, 0 deletions
diff --git a/1418/CH26/EX26.4/EX26_4.jpg b/1418/CH26/EX26.4/EX26_4.jpg Binary files differnew file mode 100644 index 000000000..cb8f83a65 --- /dev/null +++ b/1418/CH26/EX26.4/EX26_4.jpg diff --git a/1418/CH26/EX26.4/EX26_4.sce b/1418/CH26/EX26.4/EX26_4.sce new file mode 100644 index 000000000..3fe9acb73 --- /dev/null +++ b/1418/CH26/EX26.4/EX26_4.sce @@ -0,0 +1,22 @@ +//EXAMPLE 26.4
+//LONG SHUNT COMPOUND GENERATOR
+
+clc;
+funcprot(0);
+
+//Variable Initialisation
+I=50;.............//Load current in Amperes
+V=500;.............//Terminal voltage in Volts
+Rsh=250;............//Resistance of shunt field in Ohms
+Ra=0.05;...........//Resistance of armature in Ohms
+Rse=0.03;.........//Resistance of series field in Ohms
+Vb=2*1;............//Brush drop in Volts
+
+Ish=V/Rsh;..........//Current through shunt field in Amperes
+Ia=I+Ish;...........//Armature current in Amperes
+Va=Ia*Ra;..........//Armature voltage drop in Volts
+Vse=Ia*Rse;........//Voltage drop on series field in Volts
+
+
+Eg=V+Va+Vb+Vse;..........//EMF generated in the armature in volts
+disp(Eg,"EMF generated in the armature in Volts");
|