simulate this circuit – Schematic created using CircuitLab
Is it safe to consider the resonance frequency of a second order RLC circuit to be alway equal to 1/sqrt(LC) or the transfer function has to be calculated?
When there are three active components such for example for the case of bridged-T RLC network as is shown in the figure, is the resonance frequency still 1/sqrt(LC)? If capacitances are different, would that mean that there are two resonance frequency?
Answer
KCL: ($v_o$ over your output, $v_i$ over voltage source and $v$ over the internal node:
voR3+vo−vZC1+vo−viR2=0vZL+v−viZC2+v−voZC1=0
can be solved to get rid of the internal node $v$, setting $Z_{C i} = \frac{1}{sC_i}$ and $Z_L = sL$:
vovi=LC1C2R2R3s3+L(C1+C2)R3s2+R3LC1C2R2R3s3+L(R2+R3)(C1+C2)s2+(R2R3C1)s+(R2+R3)
This is a third-order high-pass filter, so general second order LRC intuition does not apply. You have to plug in your values and show them on a Bode-plot in order to find oscillation problems.
Appendix
Maxima script:
sol : solve([v_o/R3+(v_o-v)*s*C1+(v_o-v_i)/R2=0,
v/(s*L)+(v-v_i)*s*C2 + (v-v_o)*s*C1 = 0], [v_i, v_o]) $
trf : ev(v_o / v_i, sol) $
res : rat(trf, s);
No comments:
Post a Comment