RLC Y Circuit

An RLC circuit is excited by a DC voltage source. The switch closes at time t = 0 t = 0 , at which time the inductor and capacitor are de-energized.

Let I m i n I_{min} and I m a x I_{max} be the smallest and largest source current values over all time. Let I 0 + I_{0+} be the source current right after the switch closes, and let I I_{\infty} be the steady-state source current as the elapsed time approaches infinity.

Determine the following ratio:

I m i n + I m a x I 0 + + I \large{\frac{I_{min} + I_{max}}{I_{0+} + I_{\infty}}}

Details and Assumptions:
1) All four current values are positive numbers
2) R = L = C = 1 R = L = C = 1
3) V S = 10 V_S = 10


The answer is 0.771.

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
Nov 28, 2019

My approach is essentially the same as the one presented by @Karan Chatrath, but with some logistical/stylistic differences. The state variables are the capacitor voltage V C V_C and the inductor current I L I_L .

Since the capacitor and inductor are in parallel, we have the first state-space equation:

V C = L I ˙ L I ˙ L = V C L V_C = L \dot{I}_L \\ \dot{I}_L = \frac{V_C}{L}

Then using Kirchoff's Voltage Law:

V S V C R ( I L + I C ) = 0 V S V C R ( I L + C V ˙ C ) = 0 V ˙ C = V S V C R C I L C V_S - V_C - R (I_L + I_C) = 0 \\ V_S - V_C - R (I_L + C \dot{V}_C) = 0 \\ \dot{V}_C = \frac{V_S - V_C}{R C} - \frac{I_L}{C}

Numerical integration takes care of the rest, now that we have the rates of change of the state variables expressed in terms of the state variables and the forcing function. And finally,

I S = I L + I C = I L + C V ˙ C I_S = I_L + I_C = I_L + C \dot{V}_C

The plot of source current vs. time is below. Simulation code is attached as well.

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

VS = 10.0

R = 1.0
L = 1.0
C = 1.0

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

dt = 10.0**(-5.0)
t = 0.0
count = 0

IL = 0.0
VC = 0.0

ILd = 0.0
VCd = 0.0

ISmax = -999999999.0
ISmin = 99999999.0

while t <= 30.0:

    IL = IL + ILd * dt
    VC = VC + VCd * dt

    ILd = VC/L

    VCd = (VS-VC)/(R*C) - IL/C

    IC = C*VCd

    IS = IL + IC

    if IS > ISmax:
        ISmax = IS
    if IS < ISmin:
        ISmin = IS

    t = t + dt
    count = count + 1

    #if count % 1000 == 0:
        #print t,IS,IL,VC

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

print dt
print ""
print ISmin
print ISmax
print ""
print ((ISmin+ISmax)/20.0)

@Steven Chase sir I didn't understand the logic behind the 21,22 and 37 to 41 code lines ? I think this lines have some internal relation??? Thanks in advance

A Former Brilliant Member - 11 months, 2 weeks ago
Karan Chatrath
Nov 27, 2019

A general outline of the solution. I have omitted specifics.

Applying Kirchoff's laws to the circuit gives the following relations. Note that current through the inductor is I L I_L and that through the capacitor is I C I_C and the charge stored in the capacitor is Q Q . The source current is denoted by I I .

V S + L d I L d t + I R = 0 -V_S + L\frac{dI_L}{dt} +IR = 0 L d I L d t Q C = 0 L\frac{dI_L}{dt} - \frac{Q}{C} = 0 d Q d t = I C \frac{dQ}{dt} = I_C I = I L + I C I = I_L+I_C

By some straightforward manipulation, it can be shown that:

d 2 I L d t + d I L d t + I L = 10 ; d 2 I L d t = I C \frac{d^2I_L}{dt} +\frac{dI_L}{dt} + I_L = 10 \ ; \ \frac{d^2I_L}{dt} = I_C

Initial conditions are:

I L ( 0 ) = 0 ; Q ( 0 ) = 0 I ˙ L ( 0 ) = 0 I_L(0) = 0 \ ; \ Q(0) = 0 \implies \dot{I}_L(0) = 0

The closed-form solution of I L ( t ) I_L(t) needs to be double differentiated to get the capacitor current. Finally, the expression for source current can be obtained. It can be verified by inspecting the circuit that the source current I I as soon as the switch closes and after a large amount of time is both 10 A 10A . By searching (either using a computer program or by using differential calculus) for the max and min current and computing the required ratio, the answer is 0.7714 \boxed{0.7714} .

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...