summaryrefslogtreecommitdiff
path: root/1092/CH9/EX9.5/Example9_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '1092/CH9/EX9.5/Example9_5.sce')
-rwxr-xr-x1092/CH9/EX9.5/Example9_5.sce41
1 files changed, 41 insertions, 0 deletions
diff --git a/1092/CH9/EX9.5/Example9_5.sce b/1092/CH9/EX9.5/Example9_5.sce
new file mode 100755
index 000000000..bb0e0a36d
--- /dev/null
+++ b/1092/CH9/EX9.5/Example9_5.sce
@@ -0,0 +1,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 );
+