Page 232 - Solutions Manual to accompany Electric Machinery Fundamentals
P. 232

n_f = 2700;             % Number of turns on                shunt field
                 n_se = 14;              % Number of turns on series field

                 %  Calculate the armature current for each load.
                 i_a = i_l - v_t / (r_f + r_adj);

                 %  Now calculate the internal generated voltage for
                 % each armature current.
                 e_a = v_t - i_a * r_a;

                 %  Calculate the effective field current for each armature
                 % current.
                 i_f = v_t /     (r_f + r_adj) - (n_se / n_f) * i_a;

                 %  Calculate the resulting internal generated voltage at
                 % 1200 r/min by interpolating the motor's magnetization
                 % curve.
                 e_a0 = int   erp1(if_values,ea_values,i_f);

                 %  Calculate the resulting speed from Equation (9-13).
                 n = ( e_a ./ e_a0 ) * n_0;

                 %  Calculate the induced torque corresponding to each
                 % speed from Equations (8-55) and (8-56).
                 t_ind = e_a .* i_a ./ (n * 2 * pi / 60);

                 %  Plot the torque-speed curves
                 figure(1);
                 plot(t_ind,n    ,'b-','LineWidth',2.0);
                 xlabel('\bf\tau_{ind} (N-m)');
                 ylabel('\bf\itn_{m} \rm\bf(r/min           )');
                 title ('\bfDifferentially-Compounded D            C Motor Torque-Speed
                 Characteristic');
                 axis([ 0 250 800 16      00]);
                 grid on;
































                                                           226
   227   228   229   230   231   232   233   234   235   236   237