Circuit Theory/Convolution Integral/Examples/example49

From testwiki
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.

Can do focused on Vr or: /current/, Vc, or VL before converting to Vr .. Below is the VR solution.

Outline:

Transfer Function

H(s)=VRVS=44+s+10.25s
simplify(4/(4 + s + 1/(0.25*s)))
H(s)=4ss2+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:

VRh(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.

VRp=0

This also means that C1 has to be zero.

Initial Conditions

So far the full equation is:

VR(t)=Ae2t+Bte2t

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

VR(0)=0=A
A=0

Assuming the initial voltage across the capacitor is zero, no current is flowing so the drop across the resistor is zero.

i(t)=VR4
VL(t)=Ldi(t)dt=14((2A+B)e2t2Bte2t)
VL(0)=1=B4
B=4
VR(t)=4te2t

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