summaryrefslogtreecommitdiff
path: root/3731/CH5/EX5.2/Ex5_2.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3731/CH5/EX5.2/Ex5_2.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 '3731/CH5/EX5.2/Ex5_2.sce')
-rw-r--r--3731/CH5/EX5.2/Ex5_2.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/3731/CH5/EX5.2/Ex5_2.sce b/3731/CH5/EX5.2/Ex5_2.sce
new file mode 100644
index 000000000..6bb6466c9
--- /dev/null
+++ b/3731/CH5/EX5.2/Ex5_2.sce
@@ -0,0 +1,27 @@
+//Chapter 5:DC Motor Drives
+//Example 2
+clc;
+
+//Variable Initialization
+
+V1=220 //rated voltage in V
+Ia1=100 //rated current in A
+N1=1000 //rated speed in rpm clockwise
+Ra=0.05 //armature resistance in ohms
+Rs=0.05 //field resistance in ohms
+
+//Solution
+//Turns is reduced to 80% then flux is also reduced by the same value and hence current is also reduced
+T1=Ia1**2 //flux is directly proportional to current Ia
+T2=0.8*1**2 //flux is directly proportional to current Ia
+Ia2=-Ia1/sqrt(0.8) //since T1=T2 and the direction is opposite
+
+E1=V1-Ia1*(Ra+Rs)
+
+Rs=.8*Rs //Rs=80% of the field resistance 0.05ohm since the flux is reduced to 80%
+E2=-(V1+Ia2*(Ra+Rs))
+
+N2=(E2/E1)*(Ia1/Ia2)*(N1/0.8) //since E=Kn*flux*N
+
+//Result
+mprintf("\nMotor speed is:N2=%.1f rpm",N2)