summaryrefslogtreecommitdiff
path: root/1092/CH9/EX9.2/Example9_2.sce
blob: 28f36e6da6cfb8b15efde43dd1a119e128f7dae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Electric Machinery and Transformers
// Irving L kosow 
// Prentice Hall of India
// 2nd editiom

// Chapter 9: POLYPHASE INDUCTION (ASYNCHRONOUS) DYNAMOS
// Example 9-2

clear; clc; close; // Clear the work space and console.

// Given data

s_a = 5*(1/100); // Slip (case a)
s_b = 7*(1/100); // Slip (case b)

// Given data and calculated values from Ex.9-1
f_a = 60 ; // Line frequency in Hz (case a)
f_b = 50 ; // Line frequency in Hz (case b)
S_a = 1200 ; // Speed in rpm of the rotating magnetic field (case a)
S_b = 1000 ; // Speed in rpm of the rotating magnetic field (case b)

// Calculations

// case a
S_r_a = S_a * ( 1 - s_a ); // Rotor speed in rpm when slip is 5% (case a)

// case b
S_r_b = S_b * ( 1 - s_b ); // Rotor speed in rpm when slip is 7% (case b)

// Display the results
disp("Example 9-2 Solution : ");

printf(" \n a: S_r = %.f rpm  @ s = %.2f  \n ", S_r_a ,s_a );

printf(" \n b: S_r = %.f rpm  @ s = %.2f  ", S_r_b ,s_b );