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 --- 2276/CH10/EX10.8/chapter10_ex8.sce | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 2276/CH10/EX10.8/chapter10_ex8.sce (limited to '2276/CH10/EX10.8') diff --git a/2276/CH10/EX10.8/chapter10_ex8.sce b/2276/CH10/EX10.8/chapter10_ex8.sce new file mode 100755 index 000000000..cf86ca2f1 --- /dev/null +++ b/2276/CH10/EX10.8/chapter10_ex8.sce @@ -0,0 +1,25 @@ +clc +clear + +//input +p=4;//number of poles +f=50;//supply frequency in hertz +n=3;//number of phases +w=1440;//speed in rev/min +sl=1.5;//stator losses in kW +fl=1.2;//friction losses in kW +inp=60;//input to motor in kW + +//calculations +N=(inp*f)/(p/2);//synchronous speed in rev/min +ns=N-w;//slip speed in rev/min +s=ns/N;//slip in per units +rinp=inp-sl;//rotor input in kW +rc=s*rinp;//rotor copper losses in kW +tr=(rinp*1000)/((N*2*%pi)/60);//rotor torque in newton meter +rout=rinp-rc;//rotor output in kW +mout=rout-fl;//motor output in kW +eff=mout/inp;//efficiency of rotor in per unit + +//output +mprintf('the slip is %3.2f p.u.:the rotor copper loss is %3.2f kW: the total torque is %3.0f Nm and the efficiency is %3.3f p.u.',s,rc,tr,eff) -- cgit