blob: bb0e0a36d69f9c53b7c18f437b3eb19ad409bb31 (
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
36
37
38
39
40
41
|
// Electric Machinery and Transformers
// Irving L kosow
// Prentice Hall of India
// 2nd editiom
// Chapter 9: POLYPHASE INDUCTION (ASYNCHRONOUS) DYNAMOS
// Example 9-5
clear; clc; close; // Clear the work space and console.
// Given data
P = 8 ; // Number of poles in the SCIM
f = 60 ; // Frequency in Hz
R_r = 0.3 ; // Rotor resistance per phase in ohm
S_r = 650 ; // Speed in rpm at which motor stalls
// Calculations
// case a
S = (120*f)/P ; // Speed in rpm of the rotating magnetic field
s_b = (S - S_r)/S ; // Breakdown Slip
// case b
X_lr = R_r / s_b ; // Locked rotor reactance in ohm
// case c
f_r = s_b * f ; // Rotor frequency in Hz, at the maximum torque point
// case d
s = 5*(1/100);// Rated slip
S_r = S * (1 - s); // Full-load in rpm speed at rated slip
// Display the results
disp("Example 9-5 Solution : ");
printf(" \n a: S = %d rpm \n s_b = %.3f \n", S , s_b );
printf(" \n b: X_b = %.2f ohm \n ", X_lr );
printf(" \n c: f_r = %.1f Hz \n ", f_r );
printf(" \n d: S = %d rpm \n ", S_r );
|