diff options
Diffstat (limited to '3574/CH10/EX10.1')
-rw-r--r-- | 3574/CH10/EX10.1/EX10_1.png | bin | 0 -> 110475 bytes | |||
-rw-r--r-- | 3574/CH10/EX10.1/EX10_1.sce | 26 |
2 files changed, 26 insertions, 0 deletions
diff --git a/3574/CH10/EX10.1/EX10_1.png b/3574/CH10/EX10.1/EX10_1.png Binary files differnew file mode 100644 index 000000000..3382725cb --- /dev/null +++ b/3574/CH10/EX10.1/EX10_1.png 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);
+
|