Holooly Plus Logo

Question 16.20: A load is rated at 440 V(rms), 30 A(rms), and 10 kW. Find th......

A load is rated at 440 V(rms), 30 A(rms), and 10 kW. Find the average power delivered to the load when the load voltage is 450 V(rms).

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
Vrated = 440;
Irated = 30;
Prated = 10e3;
% Find the rated power factor
pf = Prated/Vrated/Irated;
% Find the load impedance
ZL = Vrated/Irated*(pf + j*sqrt(1-pf^2));
% Apply a voltage of 450 V(rms)
Vnew = 450;
SL = abs(Vnew)^2/conj(ZL);
Pavg = real(SL)
Pavg =
10.4597e+003

P_{\mathrm{L}}=10.4597 \mathrm{~kW}.

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.