summaryrefslogtreecommitdiff
path: root/3574/CH4/EX4.1/EX4_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3574/CH4/EX4.1/EX4_1.sce')
-rw-r--r--3574/CH4/EX4.1/EX4_1.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3574/CH4/EX4.1/EX4_1.sce b/3574/CH4/EX4.1/EX4_1.sce
new file mode 100644
index 000000000..a2629f77a
--- /dev/null
+++ b/3574/CH4/EX4.1/EX4_1.sce
@@ -0,0 +1,18 @@
+// Example 4.1
+// Computation of synchronous speed of a six pole induction motor
+// Page No. 140
+
+clc;
+clear;
+close;
+
+// Given data
+f=60; // Frequency
+p=6; // Number of poles
+
+
+fs=f*0.85; // Frequency is 85% of its rated value
+ns=120*fs/p; // Synchronous speed
+
+// Display result on command window
+printf("\n Synchronous speed of a six pole induction motor = %0.0f r/min ",ns);