Circuit Theory/Convolution Integral/Examples/example49/current

From testwiki
Revision as of 20:54, 22 June 2013 by imported>QUBot (Adding BookCat to uncategorised page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
series LRC circuit ... find voltage across the resistor

Given that the source voltage is (2t-3t2), find voltage across the resistor.

Here focused on finding current first:

Transfer Function

H(s)=iVS=14+s+10.25s
simplify(1/(4 + s + 1/(0.25*s)))
H(s)=ss2+4s+4

Homogeneous Solution

solve(s^2 + 4.0*s + 4.0,s)

There are two equal roots at s = -2, so the solution has the form:

ih(t)=Ae2t+Bte2t+C1

Particular Solution

After a long time attached to a unit step function source, the inductor has shorted and the capacitor has opened. All the drop is across the capacitor. The current is zero.

ip=0

Initial Conditions

So far the full equation is:

i(t)=Ae2t+Bte2t+C1

Initial current through the series leg is zero because of the assumed initial conditions of the inductor. This means:

i(0)=0=A+C1

Assuming the initial voltage across the capacitor is zero, then initial voltage drop has to be across the inductor.

VL(t)=Ldi(t)dt=(2A+B)e2t2Bte2t
VL(0)=1=2A+B

After a long period of time, the current still has to be zero so:

C1=0

This means that:

A=0
B=1
i(t)=te2t
Vr(t)=4te2t

The 4 is lost in the numerator of the transfer function if a transfer function is written for Vr initially. The 4 does not make it into the homogeneous solution. In second order analysis, never write a transfer function for a resistor.

Impulse Solution

Taking the derivative of the above get:

VRδ(t)=4e2t8te2t

Convolution Integral

VR(t)=0t(4e2(tx)8(tx)e2(tx))(2x3x2)dx
f := (4*exp(-2*(t-x)) - 8*(t-x)exp(-2*(t-x)))*(2*x-3*x^2);
S :=int(f,x=0..t)
VR(t)=88e2t10te2t6t

There will not be any constant since again, V_R(t) = 0 after a long time ... and the capacitor opens. Template:BookCat