summaryrefslogtreecommitdiff
path: root/2642/CH11/EX11.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2642/CH11/EX11.6
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2642/CH11/EX11.6')
-rwxr-xr-x2642/CH11/EX11.6/Ex11_6.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/2642/CH11/EX11.6/Ex11_6.sce b/2642/CH11/EX11.6/Ex11_6.sce
new file mode 100755
index 000000000..1c62d307f
--- /dev/null
+++ b/2642/CH11/EX11.6/Ex11_6.sce
@@ -0,0 +1,23 @@
+// FUNDAMENTALS OF ELECTICAL MACHINES
+// M.A.SALAM
+// NAROSA PUBLISHING HOUSE
+// SECOND EDITION
+
+// Chapter 11 : SINGLE-PHASE MOTORS
+// Example : 11.6
+
+clc;clear; // clears the console and command history
+
+// Given data
+r_t = 36 // rotor teeth of stepper motor
+N = 4 // stator phases
+
+// caclulations
+T_p = 360/r_t // tooth pitch
+teta = 360/(N*r_t) // step angle
+
+// display the result
+disp("Example 11.6 solution");
+printf(" \n Tooth pitch \n T_p = %.0i degree \n", T_p );
+printf(" \n Strp angle \n teta = %.1f degree \n", teta );
+