summaryrefslogtreecommitdiff
path: root/2123/CH5/EX5.7/Exa_5_7.sce
blob: 47d876791cde96dece4845115cabde2aba657d22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//Example No. 5.7
clc;
clear;
close;
format('v',7);

//Given Data : 
I=50;//A
V=200;//volt
N=1000;//rpm
Ra=0.2;//ohm
Eb=V-I*Ra;//V
Rt=(V+Eb)/2/I;//ohm(Total resistance required)
disp(Rt-0.5,"Additional resistance required to limit the current in ohm : ");
omega_m=N/60*2*%pi;//rad/s
T=Eb*2*I/omega_m;//N-m
disp(T,"Braking torque in N-m : ");
Eb=0;//for speed=0
I=V/Rt;//A
//T proportional to I(for separately excited motor)
T=T*(I/100);//N-m
disp(T,"Torque when speed decreased to zero in N-m : ");