summaryrefslogtreecommitdiff
path: root/2642/CH7/EX7.8
diff options
context:
space:
mode:
Diffstat (limited to '2642/CH7/EX7.8')
-rwxr-xr-x2642/CH7/EX7.8/Ex7_8.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/2642/CH7/EX7.8/Ex7_8.sce b/2642/CH7/EX7.8/Ex7_8.sce
new file mode 100755
index 000000000..09744502c
--- /dev/null
+++ b/2642/CH7/EX7.8/Ex7_8.sce
@@ -0,0 +1,24 @@
+// FUNDAMENTALS OF ELECTICAL MACHINES
+// M.A.SALAM
+// NAROSA PUBLISHING HOUSE
+// SECOND EDITION
+
+// Chapter 7 : THREE-PHASE INDUCTION MOTOR
+// Example : 7.8
+
+clc;clear; // clears the console and command history
+
+// Given data
+v_s = 120 // train speed in km/h
+f = 50 // frequency in Hz
+
+// caclulations
+v_s = 120*1000/(60*60) // train speed in m/s
+w = v_s/(2*f) // length of the pole-pitch in m
+
+// display the result
+disp("Example 7.8 solution");
+printf(" \n Length of the pole-pitch lenear induction motor \n w = %.2f m \n", w );
+
+
+