summaryrefslogtreecommitdiff
path: root/3745/CH1/EX1.56/Ex1_56.sce
blob: 94120231f631da8629979180cf5edd3f63dcb043 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)