summaryrefslogtreecommitdiff
path: root/3784/CH1/EX1.15/Ex1_15.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3784/CH1/EX1.15/Ex1_15.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/CH1/EX1.15/Ex1_15.sce')
-rw-r--r--3784/CH1/EX1.15/Ex1_15.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/3784/CH1/EX1.15/Ex1_15.sce b/3784/CH1/EX1.15/Ex1_15.sce
new file mode 100644
index 000000000..472fbae4a
--- /dev/null
+++ b/3784/CH1/EX1.15/Ex1_15.sce
@@ -0,0 +1,30 @@
+clc
+// Variable Initialization
+Vm=230//Supply Voltage in Volts
+Ra=0.2//Armature circuit resistance in Ohm
+I=80 //Rated current in Amp
+Nr=1200 //Motor speed in Rpm
+V=220//Rated voltage of motor in Volts
+a=150//firing angle in Degree
+Nr1=-700 //Speed in Rpm
+
+//Solution
+N=(Nr*2*%pi)/60 //Speed in Rad/sec
+Kaf=(V-I*Ra)/N //Motor Constant inN-m/A
+//(A)For rated motor torque
+Va=(2*Vm*1.414)*cosd(a)*(1/%pi)//Average voltage in Volts
+N1=(Nr1*2*%pi)/60 //Speed in Rad/sec
+af=acosd(((Kaf*N1)+(I*Ra))*%pi/(2*Vm*1.414))//Firing angle in Degree
+Eb1=V-(I*Ra)//Back emf in Volts
+Eb2=(Nr1/Nr)*Eb1 //Back emf in Volts
+Va1=Eb2+(I*Ra)//Armature voltage in volts
+af1=acosd((Va1*%pi)/(2*Vm*1.414))//Firing angle in Degree
+//(B) Half rated Torque
+Ia=(1/2)*I //Armature current in Amp
+W=(Va-(Ia*Ra))/Kaf //Angular speed in Rad/sec
+N=(W*60)/(2*%pi) //Speed in Rpm
+
+ //Results
+printf('\n\n The Firing Angle=%0.1f Degree\n\n',af1)
+printf('\n\n The motor Speed=%0.1f RPM \n\n',N)
+//The answers vary due to round off error(2nd only)