diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1092/CH9/EX9.13/Example9_13.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1092/CH9/EX9.13/Example9_13.sce')
-rwxr-xr-x | 1092/CH9/EX9.13/Example9_13.sce | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/1092/CH9/EX9.13/Example9_13.sce b/1092/CH9/EX9.13/Example9_13.sce new file mode 100755 index 000000000..063a6bf6b --- /dev/null +++ b/1092/CH9/EX9.13/Example9_13.sce @@ -0,0 +1,35 @@ +// Electric Machinery and Transformers +// Irving L kosow +// Prentice Hall of India +// 2nd editiom + +// Chapter 9: POLYPHASE INDUCTION (ASYNCHRONOUS) DYNAMOS +// Example 9-13 + +clear; clc; close; // Clear the work space and console. + +// Given data as per Ex.9-10 +P = 4 ; // Number of poles in WRIM +f = 60 ; // Frequency in Hz +V = 220 ; // Line voltage in volt +V_p = 220 ; // Phase voltage in volt (delta connection) +hp_WRIM = 1 ; // Power rating of WRIM in hp +S_r = 1740 ; // Full-load rated speed in rpm +R_r = 0.3 ; // rotor resistance per phase in ohm/phase +R_x = 0.7 ; // Added resistance in ohm/phase +X_lr = 1 ; // Locked rotor reactance in ohm + +// Calculations +E_lr = V_p / 4 ; // Locked-rotor voltage per phase +S = (120*f)/P ; // Speed in rpm of the rotating magnetic field + +// Total 3-phase rotor power input(RPI) in W +P_in = 3 * ( (E_lr)^2 ) / ( (R_r)^2 + (X_lr)^2 ) * R_r ; + +T_s = 7.04 * (P_in/S); // Starting torque developed in lb-ft + +// Display the results +disp("Example 9-13 Solution : "); + +printf(" \n P_in = %.f W \n",P_in); +printf(" \n From Eq.(9-19),starting torque is : \n T_s = %.2f lb-ft",T_s); |