LRC II

RMS values of voltages U 1 U_1 and U 2 U_2 in the AC circuit given in the schematic are 20 V 20 \si{V} and 15 V 15 \si{V} , respectively. If U 1 U_1 and U 2 U_2 are out of phase by 90 ° 90° , determine the RMS value of the voltage generated by source E E .


The answer is 13.892443989449804508432547041029.

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
Jun 29, 2019

Just for fun, I will continue with the hill-climbing technique. This time, the program solves for four different unknown parameters ( E , X L , R , X C ) (E, X_L, R, X_C) . There are three checks: one for the U 1 U_1 magnitude, one for the U 2 U_2 magnitude, and a dot product orthogonality check between U 1 U_1 and U 2 U_2 . Note that there are multiple solutions for the parameters in general, but the source voltage always ends up being 13.892 13.892 .

 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
88
89
90
91
92
93
94
import math
import cmath
import random

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

delta = 0.001  # mutation size

minres = 99999999.0 # initialize cumulative residual to large value 
                                     # eventually, this should become close to zero

E = 50.0*random.random()   # source voltage - random initialization
R = 5.0 * random.random()  # resistance - random initialization
XL = 5.0 * random.random()  # inductive reactance magnitude - random initialization
XC = 5.0 * random.random()  # capacitive reactance magnitude - random initialization

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

for j in range(0,5*10**6):

    Em = E + delta * (-1.0 + 2.0 * random.random())   # mutate parameters
    Rm = R + delta * (-1.0 + 2.0 * random.random())
    XLm = XL + delta * (-1.0 + 2.0 * random.random())  
    XCm = XC + delta * (-1.0 + 2.0 * random.random())

    ZL = complex(0.0,XLm)  # calculate complex impedances
    ZC = complex(0.0,-XCm)

    I = Em/(ZL + Rm + ZC)  # complex current

    U1 = I*(ZL+Rm)  # complex voltage U1
    U2 = I*(Rm+ZC)  # complex voltage U2

    U1R = U1.real   # real/imag parts of voltages
    U1I = U1.imag

    U2R = U2.real
    U2I = U2.imag

    res1 = math.fabs(abs(U1) - 20.0)  # difference between U1 magnitude and 20
    res2 = math.fabs(abs(U2) - 15.0)  # difference between U2 magnitude and 15

    dot = (U1R*U2R + U1I*U2I)/(abs(U1) * abs(U2)) # dot product orthogonality check
    res3 = math.fabs(dot)

    res = res1 + res2 + res3  # form residual (should be zero)

    if res < minres:   # accept mutated XL,XC if cumulative residual gets smaller

        minres = res

        E = Em  
        R = Rm
        XL = XLm 
        XC = XCm

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


print "minimum residual"
print minres
print ""
print "XL - ohms"
print XL
print ""
print "XC - ohms"
print XC
print ""
print "RMS Source Voltage (E)"
print E
print ""
print "Resistance"
print R


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


# Results

#minimum residual
#5.85605402858e-06

#XL - ohms
#4.14944926514

#XC - ohms
#2.33406251656

#RMS Source Voltage (E)
#13.8924514996

#Resistance
#3.11208840141

This problem can be solved using phasor diagrams . An approximate phasor diagram of this circuit is given in the picture above, where U R U_R , U L U_L and U C U_C are voltages across the resistor, inductor and capacitor respectively and I I is the current flowing through the circuit. If we take I I as referential phasor, then:

  • U R U_R is collinear with I I , because the voltage across a resistor is in phase with the current through it

  • U L U_L is counter-clockwise perpendicular to I I and U R U_R , because the voltage across an inductor leads the current through it by 90 ° 90°

  • U C U_C is clockwise perpendicular to I I and U R U_R , because the voltage across a capacitor lags the current through it by 90 ° 90°

  • U R U_R and U L U_L sum up to U 1 U_1

  • U R U_R and U C U_C sum up to U 2 U_2

  • U 1 U_1 leads U 2 U_2 by 90 ° 90°

Points marked as A , B , C A, B, C and D D on the phasor diagram form three similar right-angled triangles: A C B , A D C \triangle{ACB}, \triangle{ADC} and B D C \triangle{BDC} . Side lengths of each of these triangles correspond to the following RMS values of voltages:

  • A C = U 1 AC = U_1

  • B C = U 2 BC = U_2

  • A B = U L + U C AB = U_L + U_C

  • A D = U L AD = U_L

  • B D = U C BD = U_C

  • C D = U R CD = U_R

Since A B 2 = A C 2 + B C 2 AB^2 = AC^2 + BC^2 , then U L + U C = U 1 2 + U 2 2 = 25 V U_L + U_C = \sqrt{{U_1}^2 + {U_2}^2} = 25 \si{V} .

U R U_R can be determined using triangle similarity:

U R U 1 = U 2 U L + U C U R = U 1 U 2 U L + U C = 15 20 25 V = 12 V \dfrac{U_R}{U_1} = \dfrac{U_2}{U_L + U_C} \Rightarrow U_R = \dfrac{U_1 * U_2}{U_L + U_C} = \dfrac{15 * 20}{25} \si{V} = 12 \si{V}

U L = U 1 2 U R 2 = 2 0 2 1 2 2 V = 16 V U_L = \sqrt{{U_1}^2 - {U_R}^2} = \sqrt{20^2 - 12^2} \si{V} = 16 \si{V}

U C = 25 V U L = 9 V U_C = 25 \si{V} - U_L = 9 \si{V}

Finally, for a series RLC circuit , RMS voltage of the source is determined as:

E = U R 2 + ( U L U C ) 2 = 1 2 2 + ( 16 9 ) 2 = 193 V 13.892 V \boxed{ E = \sqrt{{U_R}^2 + (U_L - U_C)^2} = \sqrt{12^2 + (16 - 9)^2} = \sqrt{193} \si{V} \approx 13.892 \si{V}}

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...