From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3640/CH4/EX4.2/Ex4_2.sce | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 3640/CH4/EX4.2/Ex4_2.sce (limited to '3640/CH4/EX4.2') diff --git a/3640/CH4/EX4.2/Ex4_2.sce b/3640/CH4/EX4.2/Ex4_2.sce new file mode 100644 index 000000000..7f2d33f18 --- /dev/null +++ b/3640/CH4/EX4.2/Ex4_2.sce @@ -0,0 +1,35 @@ +clc +//this is an extension of Ex4_1 +//following comes from Ex4_1 +SCL=1000 //stator copper loss in watts +V=460 //line voltage of induction motor in volts +I=25 //line current of motor in amperes +pf=0.85 //power factor of motor +Pin=sqrt(3)*V*I*pf //ans may vary due to roundoff error +Pg=Pin-SCL //air gap power +RCL=500 //rotor copper loss in watts +Phe=800 //core loss in watts +Pfw=250 //winding and friction loss in Watts +PLL=200 //stray load loss in watts +DMP=Pg-RCL ///developed mechanical power in watts +Prot=Phe+Pfw+PLL //power loss in rotor in watts +Pout=DMP-Prot +//above is from Ex4_1 +s=RCL/Pg +p=4 //no of poles +mprintf("s=RCL/Pg=%f\n",s)//ans may vary due to roundoff error +ws=(4*%pi*60)/p //synchronous angular frequency +mprintf("ws=%frad/s\n",ws)//ans may vary due to roundoff error +ns=(120*60)/p +mprintf("ns=%drev/min\n",ns)//ans may vary due to roundoff error +w=ws*(1-s) +n=ns*(1-s) +mprintf("w=ws(1-s)=%frad/s\n",w)//ans may vary due to roundoff error +mprintf("n=ns(1-s)=%frev/min\n",n)//ans may vary due to roundoff error +mprintf("τd=DMP/w=%fN-m\n",DMP/w)//ans may vary due to roundoff error +mprintf("τ=Pout/w=%fN-m\n",Pout/w)//ans may vary due to roundoff error + + + + + -- cgit