summaryrefslogtreecommitdiff
path: root/3574/CH10/EX10.1/EX10_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3574/CH10/EX10.1/EX10_1.sce')
-rw-r--r--3574/CH10/EX10.1/EX10_1.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3574/CH10/EX10.1/EX10_1.sce b/3574/CH10/EX10.1/EX10_1.sce
new file mode 100644
index 000000000..b68da3e10
--- /dev/null
+++ b/3574/CH10/EX10.1/EX10_1.sce
@@ -0,0 +1,26 @@
+// Example 10.1
+// Computation of (a) Induced emf (b) Frequency of the rectangular voltage
+// wave in the armature winding
+// Page No. 394
+
+clc;
+clear;
+close;
+
+// Given data
+E1=136.8; // Generated emf
+P=6; // Number of poles
+n=1180; // Operating speed of machine
+
+// (a) Induced emf
+
+E2=E1*0.75*2;
+
+// (b) Frequency of the rectangular voltage wave in the armature winding
+
+f=P*n*0.75/120;
+
+//Display result on command window
+printf("\n Induced emf = %0.1f V ",E2);
+printf("\n Frequency of the rectangular voltage wave = %0.2f Hz ",f);
+