summaryrefslogtreecommitdiff
path: root/2642/CH11/EX11.6/Ex11_6.sce
blob: 1c62d307f9f32aba7de22e773b4eed80cb16b1cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 );