summaryrefslogtreecommitdiff
path: root/3574/CH1/EX1.9/EX1_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3574/CH1/EX1.9/EX1_9.sce')
-rw-r--r--3574/CH1/EX1.9/EX1_9.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/3574/CH1/EX1.9/EX1_9.sce b/3574/CH1/EX1.9/EX1_9.sce
new file mode 100644
index 000000000..dc3a99e76
--- /dev/null
+++ b/3574/CH1/EX1.9/EX1_9.sce
@@ -0,0 +1,25 @@
+// Example 1.9
+// Computation of (a) Frequency of the generated emf (b) Speed of the rotor
+//Page No. 31
+
+clc;
+clear all;
+close;
+
+// Given data
+Erms=100; // Voltage generated in armature coil
+N=15; // Number of turns in armature coil
+phimax=0.012; // Flux per pole
+P=4; // Number of poles
+
+// (a) frequency of the generated emf
+f=Erms/(4.44*N*phimax);
+
+// (b) speed of the rotor
+n=2*f/P;
+nmin=n*60;
+
+//Display result on command window
+printf("\n Frequency of the generated emf = %0.0f Hz ",f);
+printf("\n Speed of the rotor = %0.2f r/s",n);
+printf("\n Speed of the rotor = %0.0f r/min",nmin);