Multi Sine Power

A voltage source supplies a composite voltage signal consisting of several frequencies.

V S ( t ) = 10 2 sin ( ω t ) + 10 2 sin ( 2 ω t ) + 10 2 sin ( 3 ω t ) V_S(t) = 10 \sqrt{2} \sin(\omega t) + 10 \sqrt{2} \sin(2 \omega t) + 10 \sqrt{2} \sin(3 \omega t)

The voltage source is connected across a series R L RL load. In steady state, what is the average power dissipated by the load (in watts)?

Details and Assumptions:
1) ω = 120 π \omega = 120 \pi
2) R = 1 R = 1
3) L = 1 ω L = \frac{1}{\omega}

Note: There are two ways to solve this. You can use a combination of superposition and AC steady state analysis, or you can do time-domain analysis. The two methods yield the same result. The averaging should be done over an integer number of cycles corresponding to the lowest-frequency component.


The answer is 80.0.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Steven Chase
Aug 19, 2020

I will show the superposition method. I insisted on doing the time-domain analysis as a double-check, as @Karan Chatrath has shown. There are three separate frequencies in the source voltage signal, so model three separate circuits independently; one for each frequency. Add the powers from all three circuits to get the total power. The resistance value remains the same at all frequencies, but the inductive reactance changes. Calculate the inductive reactances at the different frequencies:

X 1 = ω L X 2 = 2 ω L X 3 = 3 ω L X_1 = \omega L \\ X_2 = 2 \omega L \\ X_3 = 3 \omega L

Define the circuit impedances:

Z 1 = R + j X 1 Z 2 = R + j X 2 Z 3 = R + j X 3 Z_1 = R + j X_1 \\ Z_2 = R + j X_2 \\ Z_3 = R + j X_3

Currents and voltages.

V 1 = 10 + j 0 V 2 = 10 + j 0 V 3 = 10 + j 0 I 1 = V 1 Z 1 I 2 = V 2 Z 2 I 3 = V 3 Z 3 V_1 = 10 + j0 \\ V_2 = 10 + j0 \\ V_3 = 10 + j0 \\ I_1 = \frac{V_1}{Z_1} \\ I_2 = \frac{V_2}{Z_2} \\ I_3 = \frac{V_3}{Z_3}

Power values:

P 1 = R e ( V 1 I 1 ) = 50 P 2 = R e ( V 2 I 2 ) = 20 P 3 = R e ( V 3 I 3 ) = 10 P 1 + P 2 + P 3 = 80 P_1 = Re(V_1 I_1^*) = 50 \\ P_2 = Re(V_2 I_2^*) = 20 \\ P_3 = Re(V_3 I_3^*) = 10 \\ P_1 + P_2 + P_3 = 80

The code below implements the steady state solution in the first part and the transient analysis in the second part. Both methods yield the same result.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import math

VSrms = 10.0

f = 60.0
w = 2.0*math.pi*f
T = 1.0/f

R = 1.0
L = 1.0/w

X1 = w*L
X2 = 2.0*X1
X3 = 3.0*X1

Z1 = complex(R,X1)
Z2 = complex(R,X2)
Z3 = complex(R,X3)

I1 = VSrms/Z1
I2 = VSrms/Z2
I3 = VSrms/Z3

I1conj = complex(I1.real,-I1.imag)
I2conj = complex(I2.real,-I2.imag)
I3conj = complex(I3.real,-I3.imag)

S1 = VSrms*I1conj
S2 = VSrms*I2conj
S3 = VSrms*I3conj

P1 = S1.real
P2 = S2.real
P3 = S3.real

print P1
print P2
print P3
print (P1+P2+P3)

print ""
print ""

#50.0
#20.0
#10.0
#80.0

###############################################################
###############################################################
###############################################################

VSmag = 10.0*math.sqrt(2.0)

dt = 10.0**(-6.0)

t = 0.0
count = 0

tf = 1000.0*T

I = 0.0
Id = 0.0

ES = 0.0

while t <= tf:

    I = I + Id*dt

    VS = VSmag*math.sin(w*t) + VSmag*math.sin(2.0*w*t) + VSmag*math.sin(3.0*w*t)

    Id = (VS - R*I)/L

    PS = VS*I

    ES = ES + PS*dt

    t = t + dt
    count = count + 1

    #if count % 100 == 0:
        #print (t/T),PS

print (ES/tf)

#80.0232187952

@Steven Chase Nice solution Upvoted.

Talulah Riley - 9 months, 3 weeks ago

