Holooly Plus Logo

Question 16.28: In Figure P16-28 the load voltage is |VL| = 5 kV (rms) at 60......

In Figure P16-28 the load voltage is \left|\mathbf{V}_{\mathrm{L}}\right| = 5 kV (rms) at 60 Hz and the load Z_{\mathrm{L}} draws an average power of 10 kW at a lagging power factor of 0.725. Find the value of the parallel capacitance needed to raise the power factor of the combination to unity.

fig 16.28
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
MagVL = 5e3;
PL = 10e3;
pf = 0.725;
% Find the complex power of the load
SL = PL/pf*(pf+j*sqrt(1-pf^2));
% We need the capacitor to cancel the complex power in the load
QC = -imag(SL);
% Solve for the capacitance
C = -QC/2/pi/60/MagVL^2
C =
1.0080e-006

C = 1.008 µF.

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.