The Core Decision: Series vs. Parallel RLC Topologies

Before calculating a single value, you must choose your topology. The resonant frequency for RLC circuit designs behaves fundamentally differently depending on whether the components are arranged in series or parallel. Here is the decision framework to lock in your topology:

Application Requirement Topology Choice Why This Wins
Pass a narrow band of frequencies to a low-impedance load (e.g., audio crossovers, IF filters) Series RLC Impedance drops to just the resistance (R) at resonance, allowing maximum current flow to the load.
Reject a specific frequency or create a high-impedance tank (e.g., oscillator tanks, notch filters) Parallel RLC Impedance spikes to maximum at resonance, blocking current flow at the target frequency while passing others.
Driving a high-impedance gate (e.g., MOSFET gate driver tuning) Parallel RLC Voltage magnification (Q-factor) occurs across the parallel tank, boosting the drive signal without drawing massive source current.
Default Recommendation: For 90% of bench-level signal filtering, sensor conditioning, and software-defined radio (SDR) intermediate frequency (IF) stages, the Series RLC bandpass is the correct starting point. The rest of this guide assumes a Series RLC topology.

Topology Mapping and the Resonant Frequency Formula

In a series RLC bandpass configuration, the components form a single conductive path from the source to ground. The output voltage is measured across the resistor.

Node Labels and Signal Path

  • Vin: AC source (e.g., function generator or antenna).
  • Node 1: Junction between Vin and the Capacitor (C).
  • Node 2: Junction between C and the Inductor (L).
  • Node 3: Junction between L and the Resistor (R). This is your Vout high-side.
  • GND: The return path from R back to the source. This is your Vout low-side.

At resonance, the inductive reactance ($X_L = 2\pi f L$) and capacitive reactance ($X_C = \frac{1}{2\pi f C}$) are equal in magnitude but exactly 180 degrees out of phase. They cancel each other out. The only opposition to current flow left in the circuit is the resistor (R) and the parasitic equivalent series resistance (ESR) of the inductor and capacitor.

The formula to calculate the resonant frequency for RLC circuit topologies is:

$f_r = \frac{1}{2\pi\sqrt{LC}}$

Notice that R does not appear in this equation. The resistor dictates the bandwidth and Q-factor (sharpness of the peak), but it does not shift the center frequency. For a deep dive into the derivation of this phase-cancellation effect, refer to the All About Circuits guide on series resonance.

Behavior Matrix: What Changes When You Tune R, L, or C?

When debugging or tuning a prototype, you need to know exactly what turning a potentiometer or swapping a capacitor will do to your frequency response.

Component Changed Effect on Resonant Freq ($f_r$) Effect on Q-Factor (Sharpness) Effect on Bandwidth (BW)
Increase R No change Decreases (broader peak) Increases (wider passband)
Decrease R No change Increases (sharper peak) Decreases (narrower passband)
Increase L Decreases Increases (if R is constant) Decreases
Decrease L Increases Decreases (if R is constant) Increases
Increase C Decreases Decreases (if R is constant) Increases
Decrease C Increases Increases (if R is constant) Decreases

Design Walkthrough: A 100 kHz Series RLC Bandpass Filter

Let’s design a filter centered exactly at 100 kHz with a Q-factor of roughly 10. This is a common requirement for ultrasonic transceiver conditioning or intermediate-frequency (IF) filtering in AM radio builds.

Step 1: Pick the Capacitor (C)

Always start with the capacitor. Inductors are physically larger, more expensive, and suffer from worse parasitics. Pick a standard, stable dielectric like C0G/NP0 ceramic. Let’s choose C = 10 nF (e.g., KEMET C315C103K1G5TA, ~$0.15 on Mouser).

Step 2: Calculate the Inductor (L)

Rearranging the resonance formula to solve for L:

$L = \frac{1}{(2\pi f_r)^2 \times C}$

$L = \frac{1}{(2\pi \times 100,000)^2 \times 10 \times 10^{-9}} = 253.3 \mu\text{H}$

Standard off-the-shelf inductors don't usually come in 253 µH. Instead of ordering a custom part, series two standard shielded radial inductors: a 220 µH and a 33 µH (e.g., Bourns 78FR22K-RC and 78FR33K-RC). Total L = 253 µH.

Step 3: Calculate the Resistor (R) for Target Q

The Q-factor equation for a series RLC is $Q = \frac{1}{R}\sqrt{\frac{L}{C}}$. We want Q = 10.

