From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2642/CH11/EX11.6/Ex11_6.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 2642/CH11/EX11.6/Ex11_6.sce (limited to '2642/CH11/EX11.6') 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 ); + -- cgit