Circuit Theory/TF Examples/Example34/Vc

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Starting Point[edit | edit source]

Starting point of iL looks good. Can get the voltage across the inductor and the parallel components. Then a voltage divider is going to help get to the Vc initial condition.

Transfer Function[edit | edit source]

L :=1;
R1 := 1/2;
C := 1/2;
R2 := 1.5;
simplify((1/(R2 + 1/(s*C))/(1/(s*L) + 1/R1 + 1/(R2 + 1/(s*C))))

Homogeneous Solution[edit | edit source]

Set the denominator of the transfer function to 0 and solve for s:

solve(8*s^2 + 11*s + 4)

So the solution is going to have the form:

Particular Solution[edit | edit source]

After a very long time the inductor shorts, all the current flows through it so:

Initial Conditions[edit | edit source]

MuPad screen shot finding the first equation associated with the constants

Adding the particular and homogeneous solutions, get:

Doing the final condition again, get:

Let's try for Vc first. From the terminal relation for a capacitor:

io := exp(-11*t/16)*(A*cos(7*t/16) + B*sin(7*t/16))
VC := int(io,t)

We know that initially Vc = 0.5 so at t=0 can find equation for A and B:

t :=0;
solve(0.5 = VC)

At this point mupad goes numeric and get this equation:

MuPad code for finding the second equation associated with the constants

Need another equation. Can find Vt by adding Vr and Vc. Then from Vt can find expression for the current through the inductor and visit it's initial condition.

io := exp(-11*t/16)*(A*cos(7*t/16) + B*sin(7*t/16))
VC := int(io,t)

The integration constant is going to be zero because after a long time VC is zero (the inductor shorts).

VT := VC + io*1.5
IL := int(VT)

Mupad goes numeric.

At this point have to figure out the integration constant. After a long time, the inductor's current is going to be 1 because it shorts the current source. Looking at IL in the mupad window can see that every term is multiplied by e-0.6875t which is going to zero as t goes to ∞. This means the integration constant is 1.

So add 1 to IL, then set t=0 and IL = 0.5 and again solve for A and B:

t :=0;
solve (IL + 1 = 0.5)

Get this equation:

Now need to solve the two equations and two unknowns:

solve([A = - 0.6363636364*B - 0.4829545455,A = 0.4107683001*B + 0.5463551119],[A,B])

Get:

So now have time domain expression for io step response:

Impulse Response[edit | edit source]

MuPad code for finding the impulse response and using the convolution integral

The impulse response is the derivative of the step response:

i_u := exp(-11*t/16)*(0.142578125 * cos(7*t/16) - -0.9829799107*sin(7*t/16))
i_s := diff(i_u,t)

Convolution Integral[edit | edit source]

The first step is to substitute into i_s for t:

i_sub := subs(i_s, t = y-x):

Now form the convolution integral:

f := i_sub*(1 + 3*cos(2*x)):
io := int(f,x = 0..y)

Replacing y with t:

i_o :=subs(io, y=t)

There is going to be an integration constant. This value can not be determined because the driving function oscillates. The initial conditions of the inductor and capacitor have already been visited. More information (like a specific value at a future time) is needed in order to compute an integration constant.

Thus the final answer is: