summaryrefslogtreecommitdiff
path: root/3640/CH4/EX4.5/Ex4_5.sce
blob: 6422906bd385bbd0801f475da826b60dc4a99bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clc
ns=1800 //synchronous speed in rev/min
n=1745 //initial speed in rev/min
hp=10 //hp rating of the motor horsepower(1 hp=746 Watts)
s=(ns-n)/ns
mprintf("s=%f\n",s)//ans may vary due to roundoff error
s=s/2 //slip at half torque
n1=ns*(1-s)//ans may vary due to roundoff error
mprintf("n=ns(1-s)=%frev/min\n",n1)
//output at half torque
mprintf("New horsepower output=%fhp\n",(0.5*hp*n1)/n)//ans may vary due to roundoff error,0.5 factor comes due to half torque