diff options
Diffstat (limited to '608/CH21/EX21.11/21_11.sce')
-rwxr-xr-x | 608/CH21/EX21.11/21_11.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/608/CH21/EX21.11/21_11.sce b/608/CH21/EX21.11/21_11.sce new file mode 100755 index 000000000..fe40f60b9 --- /dev/null +++ b/608/CH21/EX21.11/21_11.sce @@ -0,0 +1,23 @@ +//Problem 21.11: A short-shunt compound generator supplies 80 A at 200 V. If the field resistance, Rf = 40 ohm, the series resistance, Rse = 0.02ohms and the armature resistance, Ra = 0.04 ohm, determin the e.m.f. generated.
+
+//initializing the variables:
+Is = 80; // in amperes
+Vs = 200; // in Volts
+Rf = 40; // in ohms
+Rse = 0.02; // in ohms
+Ra = 0.04; // in ohms
+
+//calculation:
+//Volt drop in series winding
+Vse = Is*Rse
+//P.d. across the field winding = p.d. across armature
+V1 = Vs + Vse
+//Field current, If
+If = V1/Rf
+//Armature current
+Ia = If + Is
+//Generated e.m.f. E
+E = V1 + Ia*Ra
+
+printf("\n\n Result \n\n")
+printf("\n generated e.m.f. is %.0f V ",E)
\ No newline at end of file |