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/CH4/EX4.2/Ex4_2.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/CH4/EX4.2/Ex4_2.sce')
-rw-r--r-- | 3784/CH4/EX4.2/Ex4_2.sce | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/3784/CH4/EX4.2/Ex4_2.sce b/3784/CH4/EX4.2/Ex4_2.sce new file mode 100644 index 000000000..83ffbe3cd --- /dev/null +++ b/3784/CH4/EX4.2/Ex4_2.sce @@ -0,0 +1,30 @@ +clc
+//Variable Initialisation
+V=230//Input Voltage of motor in volts
+N=1750//Rated Speed of Motor in rpm
+Ia=74//Armature Current in Ampere
+Ra=0.180//Armature resistance in ohm
+Vdc=240//Dc equivalent input to motor in Volts
+f=500//Chopper Frequency
+W0=2*f*%pi
+la=2.93*10^(-3)//Armature inductance in Henry
+//Solution
+T=1/f//Period of Chopper
+I0=Ia
+W=2*%pi*N/60
+Eb=V-(Ia*Ra)//Back EMF in Volts
+k=Eb/W
+Ea=Vdc/2//Average Voltage
+Eb1=Ea-(Ia*Ra)
+W1=Eb1/k
+N1=W1*(60/(2*%pi))
+ton=T/2
+Irms=((sqrt(2)*Vdc)/(%pi*W0*la))*sin(W0*ton/2)
+Irms1=sqrt((I0^2)+(Irms^2))
+k1=Irms/I0
+I01=Ia/2//Average Value of Source Current
+Irms2=sqrt(2)*Ia/%pi
+k2=Irms2/I01//Source Current Ripple Factor
+printf('\n\n The Motor Speed=%0.1f rpm\n\n',N1)
+printf('\n\n The RMS Armature Current=%0.1f Amp\n\n',Irms1)
+printf('\n\n The RMS and line current ripple factor=%0.1f\n\n',k2)
|