A low pass filter LC circuit is a second-order passive network that attenuates high-frequency signals at a steep -40dB/decade rolloff using a series inductor and a shunt capacitor. Unlike basic RC filters, an LC topology offers near-zero DC insertion loss and sharper frequency rejection, making it the definitive choice for PWM smoothing, audio crossovers, and power supply ripple filtering. The cutoff frequency is dictated by the formula fc = 1 / (2π√LC).

Topology Map and Element Behavior Matrix

The standard L-section low pass topology consists of four primary nodes:

  • IN: Signal source connection (driving the series inductor).
  • MID: The junction between the inductor and the capacitor.
  • OUT: Tied directly to the MID node; delivers the filtered signal to the load.
  • GND: Common ground shared by the source, the shunt capacitor, and the load.

Understanding how parasitic and intentional component changes affect the transfer function is critical before you solder anything. Below is the behavior matrix detailing exactly what shifts when you alter a single parameter in the network.

Element Change Behavior Matrix
Parameter Changed Effect on Cutoff Frequency (fc) Effect on Q-Factor / Peaking Effect on Passband Insertion Loss
Increase Inductance (L) Decreases Increases (more peaking) Increases (due to higher DCR)
Increase Capacitance (C) Decreases Decreases (flatter response) Unchanged (ideal) / Slight increase (ESR)
Increase Load Resistance (RL) Unchanged Increases significantly (resonance ring) Decreases (less voltage divider drop)
Increase Inductor DCR Unchanged Decreases (acts as natural damper) Increases (voltage drop across DCR)
Increase Capacitor ESR Unchanged Decreases (damps high-freq resonance) Unchanged at DC / Increases at high-freq

Why Choose an LC Filter Over an RC Alternative?

If you only need to roll off a little high-frequency noise, an RC filter is cheaper and easier. But when you are dealing with power rails or high-current PWM motor drives, the low pass filter LC circuit topology wins decisively. The core difference lies in energy storage versus energy dissipation.

LC vs. RC Low Pass Filter Comparison
Criteria Passive LC Filter (L-Series, C-Shunt) Passive RC Filter (R-Series, C-Shunt)
DC Insertion Loss Near zero (limited only by inductor DCR, typically < 1Ω) High (determined by voltage divider ratio of R and RL)
Rolloff Slope -40 dB/decade (Second-order) -20 dB/decade (First-order)
Power Dissipation Minimal (reactive components store and return energy) High (resistor burns excess voltage as heat)
Load Regulation Excellent for low-impedance loads; requires damping for high-Z Poor; cutoff frequency shifts drastically if load impedance changes
Bench Tip: Never use an RC filter to smooth a 12V, 5A PWM signal to a DC motor. The series resistor would need to be low enough to pass 5A without massive voltage sag, which means its resistance would be too low to form an effective filter with a reasonably sized capacitor. Use an LC filter instead.

Design Walkthrough: Sizing a 10 kHz PWM Smoothing Filter

Let’s design a practical filter to smooth a 10 kHz PWM signal from a microcontroller into a clean DC-equivalent analog voltage for a control loop. We will target a -3dB cutoff frequency of 10 kHz.

Step 1: Select the Capacitor (C)
We need a capacitor with low Equivalent Series Resistance (ESR) and stable capacitance over temperature. A 100 nF (0.1 µF) X7R ceramic capacitor is a standard, readily available choice. Avoid Y5V dielectrics, as their capacitance can drop by 50% under DC bias voltage.

Step 2: Calculate the Inductor (L)
Using the rearranged cutoff formula: L = 1 / ((2πfc)² × C)

  • fc = 10,000 Hz
  • C = 100 × 10-9 F
  • L = 1 / ((62,831.8)² × 10-7) = 1 / (3.947 × 109 × 10-7) = 1 / 394.7
  • L ≈ 2.53 mH

Step 3: Pick Real-World Components
The closest standard E12 inductor value is 2.7 mH (e.g., Bourns 78F-272K or Fastron 77A series). Recalculating with 2.7 mH and 100 nF yields an actual cutoff of 9.68 kHz, which is perfectly acceptable for a 10 kHz PWM fundamental.