$10 = \frac{1}{R}\sqrt{\frac{253 \times 10^{-6}}{10 \times 10^{-9}}}$

$10 = \frac{1}{R}\sqrt{25,300} = \frac{159}{R}$

$R = 15.9 \Omega$

Select a standard 1% tolerance 16 Ω resistor (e.g., Vishale MRS25 series). This yields a final bandwidth of $BW = \frac{f_r}{Q} = 10 \text{ kHz}$, passing signals cleanly from 95 kHz to 105 kHz.

Parasitic Warning: Always check the Self-Resonant Frequency (SRF) on the inductor datasheet. If your inductor's SRF is close to 100 kHz, its internal parasitic capacitance will create a parallel resonance that completely destroys your series bandpass response. The Bourns 78FR series has an SRF well above 1 MHz, making it safe for this 100 kHz design.

Failure Mode Contrast: What Breaks at the Extremes?

Understanding failure modes is critical when debugging a dead board. Here is what happens when a component fails open or short in both topologies.

Series RLC Extremes

  • Inductor Shorts: The circuit loses its high-frequency blocking mechanism. It degrades into a first-order RC high-pass filter. Resonance is destroyed, and high-frequency noise will flood your load.
  • Capacitor Shorts: The DC blocking capability is lost. The circuit becomes a first-order RL low-pass filter. Worse, DC current will now flow directly into your load, potentially burning out downstream op-amps or ADC pins.
  • Resistor Opens: Current ceases entirely. Vout drops to 0V. The circuit fails safe.

Parallel RLC Extremes (For Contrast)

  • Inductor Opens: The tank circuit breaks. The capacitor simply passes high frequencies to the load, acting as a crude high-pass filter.
  • Capacitor Opens: The inductor passes low frequencies (and DC), acting as a low-pass filter.
  • Both Short: A dead short across your AC source. This will blow your source fuse or trigger the current limit on your function generator immediately.

Breadboard Verification Protocol

Simulating an RLC circuit in LTspice is easy; measuring it on a breadboard is where parasitics ruin your day. Follow this exact sequence to verify your 100 kHz design.

  1. Minimize Lead Length: Push the 220 µH and 33 µH inductors directly adjacent to each other. Long jumper wires add stray inductance (roughly 1 nH per mm) and stray capacitance to the ground plane, which will skew a 100 kHz measurement.
  2. Use Proper Probing: Do not use long alligator clips for your oscilloscope probe ground. Use the probe’s spring-clip ground attachment directly at the resistor's ground leg (Node GND). Long ground leads form a loop antenna that will inject switching noise from nearby bench supplies into your measurement.
  3. Set the Source: Configure your function generator (e.g., Rigol DG1022Z) to output a 1 Vpp sine wave with a 0V DC offset. Set the output impedance to 50 Ω (High-Z mode will cause amplitude doubling errors if your scope is set to 1M Ω).
  4. Execute a Log Sweep: Sweep the frequency logarithmically from 10 kHz to 1 MHz. Do not just step linearly; a log sweep spends more time resolving the sharp peak around 100 kHz.
  5. Measure the -3dB Points: Find the peak voltage at exactly 100 kHz (it should be roughly 1Vpp if source impedance is negligible). Calculate 70.7% of that peak voltage. Note the frequencies where the signal drops to this level. The difference between these two frequencies is your real-world Bandwidth.

For further reading on practical filter implementation and component tolerances, the Electronics Tutorials series resonance guide provides excellent supplemental math on phase angles at the cutoff frequencies.

Final Recommendation and Default Component Picks

If you are building an RF front-end, an ultrasonic receiver, or an IF filter and need to establish a resonant frequency for RLC circuit bandpass filtering, default to the Series RLC topology with Vout taken across the resistor.

Your Default Shopping List for a 100 kHz / Q=10 Filter:

  • C1: 10 nF C0G/NP0 Ceramic Capacitor (50V, 5% tolerance)
  • L1: 220 µH Shielded Radial Inductor (e.g., Bourns 78FR22K-RC)
  • L2: 33 µH Shielded Radial Inductor (e.g., Bourns 78FR33K-RC)
  • R1: 16 Ω Metal Film Resistor (1/4W, 1% tolerance)

By starting with the capacitor to lock in a stable, low-parasitic baseline, and synthesizing the exact inductance via series combinations, you avoid the trap of relying on high-ESR, off-spec inductors that silently destroy your Q-factor. Build it tight, probe it short, and trust the math.