summaryrefslogtreecommitdiff
path: root/3784/CH5/EX5.9/Ex5_9.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3784/CH5/EX5.9/Ex5_9.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3784/CH5/EX5.9/Ex5_9.sce')
-rw-r--r--3784/CH5/EX5.9/Ex5_9.sce42
1 files changed, 42 insertions, 0 deletions
diff --git a/3784/CH5/EX5.9/Ex5_9.sce b/3784/CH5/EX5.9/Ex5_9.sce
new file mode 100644
index 000000000..7591a0679
--- /dev/null
+++ b/3784/CH5/EX5.9/Ex5_9.sce
@@ -0,0 +1,42 @@
+clc
+//variable initialisation
+Vph=2200 //Supply Voltage in volt
+F=50 //supply frequency in Hz
+Pout=2600 // Output Of Motor In KW
+P=8 //Number Of Poles
+N1=735 //Speed OF Motor In rpm
+Rs=0.075 //Resistance of stator in ohm
+Rr=0.1 //Resistance of rotor in ohm
+Xs=0.45 //Reactance of Motor in ohm
+Xr=0.55 //Reactance of Motor in ohm
+
+//Solution
+Ns=(120*F)/P
+S=(Ns-N1)/Ns
+Iph=Vph/sqrt((Rs+((Rr/S)^2))+((Xs+Xr)^2))
+Il=sqrt(3)*Iph
+Wms=(2*%pi*Ns)/60
+Tl=(3*((Iph)^2))/(S*(Wms))
+Ilm=Vph/(sqrt(3)*sqrt(((Rs+Rr)^2)+((Xs+Xr)^2)))
+S2=1
+Tst=(3*(((Ilm)^2)*0.1))/(S2*Wms)
+r1=Tst/Tl//ratio of Tst and Tl
+Tmax=(3/(2*Wms))*(((Vph/sqrt(3))^2)/((Rs+sqrt((Rs^2)+((Xs+Xr)^2)))))
+r2=Tmax/Tl//ratio of Tmax and Tl
+Rr2=0.15
+Xr2=0.9
+Il1=(sqrt(3)*Vph)/(sqrt(((Rs+Rr)^2)+((Xs+Xr2)^2)))
+Iph1=Il1/(sqrt(3))
+Tst1=(3*((Iph1)^2)*(Rr))/(Wms)
+Rs1=Rs/3
+Rr1=Rr/3
+Xs1=Xs/3
+Xr1=Xr/3
+Inew=2*Il
+X=sqrt(((Vph/(sqrt(3)*Inew))^2)-((Rs1+Rr1)^2))
+Xe=X-Xs1-Xr1
+printf('\n\n Ratio of starting torque and load torque=%0.1f \n\n',r1)//The answer provided in the textbook is wrong
+printf('\n\n Ratio of maximum torque and load torque=%0.1f \n\n',r2)
+printf('\n\n The Maximum line current during starting=%0.1f Amp\n\n',Il1)//The answer provided in the textbook is wrong
+printf('\n\n The maximum torque at starting=%0.1f N-m\n\n',Tst1)//The answer provided in the textbook is wrong
+printf('\n\n The required value of reactor=%0.1f ohm\n\n',Xe)