Maximum Charge

Initially the inductor is de-energized at t = 0 t=0 and the capacitor has a charge of C E CE at t = 0 t=0

Find the maximum charge on capacitor after the switch is closed.
Answer comes in the form of α C E \alpha CE
Type your answer as α = ? \alpha=?


The answer is 3.

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
Sep 22, 2020

Let the capacitor voltage be V C V_C , and let the inductor current be I L I_L . The governing equations for the circuit are:

2 E V C = L I ˙ L I L = C V ˙ C 2E - V_C = L \dot{I}_L \\ I_L = C \dot{V}_C

Substituting the second equation in to the first yields:

2 E V C = L C V ¨ C 2E - V_C = L C \ddot{V}_C

The homogeneous equation is:

V ¨ C = 1 L C V C = ω 2 V C ω = 1 L C \ddot{V}_C = - \frac{1}{L C} V_C = - \omega^2 V_C \\ \omega = \frac{1}{\sqrt{LC}}

The homogeneous solution is sinusoidal, and then we must add a constant term as well.

V C = A sin ( ω t ) + B cos ( ω t ) + D V ˙ C = A ω cos ( ω t ) B ω sin ( ω t ) V ¨ C = A ω 2 sin ( ω t ) B ω 2 cos ( ω t ) V_C = A \sin (\omega t ) + B \cos (\omega t) + D \\ \dot{V}_C = A \omega \cos (\omega t ) - B \omega \sin (\omega t) \\ \ddot{V}_C = -A \omega^2 \sin (\omega t ) - B \omega^2 \cos (\omega t)

Initial conditions:

V C ( 0 ) = E = B + D V ˙ C ( 0 ) = 0 = A ω V ¨ C ( 0 ) = E L C = B ω 2 = B L C V_C (0) = E = B + D\\ \dot{V}_C (0) = 0 = A \omega \\ \ddot{V}_C (0) = \frac{E}{L C} = -B \omega^2 = -\frac{B}{L C}

Solving for the constants yields:

A = 0 B = E D = 2 E A = 0 \\ B = -E \\ D = 2 E

Finally:

V C = E cos ( ω t ) + 2 E V_C = -E \cos (\omega t) + 2 E

The maximum value of V C V_C is therefore 3 E 3 E , and the maximum charge is 3 C E 3 C E .

To solve numerically, we only need to consider the basic equations.

2 E V C = L I ˙ L I L = C V ˙ C 2E - V_C = L \dot{I}_L \\ I_L = C \dot{V}_C

Isolate the derivative terms and numerically integrate.

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

dt = 10.0**(-5.0)

L = 1.0
C = 1.0
E = 1.0

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

t = 0.0
count = 0

I = 0.0
VC = E

Id = (2.0*E - VC)/L
VCd = I/C

VCmax = 0.0

while t <= 10.0:

    I = I + Id*dt
    VC = VC + VCd*dt

    Id = (2.0*E - VC)/L
    VCd = I/C

    if VC > VCmax:
        VCmax = VC

    t = t + dt
    count = count + 1

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

print ""
print ""

print dt
print VCmax

#1e-05
#3.00004712501

@Steven Chase Thank you so much sir

Talulah Riley - 8 months, 3 weeks ago

@Steven Chase you have solved through 2 method. Thanks a lot

Talulah Riley - 8 months, 3 weeks ago

Log in to reply

You're welcome. This was a good one for practicing both solution methods. I'm off to bed now

Steven Chase - 8 months, 3 weeks ago

Log in to reply

@Steven Chase ok good night. Love you sir.

Talulah Riley - 8 months, 3 weeks ago

@Steven Chase are you free? Or whenever you will be, please solve this

Thanks in advance. LYS

Talulah Riley - 8 months, 3 weeks ago

Log in to reply

Here is what I am getting. If it is right, I can post a note on it:

ω 0 2 π M k S \frac{\omega_0}{2 \pi } \sqrt{\frac{M}{k S}}

Steven Chase - 8 months, 2 weeks ago

Log in to reply

@Steven Chase Great people often make small mistake
The answer is M ω 0 2 π k S \frac{M \omega_{0}}{2πkS}

Talulah Riley - 8 months, 2 weeks ago

@Steven Chase please share your attempt. LYS

Talulah Riley - 8 months, 2 weeks ago

Log in to reply

@Talulah Riley I found my mistake. That will fix it. I will post in half an hour or so

Steven Chase - 8 months, 2 weeks ago

@Steven Chase sir I have evergreen doubt in one type of concept in SHM. Can you make a note on that.
I will share if you will say yes. you can make note tomorrow or whenever you will be free.

Talulah Riley - 8 months, 2 weeks ago

Hello, Talulah.... I've added an even simpler Laplace Transform solution in addition to Sir Steven's menagerie! Enjoy :)

tom engelsman - 7 months, 3 weeks ago
Tom Engelsman
Oct 17, 2020

Let q ( 0 ) = C E , q ( 0 ) = 0 q(0)= CE, q'(0) = 0 for this oscillator circuit. By Kirchhoff's Voltage Law, we have the differential equation:

L q ( t ) + 1 C q ( t ) = 2 E Lq''(t) + \frac{1}{C} q(t) = 2E (i)

and taking the Laplace Transform of (i) gives:

L [ s 2 Q ( s ) ( C E ) s 0 ] + 1 C Q ( s ) = 2 E s Q ( s ) = 2 E + ( L C E ) s 2 s ( L s 2 + 1 / C ) = 2 C E s ( L C E ) s L s 2 + 1 / C L[s^{2}Q(s) - (CE)s - 0] + \frac{1}{C} \cdot Q(s) = \frac{2E}{s} \Rightarrow Q(s) = \frac{2E + (LCE)s^2}{s(Ls^2 + 1/C)} = \frac{2CE}{s} - \frac{(LCE)s}{Ls^2 + 1/C} (ii)

and the inverse Laplace Transform of (ii) yields:

q ( t ) = ( C E ) [ 2 cos ( t L C ) ] q(t) = (CE) \cdot [2 - \cos(\frac{t}{\sqrt{LC}})]

which has a maximum capacitor charge of q M A X = 3 C E . q_{MAX} = \boxed{3CE}.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...