From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1092/CH9/EX9.4/Example9_4.sce | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 1092/CH9/EX9.4/Example9_4.sce (limited to '1092/CH9/EX9.4/Example9_4.sce') diff --git a/1092/CH9/EX9.4/Example9_4.sce b/1092/CH9/EX9.4/Example9_4.sce new file mode 100755 index 000000000..d6b0a3377 --- /dev/null +++ b/1092/CH9/EX9.4/Example9_4.sce @@ -0,0 +1,30 @@ +// Electric Machinery and Transformers +// Irving L kosow +// Prentice Hall of India +// 2nd editiom + +// Chapter 9: POLYPHASE INDUCTION (ASYNCHRONOUS) DYNAMOS +// Example 9-4 + +clear; clc; close; // Clear the work space and console. + +// Given data +P = 4 ; // Number of poles in the IM +hp = 50 ; // rating of the IM in hp +V_o = 208 ; // Voltage rating of the IM in volt +T_orig = 225 ; // Starting torque in lb-ft +I_orig = 700 ; // Instantaneous startign current in A at rated voltage +V_s = 120 ; // Reduced 3-phase voltage supplied in volt + +// Calculations +// case a +T_s = T_orig * (V_s/V_o)^2 ; // Starting torque in lb-ft after application of V_s + +// case b +I_s = I_orig * (V_s/V_o) ; // Starting current in A after application of V_s + +// Display the results +disp("Example 9-4 Solution : "); +printf(" \n a: Starting torque :\n T_s = %.f lb-ft \n",T_s ); + +printf(" \n b: Starting current :\n I_s = %d A \n",I_s ); -- cgit