@Steven Chase is there any analytical way to find the area of this figure ( x + y ) 2 16 + ( x y ) 2 9 = 1 \frac{(x+y)^{2}}{16}+\frac{(x-y)^{2}}{9}=1
Hope I am not disturbing you.
Thanks in advance.

Talulah Riley - 9 months, 3 weeks ago

Log in to reply

You can read the "General Cartesian Form" section of this article to figure out what conic section it is:

https://en.wikipedia.org/wiki/Conic section#General Cartesian_form

I assume it is probably an ellipse. Then you can use the "general ellipse" section from this article to figure out the semi-major and semi-minor axis lengths. The area of the ellipse is then π a b \pi a b

https://en.wikipedia.org/wiki/Ellipse#General_ellipse

Steven Chase - 9 months, 3 weeks ago

@Steven Chase in the latest problem I am not able to understand the meaning of fraction.
I am getting ϕ z > 0 = 2.99404 \phi_{z>0}=2.99404 ϕ z < 0 = 0.775871 \phi_{z<0}=0.775871

Talulah Riley - 9 months, 3 weeks ago

Log in to reply

The problem wants the ratio of the top flux to the total flux

Steven Chase - 9 months, 3 weeks ago

@Steven Chase I think you are solving 15 problems on brilliant everyday?

Talulah Riley - 9 months, 3 weeks ago
Karan Chatrath
Aug 19, 2020

I took a numerical brute force approach to solve this problem. The circuit equation for this circuit is:

L I ˙ + I R = V S L\dot{I} + IR = V_S I ( 0 ) = 0 I(0) = 0

IN this circuit, only the resistor is capable of dissipating power. The instantaneous power dissipated by the resistor is:

P ( t ) = I ( t ) 2 R P(t) = I(t)^2R

This instantaneous power has been averaged out over a longer duration of time.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
clear all
clc

% Parameters:
w    = 120*pi;
L    = 1/w;
R    = 1;

% Time initialisation:
dt   = 1e-6;
tf   = 50;
t    = 0:dt:tf;

% Initial condition:
I(1) = 0;

for k = 1:length(t)-1

    % Source Voltage:
    Vs = 10*sqrt(2)*(sin(w*t(k)) + sin(2*w*t(k)) + sin(3*w*t(k)));

    % Instantaneous power dissipated by resistor:
    P(k) = I(k)^2*R;

    % Kirchoff's voltage law applied and solving for current derivative:
    dI = (Vs - I(k)*R)/L;

    % Numerical integration:
    I(k+1) = I(k) + dt*dI;
end

% Average power dissipated:
Answer = mean(P)

% Answer = 80.0265 W

@Karan Chatrath By the way you were saying that in the upcoming days that i will not upload any solutions. ?

Talulah Riley - 9 months, 3 weeks ago

Log in to reply

Yes, I was not very active last week.

Karan Chatrath - 9 months, 3 weeks ago

Log in to reply

@Karan Chatrath So now are you active sir?

Talulah Riley - 9 months, 3 weeks ago

@Karan Chatrath is there any analytical way to find the area of this figure ( x + y ) 2 16 + ( x y ) 2 9 = 1 \frac{(x+y)^{2}}{16}+\frac{(x-y)^{2}}{9}=1 Thanks in advance.

Talulah Riley - 9 months, 3 weeks ago

Log in to reply

Define u = 1 2 ( x + y ) u = \dfrac{1}{\sqrt{2}}(x + y) ,and v = 1 2 ( x y ) v = \dfrac{1}{\sqrt{2}} ( x- y ) , then (u, v) are the coordinates of this curve in a frame that is rotated by 4 5 45^{\circ} counter clockwise with respect to the O x y Oxy frame, and the O u v Ouv frame is an isometry of the O x y Oxy frame, i.e. they have the same scale. Now the equation in the O u v Ouv frame becomes

u 2 8 + v 2 ( 9 / 2 ) = 1 \dfrac{u^2}{8} + \dfrac{v^2}{(9/2)} = 1

which is an ellipse with semi-major axis length of 8 = 2 2 \sqrt{8} = 2 \sqrt{2} and semi-minor axis length of 3 2 \dfrac{3}{\sqrt{2} } , hence the area of the ellipse is π a b = 6 π \pi a b = 6 \pi .

Hosam Hajjir - 9 months, 3 weeks ago

Log in to reply

@Hosam Hajjir Thankyou so much.
By the way this problem is already posted in calculus section.

Talulah Riley - 9 months, 3 weeks ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...