summaryrefslogtreecommitdiff
path: root/3731/CH5/EX5.8/Ex5_8.sce
blob: 02f4e22e950fd62b6b4609263ac6591f040f9203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//Chapter 5:Dc Motor Drives
//Example 8
clc;

//Variable Initialization

//Ratings of the separately excited motor
V=220     // rated voltage in V
N=970     // rated speed in rpm
Ia=100    // rated current in A
Ra=0.05   // armature resistance in ohms
N1=1000   // initial speed of the motor in rpm

//Solution
E=V-Ia*Ra
E1=N1/N*E   //value of back emf at the speed N1

//(a)The resistance to be placed
Ia1=2*Ia         //value of the braking current is twice the rated current
Rb=(E1+V)/Ia1-Ra  //required resistance

//(b)The braking torque
Wm=(2*%pi*N1)/60
T=E1*Ia1/Wm

//(c)When the speed has fallen to zero the back emf is zero
E2=0
Ia2=V/(Ra+Rb)
T2=Ia2/Ia1*T   //since the torque is directly proportional to the current


//Results 
mprintf("(a)Hence required resistance is :%.2f ohm",Rb)
//Answer given for the resistance in the book is wrong

mprintf("\n(b)Hence the required braking torque is :%.1f N-m",T)
mprintf("\n(c)Hence the required torque is :%.1f N-m",T2)