Alternate-Universe Inductor

An inductor operates according to the following differential equation (where V V and I I are time-domain quantities):

V L = L I ˙ V_L = L \dot{I}

Suppose there was an alternate universe in which the voltage across the inductor was related to the second time derivative of the current, instead of the first.

V L = L I ¨ V_L = L \ddot{I}

Consider a circuit containing a DC voltage source, a switch, a resistor, and an alternate-universe inductor. For this circuit, the governing differential equation is:

V = R I + L I ¨ V = R I + L \ddot{I}

Suppose the switch is initially open, and that right after the switch closes, the current has the following properties:

I ( 0 ) = 0 I ˙ ( 0 ) = 0 I ¨ ( 0 ) = V L I(0) = 0 \\ \dot{I}(0) = 0 \\ \ddot{I}(0) = \frac{V}{L}

The current in the circuit has sinusoidal and non-sinusoidal components. Define the following quantities:

A = peak current value B = average current value (over integer number of signal periods) C = frequency of sinusoidal component (in Hz) A = \text{peak current value} \\ B = \text{average current value (over integer number of signal periods)} \\ C = \text{frequency of sinusoidal component (in Hz)}

If V = 10 volts V = 10 \, \text{volts} , R = 2 Ω R = 2 \, \Omega , and L = 0.001 H L = 0.001 \, \text{H} , what is A + B + C A + B + C ?


The answer is 22.118.

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.

3 solutions

Steven Chase
May 28, 2018

The homogeneous equation is:

I ¨ = R L I \ddot{I} = - \frac{R}{L} I

Combining the homogeneous solution with the particular solution gives the following general form (note that A , B , C A,B,C are defined differently here than in the original problem statement):

I = A c o s ( R L t ) + B s i n ( R L t ) + C I = A \, cos \Big (\sqrt{\frac{R}{L}} t \Big ) + B \, sin \Big (\sqrt{\frac{R}{L}} t \Big ) + C

Applying initial conditions gives:

0 = A + C 0 = B R L B = 0 A R L = V L 0 = A + C \\ 0 = B \sqrt{\frac{R}{L}} \implies B = 0 \\ -A \frac{R}{L} = \frac{V}{L}

Solving for the constants:

A = V R B = 0 C = V R A = - \frac{V}{R} \\ B = 0 \\ C = \frac{V}{R}

The expression for the current is:

I = V R c o s ( R L t ) + V R I = - \frac{V}{R} \, cos \Big (\sqrt{\frac{R}{L}} t \Big ) + \frac{V}{R}

Values of the parameters asked for in the problem:

peak current value = 2 V R = 10 average current value = V R = 5 sinusoidal component frequency = 1 2 π R L = 7.118 sum of all three quantities = 22.118 \text{peak current value } = 2 \frac{V}{R} = 10 \\ \text{average current value } = \frac{V}{R} = 5 \\ \text{sinusoidal component frequency } = \frac{1}{2 \pi} \sqrt{\frac{R}{L}} = 7.118 \\ \text{sum of all three quantities } = 22.118

Karan Chatrath
Jun 19, 2019

Interesting problem. Here is a thought. The governing equation for a regular RL circuit is:

V = I R + L I ˙ V = IR + L\dot{I}

Multiplying both sides by I and re-arrangement gives:

V I d t = I 2 R d t + L I d I VI dt = I^2R dt + LI dI

Integrating the above expression gives us:

0 V I d t = 0 I 2 R d t + 0 I s t e a d y S t a t e L I d I \int_{0}^{\infty}VI dt = \int_{0}^{\infty}I^2R dt + \int_{0}^{I_{steadyState}}LI dI

From this equation above, we can draw a well known conclusion that the energy released by the source is partly stored in the inductor and is partly lost as heat due to resistance.

Let us apply this same logic to the alternate universe inductor. The expression for energy stored in the inductor is of a very different nature. Infact, the energy levels in the inductor may be varying with time (this is speculation as I haven't worked out the expression yet).

What are your views on this? An interesting follow up problem could be framed on these lines if this thought is on a right track. I realise that speculating about this is probably meaningless as this is not a representation of reality. But I find it interesting..

This is a good line of inquiry. Let's calculate and compare the following things, given some transient:

1) Integral of power out of source (straightforward and standard)
2) Integral of power dissipated in resistor as heat (straightforward and standard)
3) Integral of power stored in inductor. This would be an integral of instantaneous voltage times current (like the calc for (1))
4) We know that (1) minus (2) "should" equal (3), if everything hangs together


