diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3784/CH6/EX6.3/Ex6_3.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-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/CH6/EX6.3/Ex6_3.sce')
-rw-r--r-- | 3784/CH6/EX6.3/Ex6_3.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/3784/CH6/EX6.3/Ex6_3.sce b/3784/CH6/EX6.3/Ex6_3.sce new file mode 100644 index 000000000..0dc3292fe --- /dev/null +++ b/3784/CH6/EX6.3/Ex6_3.sce @@ -0,0 +1,31 @@ +clc
+//variable initialization
+Pout=50 //output of induction motor in kilowatt
+Vm=400 //input of motor in volt
+F0=50 //supply frequency in hrtz
+N1=1475 //speed of motor in rpm
+P=4 //number of poles
+Rs=0.42 //resistance of stator in ohm
+Rr=0.23 //resistance of rotor in ohm
+Xs=0.95 //reactance of stator in ohm
+Xr=0.85 //reactance of rotor in ohm
+Xm=30 //reactance of motor in ohm
+Tdm=225 //Breakdown Torque In N-m
+K=poly(0,'K')
+
+
+
+
+//Solution
+W0=2*%pi*F0
+Vp=Vm/sqrt(3)
+K=sqrt((3*2*(Vp^2))/(2*Tdm*W0*(Xs+Xr)))
+W1=K*W0
+F1=W1/(2*%pi)
+Sm=Rr/(K*(Xs+Xr))
+Ws=2*K*W0/(P)
+Wm=Ws*(1-Sm)
+N=Wm*60/(2*%pi)
+printf('\n\n The Supply Frequency=%0.1f Hz\n\n',F1)
+printf('\n\n The slip at maximum torque=%0.1f\n\n',Sm)
+printf('\n\n The speed at maximum torque=%0.1f rpm\n\n',N)
|