Alternating Current Series #3

The circuit shown above consists of a resistance, a capacitor, an inductor and three alternating voltage sources:

{ v 1 = V sin ( ω t ) v 2 = V sin ( ω t + 120 ° ) v 3 = V sin ( ω t + 240 ° ) \begin{cases} v_{1}=V \sin (\omega t) \\ v_{2} = V \sin (\omega t+120°) \\ v_{3}= V \sin (\omega t +240°) \end{cases}

The absolute magnitudes (moduli) of impedance of the resistance, capacitor and inductor are the same. Find the voltage of the junction P P , which is of the form v P = α V sin ( ω t + β ° ) v_{P}=\alpha V \sin (\omega t + \beta ° ) . Type your answer as α + β \alpha+\beta .

The problem is taken from my Physics Book.


The answer is 180.732.

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

Using phasor notation for convenience, then v 1 = V 0 v_1 = V\angle 0^\circ , v 2 = V 12 0 v_2 = V \angle 120^\circ , and v 3 = V 24 0 v_3 = V \angle 240^\circ . Using the junction O O connected to the three voltage sources as reference and considering the sum of current out of node O O as zero, and let the magnitude of the impedances be R R , then we have:

v P v 1 R + v P v 2 j R + v P v 3 j R = 0 Let v P = V p θ V p θ V 0 R + V p θ V 12 0 j R + V p θ V 24 0 j R = 0 V p θ V 0 R + V 12 0 V 24 0 R 9 0 = 0 V p θ V 0 + V 3 0 V 15 0 = 0 \begin{aligned} \frac {v_P-v_1}R + \frac {v_P-v_2}{-jR} + \frac {v_P-v_3}{jR} & = 0 & \small \blue{\text{Let }v_P = V_p \angle \theta} \\ \frac {V_p\angle \theta - V\angle 0^\circ}R + \frac {V_p\angle \theta - V\angle 120^\circ}{-jR} + \frac {V_p\angle \theta - V\angle 240^\circ}{jR} & = 0 \\ \frac {V_p\angle \theta - V\angle 0^\circ}R + \frac {V\angle 120^\circ - V\angle 240^\circ}{R\angle 90^\circ} & = 0 \\ V_p\angle \theta - V\angle 0^\circ + V\angle 30^\circ - V\angle 150^\circ & = 0 \end{aligned}

V p θ = V 0 V 3 0 + V 15 0 = V ( 1 3 2 j 2 3 2 + j 2 ) = ( 1 3 ) V = ( 3 1 ) V 18 0 \begin{aligned} \implies V_p \angle \theta & = V\angle 0^\circ - V\angle 30^\circ + V\angle 150^\circ \\ & = V \left(1 - \frac {\sqrt 3}2 - \frac j2 - \frac {\sqrt 3}2 + \frac j2 \right) \\ & = (1-\sqrt 3)V \\ &= (\sqrt 3 - 1) V \angle 180^\circ \end{aligned}

Therefore α + β = 3 1 + 180 180.732 \alpha + \beta = \sqrt 3 - 1 + 180 \approx \boxed{180.732} .

@Chew-Seong Cheong Upvoted. Very nice thanks for solution.
It is good to see you solve Electricity and Magnetism problems also.

Talulah Riley - 9 months, 1 week ago

Log in to reply

You are welcome. I was trained an electrical engineer.

Chew-Seong Cheong - 9 months, 1 week ago
Steven Chase
Aug 31, 2020

The key here is to represent the quantities as complex numbers. The voltages are (we can just consider the magnitude to be one):

V 1 = e j 0 V 2 = e j 12 0 V 3 = e j 24 0 V_1 = e^{j 0^\circ} \\ V_2 = e^{j 120^\circ} \\ V_3 = e^{j 240^\circ}

The impedances are (take there magnitudes to be unity):

Z R = 1 + j 0 Z C = 0 j 1 Z L = 0 + j 1 Z_R = 1 + j 0 \\ Z_C = 0 - j 1 \\ Z_L = 0 + j 1

The nodal equation at P P is:

V P V 1 R + V P V 2 Z C + V P V 3 Z L = 0 V P ( 1 R + 1 Z C + 1 Z L ) = V 1 R + V 2 Z C + V 3 Z L \frac{V_P - V_1}{R} + \frac{V_P - V_2}{Z_C} + \frac{V_P - V_3}{Z_L} = 0 \\ V_P \Big( \frac{1}{R} + \frac{1}{Z_C} + \frac{1}{Z_L} \Big) = \frac{V_1}{R} + \frac{V_2}{Z_C} + \frac{V_3}{Z_L}

Solving for V P V_P results in:

V P = ( 3 1 ) e j 18 0 V_P = (\sqrt{3} - 1 ) e^{j 180^\circ}

Solution code is attached:

 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
import math
import cmath

deg = math.pi/180.0

theta1 = 0.0
theta2 = 120.0*deg
theta3 = 240.0*deg

V1 = complex(math.cos(theta1),math.sin(theta1))
V2 = complex(math.cos(theta2),math.sin(theta2))
V3 = complex(math.cos(theta3),math.sin(theta3))

R = 1.0
ZC = complex(0.0,-1.0)
ZL = complex(0.0,1.0)

right = V1/R + V2/ZC + V3/ZL
left = 1.0/R + 1.0/ZC + 1.0/ZL

VP = right/left

alpha = abs(VP)
beta = cmath.phase(VP)/deg

print alpha
print beta
print (alpha + beta)

#>>> 
#0.732050807569
#180.0
#180.732050808
#>>> 

@Steven Chase Thanks
How can we take magnitude of impedance to be unity?

Talulah Riley - 9 months, 2 weeks ago

Log in to reply

Or you can pick any number you want. As long as they have the same magnitude, the result will be the same

Steven Chase - 9 months, 2 weeks ago

Log in to reply

@Steven Chase Thanks.
By the way, your English skills and vocabulary is excellent.

Talulah Riley - 9 months, 2 weeks ago

@Steven Chase Umm. How did you solve that equation at the last 2nd step of your anayltical solution?
I am facing little bit difficulty?

Talulah Riley - 9 months, 2 weeks ago

Log in to reply

These substitutions should help:

j = e j π / 2 j = e j π / 2 j = e^{j \pi/2} \\ -j = e^{-j \pi/2}

Steven Chase - 9 months, 2 weeks ago

@Steven Chase I was not expecting a reply today.
Any way why did you consider magnitudes of. Capacitor and inductor -j and +j

Talulah Riley - 9 months, 2 weeks ago

Log in to reply

Indeed, I am going to bed now. Those conventions require a bit of explanation, so I will post a note on the subject tomorrow.

Steven Chase - 9 months, 2 weeks ago

Log in to reply

@Steven Chase ok good night , sweet dreams.

Talulah Riley - 9 months, 2 weeks ago

@Steven Chase Those conventions require a bit of explanation, so I will post a note on the subject tomorrow.
Can you explain now?

Talulah Riley - 9 months, 1 week ago

Log in to reply

It's up now

Steven Chase - 9 months, 1 week ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...