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.4/Ex5_4.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.4/Ex5_4.sce')
-rw-r--r-- | 3731/CH5/EX5.4/Ex5_4.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/3731/CH5/EX5.4/Ex5_4.sce b/3731/CH5/EX5.4/Ex5_4.sce new file mode 100644 index 000000000..0774feecb --- /dev/null +++ b/3731/CH5/EX5.4/Ex5_4.sce @@ -0,0 +1,25 @@ +//Chapter 5:DC Motor Drives +//Example 4 +clc; + +//Variable Initialization + +//The ratings of the motor are same as that of Ex-5.2 +V1=220 //rated voltage in V +Ia1=100 //rated current in A +N1=1000 //speed in rpm clockwise +N2=800 //given speed during the dynamic braking in rpm +Ra=0.05 //armature resistance in ohms +Rs=0.05 //field resistance in ohms + +//Solution + +T2 = 2 //dynamic torque is twice the rated torque +Ia2=Ia1*sqrt(T2) //since T=Kf*Ia**2 +E1=V1-Ia1*(Ra+Rs) +E2=(Ia2/Ia1)*(N2/N1)*E1 //since E=Ke*Ia*N +Rb=E2/Ia2-(Ra+Rs) //since E2=Ia2(Rb+Ra+Rs) during braking + +//Results +mprintf("\n Braking current Ia2: %.1f A",Ia2) +mprintf("\n Required braking resistance Rb: %.2f ohm",Rb) |