Example 3: A 7.5-hp 120-V series dc motor has an armature resistance of 0.
2 ohm and a
series field resistance of 0.16 ohm.
At full load, the current input is 58 A, and the rated speed is 1050 r/min. Its magnetization
curve is shown in The core losses are 200 W, and the mechanical losses are 240 W at full load.
Assume that
the mechanical losses vary as the cube of the speed of the motor and that the core losses are
constant.
a) What is the efficiency of the motor at full load?
(b) What are the speed and efficiency of the motor if it is operating at an armature current of
35 A?
(c) Plot the torque-speed characteristic for this motor.
SOLUTION
(a) The output power of this motor at full load is
POUT (7.5 hp)(746 ( W/hp)=5595 W
The input power is
>> v_t = 120;
>> r_a = 0.36;
>> i_a = 9:1:58;
>> e_a = v_t - i_a * r_a;
>> if_values =[0 10 20 30 40 50 60 70];
>> n_0=1200;
>> ea_values =0:20:140;
>> if_values =[0 10 20 30 40 50 60 70];
>> e_a0 = interp1(if_values,ea_values,i_a,'spline');
>> n1 = 1050;
>> Eao1 = interp1(if_values,ea_values,58,'spline');
Ea1 = v_t - 58 * r_a;
>> Eao2 = interp1(if_values,ea_values,i_a,'spline');
n = (e_a./Ea1) .* (Eao1 ./ Eao2) * n1;
>> t_ind = e_a .* i_a ./ (n * 2 * pi / 60);
>> figure(1);
plot(t_ind,n,'b-','LineWidth',2.0);
hold on;
xlabel('\bf\tau_{ind} (N-m)');
ylabel('\bf\itn_{m} \rm\bf(r/min)');
title ('\bfSeries DC Motor Torque-Speed Characteristic');
grid on;
hold off;
REFERENCE:
Electric_Machinery_Fundamentals_4th_Edition Stephen J. Chapman