If the machine in Problem 9-25 is running at 1800 r/min with a field resistance Radj = 10 Ω and an armature current of 25 A, what will the resulting terminal voltage be?. Note that decre
Trang 1255
% the line "Ea_ar - Vt - i_a*r_a" goes negative
i_a = 0:1:37;
for jj = 1:length(i_a)
% Calculate the equivalent field current due to armature
% reaction
i_ar = (i_a(jj) / 50) * 200 / n_f;
% Calculate the Ea values modified by armature reaction
Ea_ar = interp1(if_values,ea_values,i_f - i_ar);
% Get the voltage difference
diff = Ea_ar - Vt - i_a(jj)*r_a;
% This code prevents us from reporting the first (unstable)
% location satisfying the criterion
was_pos = 0;
for ii = 1:length(i_f);
if diff(ii) > 0
was_pos = 1;
end
if ( diff(ii) < 0 & was_pos == 1 )
break;
end;
end;
% Save terminal voltage at this point
v_t(jj) = Vt(ii);
i_l(jj) = i_a(jj) - v_t(jj) / ( r_f + r_adj);
end;
% Plot the terminal characteristic
figure(1);
plot(i_l,v_t,'b-','LineWidth',2.0);
xlabel('\bf\itI_{L} \rm\bf(A)');
ylabel('\bf\itV_{T} \rm\bf(V)');
title ('\bfTerminal Characteristic of a Shunt DC Generator w/AR'); hold off;
axis([ 0 50 0 120]);
grid on;
Trang 2256
The resulting terminal characteristic is shown below:
9-26 If the machine in Problem 9-25 is running at 1800 r/min with a field resistance Radj = 10 Ω and an
armature current of 25 A, what will the resulting terminal voltage be? If the field resistor decreases to 5 Ω while the armature current remains 25 A, what will the new terminal voltage be? (Assume no armature reaction.)
SOLUTION If I = 25 A, then A I R A A=(25 A 0.18 )( Ω = 4.5 V The point where the distance between the )
A
E and VT curves is exactly 4.5 V corresponds to a terminal voltage of 104 V, as shown below
Trang 3257
If Radj decreases to 5 Ω, the total field resistance becomes 29 Ω, and the terminal voltage line gets
shallower The new point where the distance between the EA and VT curves is exactly 4.5 V corresponds
to a terminal voltage of 115 V, as shown below
Note that decreasing the field resistance of the shunt generator increases the terminal voltage
9-27 A 120-V 50-A cumulatively compounded dc generator has the following characteristics:
0.21
20
F
adj 0 to 30 , set to 10
The machine has the magnetization curve shown in Figure P9-7 Its equivalent circuit is shown in Figure P9-10 Answer the following questions about this machine, assuming no armature reaction
(a) If the generator is operating at no load, what is its terminal voltage?
(b) If the generator has an armature current of 20 A, what is its terminal voltage?
Trang 4258
(c) If the generator has an armature current of 40 A, what is its terminal voltage'?
(d) Calculate and plot the terminal characteristic of this machine
SOLUTION
(a) The total field resistance of this generator is 30 Ω, and the no-load terminal voltage can be found from the intersection of the resistance line with the magnetization curve for this generator The magnetization curve and the field resistance line are plotted below As you can see, they intersect at a terminal voltage of 121 V
(b) If the armature current is 20 A, then the effective field current contribution from the armature current
20 A 0.4 A 1000
A F
N I
and the I A(R A+R S) voltage drop is I A(R A+R S)=(20 A 0.21 ) ( Ω =) 4.2 V The location where the
triangle formed by SE
A F
N I
N and I R exactly fits between the A A EA and VT lines corresponds to a terminal voltage of 120 V, as shown below
Trang 5259
(c) If the armature current is 40 A, then the effective field current contribution from the armature current
( 40 A ) 0 6 A 1000
15
F
I N N
and the IA( RA + RS) voltage drop is IA( RA+ RS) ( = 80 A )( 0 20 Ω ) = 8 V The location where the
triangle formed by A
F
I N
NSE
and IARA exactly fits between the EA and VT lines corresponds to a terminal voltage of 116 V, as shown below
Trang 6260
A MATLAB program to locate the position where the triangle exactly fits between the EA and VT lines is shown below This program created the plot shown above
% M-file: prob9_27b.m
% M-file to create a plot of the magnetization curve and the
% field current curve of a cumulatively-compounded dc generator
% when the armature current is 20 A
% Get the magnetization curve This file contains the
% three variables if_values, ea_values, and n_0
clear all
load p97_mag.dat;
if_values = p97_mag(:,1);
ea_values = p97_mag(:,2);
n_0 = 1800;
% First, initialize the values needed in this program
r_f = 20; % Field resistance (ohms)
r_adj = 10; % Adjustable resistance (ohms)
r_a = 0.21; % Armature + series resistance (ohms)
i_f = 0:0.02:6; % Field current (A)
n = 1800; % Generator speed (r/min)
n_f = 1000; % Shunt field turns
n_se = 20; % Series field turns
% Calculate Ea versus If
Ea = interp1(if_values,ea_values,i_f);
% Calculate Vt versus If
Vt = (r_f + r_adj) * i_f;
% Calculate the Ea values modified by mmf due to the
% armature current
Trang 7261
i_a = 20;
Ea_a = interp1(if_values,ea_values,i_f + i_a * n_se/n_f);
% Find the point where the difference between the
% enhanced Ea line and the Vt line is 4 V This will
% be the point where the line "Ea_a - Vt - 4" goes
% negative
diff = Ea_a - Vt - 4;
% This code prevents us from reporting the first (unstable)
% location satisfying the criterion
was_pos = 0;
for ii = 1:length(i_f);
if diff(ii) > 0
was_pos = 1;
end
if ( diff(ii) < 0 & was_pos == 1 )
break;
end;
end;
% We have the intersection Tell user
disp (['Ea_a = ' num2str(Ea_a(ii)) ' V']);
disp (['Ea = ' num2str(Ea(ii)) ' V']);
disp (['Vt = ' num2str(Vt(ii)) ' V']);
disp (['If = ' num2str(i_f(ii)) ' A']);
disp (['If_a = ' num2str(i_f(ii)+ i_a * n_se/n_f) ' A']);
% Plot the curves
figure(1);
plot(i_f,Ea,'b-','LineWidth',2.0);
hold on;
plot(i_f,Vt,'k ','LineWidth',2.0);
% Plot intersections
plot([i_f(ii) i_f(ii)], [0 Vt(ii)], 'k-');
plot([0 i_f(ii)], [Vt(ii) Vt(ii)],'k-');
plot([0 i_f(ii)+i_a*n_se/n_f], [Ea_a(ii) Ea_a(ii)],'k-');
% Plot compounding triangle
plot([i_f(ii) i_f(ii)+i_a*n_se/n_f],[Vt(ii) Vt(ii)],'b-');
plot([i_f(ii) i_f(ii)+i_a*n_se/n_f],[Vt(ii) Ea_a(ii)],'b-');
plot([i_f(ii)+i_a*n_se/n_f i_f(ii)+i_a*n_se/n_f],[Vt(ii)
Ea_a(ii)],'b-');
xlabel('\bf\itI_{F} \rm\bf(A)');
ylabel('\bf\itE_{A} \rm\bf or \itE_{A} \rm\bf(V)');
title ('\bfPlot of \itE_{A} \rm\bf and \itV_{T} \rm\bf vs field
current');
axis ([0 5 0 150]);
set(gca,'YTick',[0 10 20 30 40 50 60 70 80 90 100 110 120 130 140 150]')
set(gca,'XTick',[0 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0]')
legend ('Ea line','Vt line',4);
hold off;
grid on;
Trang 8262
(d) A MATLAB program to calculate and plot the terminal characteristic of this generator is shown
below
% M-file: prob9_27d.m
% M-file to calculate the terminal characteristic of a
% cumulatively compounded dc generator without armature
% reaction
% Get the magnetization curve This file contains the
% three variables if_values, ea_values, and n_0
clear all
load p97_mag.dat;
if_values = p97_mag(:,1);
ea_values = p97_mag(:,2);
n_0 = 1800;
% First, initialize the values needed in this program
r_f = 20; % Field resistance (ohms)
r_adj = 10; % Adjustable resistance (ohms)
r_a = 0.21; % Armature + series resistance (ohms)
i_f = 0:0.02:6; % Field current (A)
n = 1800; % Generator speed (r/min)
n_f = 1000; % Shunt field turns
n_se = 20; % Series field turns
% Calculate Ea versus If
Ea = interp1(if_values,ea_values,i_f);
% Calculate Vt versus If
Vt = (r_f + r_adj) * i_f;
% Find the point where the difference between the two
% lines is exactly equal to i_a*r_a This will be the
% point where the line line "Ea - Vt - i_a*r_a" goes
% negative
i_a = 0:1:50;
for jj = 1:length(i_a)
% Calculate the Ea values modified by mmf due to the
% armature current
Ea_a = interp1(if_values,ea_values,i_f + i_a(jj)*n_se/n_f);
% Get the voltage difference
diff = Ea_a - Vt - i_a(jj)*r_a;
% This code prevents us from reporting the first (unstable)
% location satisfying the criterion
was_pos = 0;
for ii = 1:length(i_f);
if diff(ii) > 0
was_pos = 1;
end
if ( diff(ii) < 0 & was_pos == 1 )
break;
end;
end;
Trang 9263
% Save terminal voltage at this point
v_t(jj) = Vt(ii);
i_l(jj) = i_a(jj) - v_t(jj) / ( r_f + r_adj);
end;
% Plot the terminal characteristic
figure(1);
plot(i_l,v_t,'b-','LineWidth',2.0);
xlabel('\bf\itI_{L} \rm\bf(A)');
ylabel('\bf\itV_{T} \rm\bf(V)');
string = ['\bfTerminal Characteristic of a Cumulatively '
'Compounded DC Generator'];
title (string);
hold off;
axis([ 0 50 0 130]);
grid on;
The resulting terminal characteristic is shown below Compare it to the terminal characteristics of the
shunt dc generators in Problem 9-25 (d)
9-28 If the machine described in Problem 9-27 is reconnected as a differentially compounded dc generator, what
will its terminal characteristic look like? Derive it in the same fashion as in Problem 9-27
SOLUTION A MATLAB program to calculate and plot the terminal characteristic of this generator is shown below
% M-file: prob9_28.m
% M-file to calculate the terminal characteristic of a
% differentially compounded dc generator without armature
% reaction
% Get the magnetization curve This file contains the
Trang 10264
% three variables if_values, ea_values, and n_0
clear all
load p97_mag.dat;
if_values = p97_mag(:,1);
ea_values = p97_mag(:,2);
n_0 = 1800;
% First, initialize the values needed in this program
r_f = 20; % Field resistance (ohms)
r_adj = 10; % Adjustable resistance (ohms)
r_a = 0.21; % Armature + series resistance (ohms)
i_f = 0:0.02:6; % Field current (A)
n = 1800; % Generator speed (r/min)
n_f = 1000; % Shunt field turns
n_se = 20; % Series field turns
% Calculate Ea versus If
Ea = interp1(if_values,ea_values,i_f);
% Calculate Vt versus If
Vt = (r_f + r_adj) * i_f;
% Find the point where the difference between the two
% lines is exactly equal to i_a*r_a This will be the
% point where the line line "Ea - Vt - i_a*r_a" goes
% negative
i_a = 0:1:26;
for jj = 1:length(i_a)
% Calculate the Ea values modified by mmf due to the
% armature current
Ea_a = interp1(if_values,ea_values,i_f - i_a(jj)*n_se/n_f);
% Get the voltage difference
diff = Ea_a - Vt - i_a(jj)*r_a;
% This code prevents us from reporting the first (unstable)
% location satisfying the criterion
was_pos = 0;
for ii = 1:length(i_f);
if diff(ii) > 0
was_pos = 1;
end
if ( diff(ii) < 0 & was_pos == 1 )
break;
end;
end;
% Save terminal voltage at this point
v_t(jj) = Vt(ii);
i_l(jj) = i_a(jj) - v_t(jj) / ( r_f + r_adj);
end;
% Plot the terminal characteristic
figure(1);
Trang 11265
plot(i_l,v_t,'b-','LineWidth',2.0);
xlabel('\bf\itI_{L} \rm\bf(A)');
ylabel('\bf\itV_{T} \rm\bf(V)');
string = ['\bfTerminal Characteristic of a Cumulatively '
'Compounded DC Generator'];
title (string);
hold off;
axis([ 0 50 0 120]);
grid on;
The resulting terminal characteristic is shown below Compare it to the terminal characteristics of the
cumulatively compounded dc generator in Problem 9-28 and the shunt dc generators in Problem 9-25 (d)
9-29 A cumulatively compounded dc generator is operating properly as a flat-compounded dc generator The
machine is then shut down, and its shunt field connections are reversed
(a) If this generator is turned in the same direction as before, will an output voltage be built up at its
terminals? Why or why not?
(b) Will the voltage build up for rotation in the opposite direction? Why or why not?
(c) For the direction of rotation in which a voltage builds up, will the generator be cumulatively or
differentially compounded?
SOLUTION
(a) The output voltage will not build up, because the residual flux now induces a voltage in the opposite
direction, which causes a field current to flow that tends to further reduce the residual flux
(b) If the motor rotates in the opposite direction, the voltage will build up, because the reversal in voltage
due to the change in direction of rotation causes the voltage to produce a field current that increases the residual flux, starting a positive feedback chain
(c) The generator will now be differentially compounded
Trang 12266
9-30 A three-phase synchronous machine is mechanically connected to a shunt dc machine, forming a
motor-generator set, as shown in Figure P9-11 The dc machine is connected to a dc power system supplying a constant 240 V, and the ac machine is connected to a 480-V 60-Hz infinite bus
The dc machine has four poles and is rated at 50 kW and 240 V It has a per-unit armature resistance of 0.04 The ac machine has four poles and is Y-connected It is rated at 50 kVA, 480 V, and 0.8 PF, and its saturated synchronous reactance is 2.0 Ω per phase
All losses except the dc machine’s armature resistance may be neglected in this problem Assume that the magnetization curves of both machines are linear
(a) Initially, the ac machine is supplying 50 kVA at 0.8 PF lagging to the ac power system
1 How much power is being supplied to the dc motor from the dc power system?
2 How large is the internal generated voltage E of the dc machine? A
3 How large is the internal generated voltage E of the ac machine? A
(b) The field current in the ac machine is now increased by 5 percent What effect does this change have
on the real power supplied by the generator set? On the reactive power supplied by the motor-generator set? Calculate the real and reactive power supplied or consumed by the ac machine under these conditions Sketch the ac machine’s phasor diagram before and after the change in field current
(c) Starting from the conditions in part (b), the field current in the dc machine is now decreased by 1
percent What effect does this change have on the real power supplied by the motor-generator set? On the reactive power supplied by the motor-generator set? Calculate the real and reactive power supplied
or consumed by the ac machine under these conditions Sketch the ac machine’s phasor diagram before and after the change in the dc machine’s field current
(d) From the above results, answer the following questions:
1 How can the real power flow through an ac-dc motor-generator set be controlled?
2 How can the reactive power supplied or consumed by the ac machine be controlled without affecting the real power flow?
SOLUTION
(a) The power supplied by the ac machine to the ac power system is
AC cos 50 kVA 0.8 40 kW
Trang 13267
and the reactive power supplied by the ac machine to the ac power system is
AC sin 50 kVA sin cos 0.8 30 kvar
The power out of the dc motor is thus 40 kW This is also the power converted from electrical to mechanical form in the dc machine, since all other losses are neglected Therefore,
conv A A T A A A 40 kW
P =E I = V −I R I =
2
40 kW 0
The base resistance of the dc machine is
2 ,base base,dc
base
230 V
1.058
50 kW
T V R
P
Therefore, the actual armature resistance is
(0.04 1.058 0.0423 )( )
A
Continuing to solve the equation for Pconv, we get
2
0.0423 230I A − I A+40, 000= 0
2
5434.8I A − I A+945180= 0
and E = 222.4 V A
Therefore, the power into the dc machine is V I T A=41.38 kW, while the power converted from electrical
to mechanical form (which is equal to the output power) is E I A A=(222.4 V 179.9 A)( )=40 kW The internal generated voltage E of the dc machine is 222.4 V A
The armature current in the ac machine is
50 kVA
60.1 A
A
S I
Vφ
60.1 36.87 A
I
Therefore, the internal generated voltage E of the ac machine is A
A = φ+ jX S A
277 0 V 2.0 60.1 36.87 A 362 15.4 V
E
(b) When the field current of the ac machine is increased by 5%, it has no effect on the real power
supplied by the motor-generator set This fact is true because P=τω, and the speed is constant (since the
MG set is tied to an infinite bus) With the speed unchanged, the dc machine’s torque is unchanged, so the total power supplied to the ac machine’s shaft is unchanged
If the field current is increased by 5% and the OCC of the ac machine is linear, E increases to A
( )(1.05 262 V) 380 V
A
The new torque angle δ can be found from the fact that since the terminal voltage and power of the ac machine are constant, the quantity E Asinδ must be constant