With a time-domain simulation, we can also verify that these relationships hold on a sample-by-sample basis

Steven Chase - 1 year, 11 months ago

The energy picture seems to hold together. All the checks pass. The third item in my print statement is always basically zero. However, there are a few more very interesting points as well.

1) I am using a load convention for the inductor energy E L E_L . So a positive value for E L E_L indicates net energy consumption. The plot of E L E_L over time shows that the inductor consumes energy for a short time, but then consistently supplies energy to the circuit from then on. The inductor is therefore an "active" element, which would require an internal energy source (like a battery) to sustain.

2) There is no nice proportionality between E L E_L and the square of the current.

3) I am using a source convention for the battery energy E s E_s , and a load convention for the resistor energy E R E_R . These are both generally positive as expected.

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

Vs = 10.0
R = 2.0
L = 0.001

I = 0.0
Id = 0.0
Idd = Vs/L

omega = math.sqrt(R/L)
T = 2.0*math.pi/omega

t = 0.0
dt = 10.0**(-6.0)

count = 0

Es = 0.0
ER = 0.0
EL = 0.0

print "t I (Ps-(PR+PL)) Es EL ER (EL/(I**2.0))"

while t <= 5.0*T:

    I = I + Id*dt
    Id = Id + Idd*dt

    Idd = (Vs - R*I)/L

    Ps = Vs*I
    PR = (I*R)*I
    PL = (L*Idd)*I

    Es = Es + Ps*dt
    ER = ER + PR*dt
    EL = EL + PL*dt

    if (count%1000 == 0) and (math.fabs(I) > 0.0):
        print t,I,(Ps-(PR+PL)),Es,EL,ER,(EL/(I**2.0))

    t = t + dt
    count = count + 1

Steven Chase - 1 year, 11 months ago

That is a very detailed analysis. The idea of the inductor being an active element is an interesting deduction. Thank you for the insights.

Karan Chatrath - 1 year, 11 months ago
Tom Engelsman
Jun 3, 2018

This can be solved via a Laplace Transform:

I ( t ) + R L I ( t ) = V L [ s 2 I ( s ) s I ( 0 ) I ( 0 ) ] + R L I ( s ) = V L 1 s I''(t) + \frac{R}{L} \cdot I(t) = \frac{V}{L} \Rightarrow [s^2 I(s) - sI(0) - I'(0)] + \frac{R}{L} \cdot I(s) = \frac{V}{L} \cdot \frac {1}{s}

and after substituting our values for resistance, inductance, and voltage:

( s 2 + 2000 ) I ( s ) = 10000 s I ( s ) = 10000 s ( s 2 + 2000 ) = 5 s 5 s s 2 + 2000 (s^2 + 2000)I(s) = \frac{10000}{s} \Rightarrow I(s) = \frac{10000}{s(s^2 + 2000)} = \frac{5}{s} - \frac{5s}{s^2 + 2000} ;

and taking the inverse Laplace Transform yields:

I ( t ) = 5 5 c o s ( 2000 t ) I(t) = \boxed{5 - 5cos(\sqrt{2000} t)}

which the following info can be gleaned:

I M I N = 0 , I M A X = 10 , I A V G = I M I N + I M A X 2 = 5 I_{MIN} = 0, I_{MAX} = 10, I_{AVG} = \frac{I_{MIN} + I_{MAX}}{2} = 5 and 2 π f = 2000 f = 2000 2 π = 7.117 2\pi f = \sqrt{2000} \Rightarrow f = \frac{\sqrt{2000}}{2\pi} = 7.117

and the final answer computes to: I M A X + I A V G + f = 10 + 5 + 7.117 = 22.117 . I_{MAX} + I_{AVG} + f = 10 + 5 + 7.117 = \boxed{22.117}.

Thanks. Glad to see a solve on this finally

Steven Chase - 3 years ago

Log in to reply

No prob, Steve......nice little LR circuit problem to kick my Sunday morning off :)

tom engelsman - 3 years ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...