diff options
Diffstat (limited to '1319/CH6/EX6.14/6_14.sce')
-rw-r--r-- | 1319/CH6/EX6.14/6_14.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1319/CH6/EX6.14/6_14.sce b/1319/CH6/EX6.14/6_14.sce new file mode 100644 index 000000000..2a68abb02 --- /dev/null +++ b/1319/CH6/EX6.14/6_14.sce @@ -0,0 +1,20 @@ +// Induced EMF and Armature current in a long shunt compound generator
+
+clc;
+clear;
+
+Il=50; // Load Current
+Vl=500; // Load Voltage
+Ra=0.05; // Armature Resistance
+Rfs=0.03; // Series Field Resistance
+Rfp=250; // Shunt Field Resistance
+Vb=2; // Contact drop
+
+Ish=Vl/Rfp;
+
+Ia=Il+Ish;
+
+E=Vl+(Ia*(Ra+Rfs))+Vb; // Induced EMF
+
+printf('The Induced EMF and Armature Current is %g V and %g A respectively \n',E,Ia)
+
|