Holooly Plus Logo

Question 16.24: The complex power delivered to the load ZL in Figure P16-21 ......

The complex power delivered to the load Z_L in Figure P16-21 is 20 + j30 kVA. The source produces an average power of 21 kW and the line has an impedance of Z_W = 0.6 + j5 Ω per wire. Find the reactive power produced by the source.

fig 16.21
Step-by-Step
The 'Blue Check Mark' means that this solution was answered by an expert.
Learn more on how do we answer questions.

Use MATLAB to perform the calculations

The 'Blue Check Mark' means that either the MATLAB code/script/answer provided in the answer section has been tested by our team of experts; or the answer in general has be fact checked.

Learn more on how do we answer questions.

Script File

clear all
SL = 20e3+30e3j;
Ps = 21e3;
ZW = 0.6+5j;
% Find the average power in the line
PW = Ps - real(SL);
% Find the magnitude of the line current
MagIL = sqrt(PW/2/real(ZW));
% Find the total complex power
Ss = SL + 2*MagIL^2*ZW;
% Find the reactive power of the source
Qs = imag(Ss)
Qs =
38.3333e+003

The reactive power produced by the source is 38.333 kVAR.

Related Answered Questions

Question: 16.22

Verified Answer:

Use MATLAB to perform the calculations.
Question: 16.19

Verified Answer:

Use MATLAB to perform the calculations.