From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3731/CH5/EX5.2/Ex5_2.sce | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 3731/CH5/EX5.2/Ex5_2.sce (limited to '3731/CH5/EX5.2/Ex5_2.sce') 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) -- cgit