Step 4: Address Q-Factor and Damping
An LC filter driven by a low-impedance source and terminated into a high-impedance load (like an op-amp buffer or oscilloscope probe at 1 MΩ) will exhibit severe resonant peaking at the cutoff frequency. The Q-factor is defined as Q = RL × √(C/L). If RL is 10 kΩ, Q is roughly 1.9, resulting in a +5dB peak right at 9.68 kHz before the rolloff begins.

To flatten this response, we add a parallel damping resistor across the capacitor. The critical damping resistance is Rd = √(L/C).
Rd = √(2.7 × 10-3 / 100 × 10-9) = √(27,000) ≈ 164 Ω.
Install a standard 150 Ω or 160 Ω 1/4W resistor in parallel with the 100 nF capacitor to kill the resonance ring. For deeper insights into filter damping networks, refer to the Analog Devices filter design guides.

Failure Mode Contrast: Open vs. Short Extremes

When troubleshooting a dead board, you need to know how the circuit behaves when a component catastrophically fails. Here is the failure-mode contrast for the L-section topology:

  • Inductor Opens: Complete signal loss. The OUT node floats to 0V (pulled down by the shunt capacitor and load). This is the most common failure mode for inductors subjected to current spikes exceeding their saturation or thermal limits.
  • Inductor Shorts: Rare in wirewound components unless the enamel melts and fuses the windings. If it shorts, the filter degrades into a first-order RC filter (using the inductor's parasitic wire resistance as the 'R'). High-frequency attenuation drops from -40dB/decade to -20dB/decade.
  • Capacitor Opens: The filter ceases to exist. The circuit becomes a simple series inductor. High frequencies pass through to the load unattenuated, though you may see high-frequency ringing due to the inductor interacting with the load's parasitic capacitance.
  • Capacitor Shorts: The OUT node is hard-tied to GND. The signal source will likely current-limit or burn out. The inductor will experience maximum DC current flow. If this is a power rail, expect the upstream fuse to blow or the voltage regulator to go into thermal shutdown immediately.

Step-by-Step Breadboard Verification Protocol

Do not trust simulation blindly; parasitic breadboard capacitance (typically 2-5 pF per contact strip) and inductor core losses alter the real-world Bode plot. Follow this numbered verification sequence to validate your 10 kHz design.

  1. Stage the Components: Insert the 2.7 mH radial inductor across the breadboard center trench. Place the 100 nF X7R capacitor and the 150 Ω damping resistor in parallel on the output side, tying their ground legs to the common ground rail.
  2. Connect the Source: Attach your function generator's BNC-to-alligator lead to the IN node. Set the generator to output a 2Vpp sine wave at 1 kHz with a 50 Ω source impedance. Do not use a square wave for initial Bode plotting.
  3. Probe the Output: Connect Channel 1 of your oscilloscope to the IN node (for reference triggering) and Channel 2 to the OUT node. Use 10X probes to minimize capacitive loading on the high-impedance output.
  4. Verify the Passband: At 1 kHz (well below the 9.68 kHz cutoff), the Channel 2 amplitude should match Channel 1 almost exactly (within 2-3% loss due to the inductor's DCR). If you see significant attenuation here, your inductor is likely saturating or you have a wiring fault.
  5. Find the -3dB Point: Slowly sweep the function generator frequency upward. Watch Channel 2. The -3dB point occurs when the output amplitude drops to 70.7% of the passband amplitude (e.g., from 2.0Vpp down to 1.41Vpp). Note the frequency; it should read between 9.0 kHz and 10.5 kHz.
  6. Check the Rolloff Slope: Continue sweeping to 100 kHz (one decade above cutoff). Because this is a second-order filter (-40dB/decade), the signal should be attenuated by roughly 99% (a factor of 100). If the signal is only attenuated by 90% (a factor of 10), your capacitor has high ESR or your breadboard parasitics are dominating the node.
Safety Caveat for Power Applications: If you adapt this LC topology for a 12V or 24V high-current DC-DC buck converter output, the inductor must be rated for the peak switch current plus a 20% margin to prevent core saturation. A saturated inductor drops to near-zero inductance, instantly destroying your filter action and potentially passing high-voltage spikes to your load.