Alternating Current Series #1

An ideal inductor of inductance L L is connected in series with another inductor of inductance L L parallel to an ideal capacitor of capacitance C C , a battery of electromotive force E E , and a switch. Before closing, the switch has been open for a long time and the capacitor is uncharged. The voltage on the capacitor at time t t after the switch is closed is given by:

V = E α ( 1 cos ( β L C t ) ) V = \frac E\alpha \left(1-\cos \left(\sqrt{\frac \beta{LC}}t \right) \right)

Find α + β \alpha + \beta .

The problem is taken from my Physics book.


The answer is 4.

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 30, 2020

The system equations are:

E V C = L I ˙ L 1 V C = L I ˙ L 2 I L 1 I L 2 = C V ˙ C E - V_C = L \, \dot{I}_{L1} \\ V_C = L \, \dot{I}_{L2} \\ I_{L1} - I_{L2} = C \dot{V}_C

Subtracting the second equation from the first:

E 2 V C = L ( I ˙ L 1 I ˙ L 2 ) = L C V ¨ C E - 2 V_C = L \, (\dot{I}_{L1} - \dot{I}_{L2}) = L C \ddot{V}_C

Homogeneous equation:

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

This corresponds to simple harmonic motion with angular frequency ω = 2 L C \omega = \sqrt{\frac{2}{L C}} . The general form is:

V C = A cos ( ω t ) + B sin ( ω t ) + D V_C = A \cos(\omega t) + B \sin(\omega t) + D

Apply the following initial conditions to solve for ( A , B , D ) (A,B,D) :

V C ( 0 ) = 0 V ˙ C ( 0 ) = 0 V ¨ C ( 0 ) = E L C V_C (0) = 0 \\ \dot{V}_C (0) = 0 \\ \ddot{V}_C (0) = \frac{E}{LC}

After solving for the constants, the final answer is:

V C = E 2 ( 1 c o s ( ω t ) ) ω = 2 L C V_C = \frac{E}{2} \Big(1 - cos(\omega t ) \Big) \\ \omega = \sqrt{\frac{2}{L C}}

I have also included numerical simulation code:

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

E = 1.0
L1 = 1.0
L2 = 1.0
C = 1.0

dt = 10.0**(-6.0)

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

t = 0.0
count = 0

IL1 = 0.0
IL2 = 0.0
VC = 0.0

IL1d = 0.0
IL2d = 0.0
VCd = 0.0

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

while t <= 10.0:

    IL1 = IL1 + IL1d*dt
    IL2 = IL2 + IL2d*dt
    VC = VC + VCd*dt

    IL1d = (E-VC)/L1
    IL2d = VC/L2
    VCd = (IL1-IL2)/C

    t = t + dt
    count = count + 1

    if count % 10000 == 0:
        print t,VC

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

@Steven Chase
Nice solution
Upvotes have been awarded

Talulah Riley - 9 months, 2 weeks ago

@Steven Chase Right now I am staring at your anayltical solution.
Last night I was feeling very sleepy, therefore I didn't able to take a look.
I didn't understand the step below (Homogeneous equation. )

Talulah Riley - 9 months, 2 weeks ago

Log in to reply

Suppose you have a differential equation of the following form:

y ¨ = ω 2 y + c \ddot{y} = -\omega^2 y + c

The first step is to solve the "homogeneous equation", which is the same equation without the constant.

y ¨ = ω 2 y \ddot{y} = -\omega^2 y

Let the solution to that be y h y_h . Then the full solution is y h + d y_h + d , which accounts for there being a constant in the original differential equation.

Steven Chase - 9 months, 2 weeks ago

Log in to reply

