From f35ea80659b6a49d1bb2ce1d7d002583f3f40947 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:38:01 +0530 Subject: updated the code --- 1445/CH10/EX10.4/Ex10_4.sce | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to '1445/CH10/EX10.4') diff --git a/1445/CH10/EX10.4/Ex10_4.sce b/1445/CH10/EX10.4/Ex10_4.sce index dc5a845d9..32c7b2eba 100644 --- a/1445/CH10/EX10.4/Ex10_4.sce +++ b/1445/CH10/EX10.4/Ex10_4.sce @@ -1,6 +1,7 @@ //CHAPTER 10- THREE-PHASE INDUCTION MACHINES //Example 4 +clc; disp("CHAPTER 10"); disp("EXAMPLE 4"); @@ -15,15 +16,15 @@ s_m=r2/X2; s=1; ratio1=2/((s/s_m)+(s_m/s)); //ratio of T_starting and T_max ratio2=2*ratio1; //ratio of T_starting and T_full-load (T_max=2*T_full-load) -disp(sprintf("(a) If the motor is started by direct-on-line starter, the ratio of starting torque to full load torque is %.3f",ratio2)); +disp(sprintf("(a) If the motor is started by direct-on-line starter, the ratio of starting torque to full load torque is %f",ratio2)); //solution (b) ratio3=(1/3)*ratio2; //In star-delta starter, T_starting=(1/3)*T_starting_of_DOL -disp(sprintf("(b) If the motor is started by star-delta starter, the ratio of starting torque to full load torque is %.4f",ratio3)); +disp(sprintf("(b) If the motor is started by star-delta starter, the ratio of starting torque to full load torque is %f",ratio3)); //solution (c) ratio4=0.7*2*ratio2; //due to 70% tapping -disp(sprintf("(c) If the motor is started by auto-transformer, the ratio of starting torque to full load torque is %.4f",ratio4)); +disp(sprintf("(c) If the motor is started by auto-transformer, the ratio of starting torque to full load torque is %f",ratio4)); //END -- cgit