summaryrefslogtreecommitdiff
path: root/3574/CH10/EX10.6/EX10_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3574/CH10/EX10.6/EX10_6.sce')
-rw-r--r--3574/CH10/EX10.6/EX10_6.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3574/CH10/EX10.6/EX10_6.sce b/3574/CH10/EX10.6/EX10_6.sce
new file mode 100644
index 000000000..b51b04226
--- /dev/null
+++ b/3574/CH10/EX10.6/EX10_6.sce
@@ -0,0 +1,26 @@
+// Example 10.6
+// Computation of Induced emf
+// Page No. 418
+
+clc;
+clear;
+close;
+
+// Given data
+P=25000; // Power of the generator
+VT=250; // Rated voltade of the machine
+Ra=0.1053; // Armature resistance
+Rip=0.0306; // Resistance of interpolar winding
+Rcw=0.0141; // Resistance of compensating windings
+
+
+// Induced emf
+Ia=P/VT; // Armature current
+Racir=Ra+Rip+Rcw; // Resistance of armature circuit
+Ea=VT+Ia*Racir; // Induced emf
+
+
+// Display result on command window
+printf("\n Induced emf = %0.0f V ",Ea);
+
+