Saturday, 18 January 2020

impedance - Resonance frequency of an RLC circuit


schematic


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+vovZC1+voviR2=0vZL+vviZC2+vvoZC1=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)

which is in the form s3+n2s2+n0s3+d2s2+d1s+d0
with n2=(C1+C2)C1C2R2=1R2C
n0=1LC1C2R2
d2=(R2+R3)(C1+C2)C1C2R2R3=1RC
d1=1LC2
d0=R2+R3LC1C2R2R3=1LC1C2R
where I introduced the parallel resistance and serial capacitances 1R=1R2+1R31C=1C1+1C2


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

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...