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 /3731/CH5/EX5.21/Ex5_21.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 '3731/CH5/EX5.21/Ex5_21.sce')
-rw-r--r-- | 3731/CH5/EX5.21/Ex5_21.sce | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/3731/CH5/EX5.21/Ex5_21.sce b/3731/CH5/EX5.21/Ex5_21.sce new file mode 100644 index 000000000..eede688eb --- /dev/null +++ b/3731/CH5/EX5.21/Ex5_21.sce @@ -0,0 +1,38 @@ +//Chapter 5:Dc Motor Drives +//Example 21 +clc; + +//Variable Initialization + +//Ratings of the series motor +N=600 //speed in rpm +Vs=220 //source voltage in V +Ra_Rf=0.12 //combine armature resistance field resistance + +//Magnetisation curve at N +If=[10, 20,30, 40, 50, 60, 70, 80] //field current in A +E =[64,118,150,170,184,194,202,210] //terminal voltage in V + +//Solution +//(i)When the duty ratio is 0.6 and motor current is 60 A +delta=0.6 //duty ratio +Ia1=60 //motor current in A +Va1=delta*Vs //terminal voltage for the given duty ratio +E1=Va1-Ia1*Ra_Rf //back emf for the given duty ratio + +//For Ia1=60 A the terminal voltage is 194 V as given in the magnetization curve +N1=E1/E(6)*N //motor speed for the given duty ratio + +//(ii)When the speed is 400rpm and the duty ratio is 0.65 +delta=0.65 //duty ratio +N2=400 //speed in rpm +Va1=delta*Vs //terminal voltage for the given duty ratio + +//From the magnetization characteristic for the speed of 400rpm the current Ia=70 A +E1=Va1-If(7)*Ra_Rf //back emf for the given duty ratio +T=(E1*If(7))/N2/(2*%pi/60) //required torque + + +//Results +mprintf("(i)Hence the motor speed is :%.1f rpm",N1) +mprintf("\n(ii)Hence the required torque is :%.1f N-m",T) |