summaryrefslogtreecommitdiff
path: root/2231/CH4/EX4.3/Ex_4_3.sce
blob: 023540dfd58c5f1a122cf0715bd8929ce04c6811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//Example 4_3
clc;
clear;close;

//Given data: 
N=800;//rpm
I=20;//A
Ra=0.5;//ohm
Vs=240;//V
Ndash=600;//rpm

//Solution :
Eb_800=Vs-I*Ra;//V
Eb_600=Eb_800*Ndash/N;//V
Vav=I*Ra+Eb_600;//V
alfa=Vav/Vs;//duty cycle
disp(alfa,"(a) Duty cycle");
//Torque reduced to half will reduce I to half
I=I/2;//A
Vav=I*Ra+Eb_600;//V
alfa=Vav/Vs;//duty cycle
disp(alfa,"(b) Duty cycle");