Circuit Theory/TF Examples/Example14

From Wikibooks, open books for an open world
Jump to navigation Jump to search
Finding io using transfer functions

Find a partical solution to one of the re-occurring examples in this book. Given VS, find io. This has to be split into two transfer functions:

Which is of the form:

The current divider is going to be:

Substituting into the transfer function:

Substituting and solving using this mupad code:

R1 :=1000;C1 :=.0001;C2 :=.0002;R3 := 2000;L1 := .001;L2 := .001;
f := (s*L2 + 1/(s*C2))/(R3 + s*L2 + 1/(s*C2))*1/(R1 + 1/(s*C1) + s*L1 + 1/(1/R3 + 1/(s*L2 + 1/(s*C2)))):
factor(f);

The differential equation for this would be:

Set the source Vs to zero and then find Io by adding together Second order techniques (Real roots, are underdamped. Equal roots are critically damped and imaginary roots are overdamped.

Solving for the zeros (setting denominator to zero):

solve(s^4 + 5000000.0*s^3 + 2.000015*10^12*s^2 + 3.5*10^13*s + 5.0*10^13 = 0, s)

So in this case the solution would be:

The next step would be to find four initial conditions of i0 (and final condition). Most texts don't attempt to solve this complex of a problem. The steady state particular solution was easily found long ago with phasors. Transfer functions help to find a general solution to any type of voltage source. And it helps find the homogeneous solution that describes a ramp up when the circuit is first turned on. What circuits do engineers design that is worth this effort? Filters. The fact that today most of this is done digitally just means that all this needs to be repeated in a digital context. (Simulation becomes reality!). So using math tools to solve these problems in preparation for understanding more advanced tools is reason for continuing this thread of content.

So on to filters (Bode Plots .. Fourier Analysis) where the constants disappear and we stay in the complex domain. We will need the poles for to analyze as a filter (setting numerator to zero):

solve(s*(1000.0*s^2 + 5000000000.0)=0,s)