summaryrefslogtreecommitdiff
path: root/3784/CH5/EX5.14
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.14
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.14')
-rw-r--r--3784/CH5/EX5.14/Ex5_14.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/3784/CH5/EX5.14/Ex5_14.sce b/3784/CH5/EX5.14/Ex5_14.sce
new file mode 100644
index 000000000..42fc74bbf
--- /dev/null
+++ b/3784/CH5/EX5.14/Ex5_14.sce
@@ -0,0 +1,27 @@
+
+clc
+//variable Initialisation
+Vm=400 //Terminal Voltage Of Motor In Volts
+Pout=3 //Output Of Motor In KW
+F=50 //Supply Frequency
+P=4 //Number Of Pole
+R1=2.5 //Resistance Of Motor in Ohm
+R2=4.5 //Resistance Of Motor in Ohm
+X1=6 //Reactance in Ohm
+X2=6 //Reactance in Ohm
+Nr1=1400 //Speed Of Rotor In RPM
+Nr2=1300 //Speed Of Rotor In RPM
+
+//Solution
+Ns=(120*F)/(P)
+S=(Ns-Nr1)/Ns
+Vph=Vm/sqrt(3)
+I2=(Vm)/sqrt(((R1+(R2/S))^2)+((X1+X2)^2))
+Ws=((2*%pi)/60)*(Ns)
+Tl=((3*((I2)^2))/(Ws))*(R2/S)
+K=Tl/((1-S)^2)
+S1=(Ns-Nr2)/Ns
+Tl1=K*((1-S1)^2)
+Vs=sqrt(Tl1*S1*Ws*(((R1+(R2/S1))^2)+((X1+X2)^2))/((3)*(R2)))//Wrongly calculated in textbook
+printf('\n\n The Voltage To be Applied=%0.1f Volts\n\n',Vs)
+//The answer provided in the textbook is wrong