diff options
Diffstat (limited to '3745/CH1/EX1.56/Ex1_56.sce')
-rw-r--r-- | 3745/CH1/EX1.56/Ex1_56.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3745/CH1/EX1.56/Ex1_56.sce b/3745/CH1/EX1.56/Ex1_56.sce new file mode 100644 index 000000000..94120231f --- /dev/null +++ b/3745/CH1/EX1.56/Ex1_56.sce @@ -0,0 +1,14 @@ +// Ex 56 Page 400 + +clc;clear;close; +// Given +IscBYIfl=4;// as Isc=5*Ifl +ILByIfl=3;// as IL <= 3*Ifl +sf=4;//% + +//IL=K**2*ISC +//dividing by Ifl +K=sqrt(ILByIfl/IscBYIfl)*100;//% +TstBYTf=(K/100)**2*IscBYIfl*sf/100*100;// % //ratio of torque +printf("Suitable auto transformation ratio = %.1f",K) +printf("\n Starting torque Tst = %.f percent of full-load torque",TstBYTf) |