@Steven Chase Yeah Thanks for explaining.
One more thing to want to ask.
How did you know that \ddot{V_{c}(0) =\frac{E}{LC} ?
Can you explain it's physical significance?

Talulah Riley - 9 months, 2 weeks ago

Log in to reply

@Talulah Riley That comes from:

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

The first equation is derived in the body of the solution.

Steven Chase - 9 months, 2 weeks ago

Log in to reply

@Steven Chase @Steven Chase ohkay
My new problem is up now

Talulah Riley - 9 months, 2 weeks ago
Chew-Seong Cheong
Sep 29, 2020

Let the currents through the inductor and the capacitor of the parallel circuit be I L I_L and I C I_C respectively. Then the voltage on the capacitor:

V ( t ) = V ( 0 ) + 0 t I C ( τ ) C d τ Since the capacitor is uncharged = 0 t I C ( τ ) C d τ at t = 0 V ( 0 ) = 0 d V ( t ) d t = I C ( t ) C I C ( t ) = C d V ( t ) d t \begin{aligned} V(t) & = V(0) + \int_0^t \frac {I_C(\tau)}C d\tau & \small \blue{\text{Since the capacitor is uncharged}} \\ & = \int_0^t \frac {I_C(\tau)}C d\tau & \small \blue{\text{at }t = 0 \implies V(0) = 0} \\ \frac {dV(t)}{dt} & = \frac {I_C(t)}C \\ \implies I_C(t) & = C \frac {dV(t)}{dt} \end{aligned}

Note that the voltage on the capacitor is the same as the voltage of the parallel inductor. Then V ( t ) = L d I L ( t ) d t V(t) = L\dfrac {dI_L(t)}{dt} . We also note that:

L d d t ( I L ( t ) + I C ( t ) ) + V ( t ) = E L d I L ( t ) d t + L C d 2 V ( t ) d t 2 + V ( t ) = E Note that V ( t ) = L d I L ( t ) d t L C d 2 V ( t ) d t 2 + 2 V ( t ) = E \begin{aligned} L \frac d{dt} \left(I_L(t) + I_C(t)\right) + V(t) & = E \\ \blue{L\frac {dI_L(t)}{dt}} + LC \frac {d^2 V(t)}{dt^2} + V(t) & = E & \small \blue{\text{Note that }V(t) = L \frac {dI_L(t)}{dt}} \\ LC \frac {d^2 V(t)}{dt^2} + 2 V(t) & = E \end{aligned}

Solving the differential equation (see Note):

V ( t ) = c 1 sin ( 2 C L t ) + c 2 cos ( 2 C L t ) + E 2 where c 1 and c 2 are constants. I C ( t ) = C d V ( t ) d t = 2 C L ( c 1 cos ( 2 C L t ) sin ( 2 C L t ) ) I C ( 0 ) = c 1 2 C L = 0 c 1 = 0 V ( t ) = c 2 cos ( 2 C L t ) + E 2 V ( 0 ) = c 2 + E 2 = 0 c 2 = E 2 V ( t ) = E 2 ( 1 cos ( 2 C L t ) ) \begin{aligned} \implies V(t) & = c_1 \sin \left(\sqrt{\frac 2{CL}}t\right) + c_2 \cos \left(\sqrt{\frac 2{CL}}t\right) + \frac E2 & \small \blue{\text{where }c_1 \text{ and }c_2 \text{ are constants.}} \\ I_C(t) & = C \frac {dV(t)}{dt} \\ & = \sqrt{\frac {2C}L} \left(c_1\cos \left(\sqrt{\frac 2{CL}}t\right) - \sin \left(\sqrt{\frac 2{CL}}t\right)\right) \\ I_C(0) & = c_1 \sqrt{\frac {2C}L} = 0 & \small \blue{\implies c_1 = 0} \\ \implies V(t) & = c_2 \cos \left(\sqrt{\frac 2{CL}}t\right) + \frac E2 \\ V(0) & = c_2 + \frac E2 = 0 & \small \blue{\implies c_2 = - \frac E2} \\ \implies V(t) & = \frac E2 \left(1-\cos \left(\sqrt{\frac 2{CL}}t\right)\right) \end{aligned}

Therefore α + β = 2 + 2 = 4 \alpha + \beta = 2+2 = \boxed 4 .


Note : Consider a differential equation d 2 v ( t ) d t 2 + p v ( t ) = q \dfrac {d^2v(t)}{dt^2} + pv(t) = q . Then the characteristic equation ( D 2 + q ) v = 0 (D^2 + q)v = 0 , D = ± i p \implies D = \pm i\sqrt p and the general solution of the differential equation is:

v ( t ) = c 1 sin ( p t ) + c 2 cos ( p t ) + c 3 d v ( t ) d t = p ( c 1 cos ( p t ) c 2 sin ( p t ) ) d 2 v ( t ) d t 2 = p ( c 1 sin ( p t ) + c 2 cos ( p t ) ) = p v ( t ) + p c 3 d 2 v ( t ) d t 2 + p v ( t ) = q p v ( t ) + p c 3 + p v ( t ) = q c 3 = q p \begin{aligned} v(t) & = c_1 \sin (\sqrt p t) + c_2 \cos (\sqrt p t) + c_3 \\ \frac {dv(t)}{dt} & = \sqrt p \left(c_1 \cos (\sqrt p t) - c_2 \sin (\sqrt p t)\right) \\ \frac {d^2v(t)}{dt^2} & = - p \left(c_1 \sin (\sqrt p t) + c_2 \cos (\sqrt p t)\right) \\ & = - pv(t) + pc_3 \\ \implies \frac {d^2v(t)}{dt^2} + pv(t) & = q \\ - pv(t) + pc_3 + pv(t) & = q \\ \implies c_3 = \frac qp \end{aligned}

Putting v ( t ) = V ( t ) v(t) = V(t) , p = 2 L C p = \dfrac 2{LC} , and q = E L C q = \dfrac E{LC} , then V ( t ) = c 1 sin ( 2 L C t ) + c 1 cos ( 2 L C t ) + E 2 V(t) = c_1 \sin \left(\sqrt{\frac 2{LC}}t\right) + c_1 \cos \left(\sqrt{\frac 2{LC}}t\right) + \dfrac E2 .

@Chew-Seong Cheong Thank you so much for figure and solution.

Talulah Riley - 8 months, 2 weeks ago

@Chew-Seong Cheong Can you please show me the steps for solving the above differential equations.
Thanks in advance.

Talulah Riley - 8 months, 2 weeks ago

Log in to reply

I have added a note to explain the solving the differential equation. Usually we need to memorize the general solution. Hope that it is useful.

Sorry, but I can't get the answer to Two Inductors . If you can give me. I will provide a solution and rewrite your problem with a figure. Thanks.

Chew-Seong Cheong - 8 months, 2 weeks ago

Log in to reply

@Chew-Seong Cheong Thank you so much for adding the note.Answer of Two Inductor is 1.414.
Thanks in advance for posting the solution.

Talulah Riley - 8 months, 2 weeks ago

1 pending report

Vote up reports you agree with

×

Problem Loading...

Note Loading...

Set Loading...