Circuit Theory/Active Filters/Example90

From testwiki
Revision as of 20:52, 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
Active filter ... find transfer function

Start with writing a node equation:

i1i2i3i0=0
VinVnodeR1VnodesC1VnodeVoR3VnodeR2=0

But the last expression for io could have also been written using C2. And we need to eliminate Vnode. So our second equation is associated with the feedback resistor:

VnodeR2(0VosC2)=0

Now these two equations can be solved for Vo/Vin:

solve([(vin-vnode)/r1 - vnode*s*c1 - (vnode-vout)/r3 - vnode/r2, vnode/r2 - (0-vout*s*c2)],[vout,vin])

The transfer function is going to be the ratio of Vout/Vin so:

vout := -vnode/(c2*r2*s)
vin := (vnode*(r1 + c2*r1*r2*s + c2*r1*r3*s + c2*r2*r3*s + c1*c2*r1*r2*r3*s^2))/(c2*r2*r3*s);
vout/vin
-r3/(r1 + c2*r1*r2*s + c2*r1*r3*s + c2*r2*r3*s + c1*c2*r1*r2*r3*s^2)

Yields this:

R3R1+(C2R1R2+C2R1R3+C2R2R3)s+C1C2R1R2R3s2

Which looks like a low pass filter (inverted because of the op amp). Template:BookCat