DC Commulatively Compounded Motor
DC Commulatively Compounded Motor
III. PROCEDURE
1
ϭ
ϻ
%Prog1_DCMOTOR
%this program creates a graph If vs Eb of a dc motor
h0=figure('Units', 'normalized',...
'Color', [1 1 1],...
'HitTest', 'off',...
'Position', [0.01 0.05 0.8 0.7],...
'Name', 'Motor Speed vs Eb',...
'NumberTitle','off');
load p91_mag.dat
if_values = p91_mag(:,1);
ea_values = p91_mag(:,2);
n_0 = 1200;
plot(if_values, ea_values,'b-','LineWidth',2.0);
xlabel('If'), ylabel('Eg')
set(gca,'XLim',[0 1.5]);
set(gca,'YLim',[0 320]);
set(gca,'XTick',[0:0.1:1.5]);
set(gca,'YTick',[0:20:320]);
grid on
2
ϭ
ϻ
3. What is the field current of commulative compounded dc motor when
Radj = 175 Ω, RA + RS = 0.44 Ω and with VA at no-load condition is 240
V?
VT
I F=
R adj + R F
IF = __________ A
5. With values from Steps (3) and (4), what is the rotational speed of the
motor at no-load conditions? Show solution. (Note: E A should be equal
to VA since no load is connected, hence IL = 0)
EA nA
=
E o no
3
ϭ
ϻ
IA(full-load ) = __________ A
8. Find the equivalent field current. Use the formula below. The number
of turn of series winding is 14 while that of field windings = 2700 turns
¿ N SE
I F =J F + I =¿ ¿
NF A
nA = ______ rpm
SR = ______ %
Summary Box
3. 8.
4. 9.
5 10.
6. 11. 5
ϭ
7. ϻ
14. Write your observation of the relationship between the torque
and the speed of commulative compounded DC motor.
% M-file: program3
% M-file to create a plot of the torque-speed curve of the
% a cumulatively compounded dc motor without
% armature reaction.
load p91_mag.dat
if_values = p91_mag(:,1);
ea_values = p91_mag(:,2);
n_0 = 1200;
7
ϭ
ϻ