0% found this document useful (0 votes)
69 views

Objective 4

The document describes an electrical circuit problem to find the power absorbed by each resistor and the total complex power using Matlab. The circuit contains a voltage source of 1200 ∠0° and three impedances: Z1 = 60 + j0 Ω, Z2 = 6 + j12 Ω, and Z3 = 30 - j30 Ω. The Matlab code prompts the user to input the voltage, impedances, and then calculates and displays the complex power absorbed by each impedance and the total complex power.

Uploaded by

Rohan Sharma
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
0% found this document useful (0 votes)
69 views

Objective 4

The document describes an electrical circuit problem to find the power absorbed by each resistor and the total complex power using Matlab. The circuit contains a voltage source of 1200 ∠0° and three impedances: Z1 = 60 + j0 Ω, Z2 = 6 + j12 Ω, and Z3 = 30 - j30 Ω. The Matlab code prompts the user to input the voltage, impedances, and then calculates and displays the complex power absorbed by each impedance and the total complex power.

Uploaded by

Rohan Sharma
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
You are on page 1/ 1

Objective 4 : In the given circuit V = 1200 0, Z1 = 60 + j0 programming.

Soln :

, Z2 = 6 + j12

and Z3 = 30 - j30

. Find the power absorbed by each load and the total complex power using Matlab

%% Objective 4 % Created by ROHAN SHARMA on June 7, 2011 for PSMS LAB Vm = input('Enter voltage peak amplitude V = '); thetav = input('Enter voltage phase angle in degree = '); n = input('Enter the number of Impedances = '); for temp = 1:n Z(temp) = input(['Enter the load impedance Z',num2str(temp),' in Cartesian form = ']); S(temp)=(Vm^2)/conj(Z(temp)); disp(['Complex power of Z',num2str(temp),' = ',num2str(S(temp))]) end disp(['Total Complex Power = ',num2str(sum(S))])

You might also like