At the most fundamental physics level, capacitors store electrical energy in an electric field between two conductive plates separated by a dielectric. But if you are asking what do capacitors do in a circuit from a practical design perspective, the answer depends on their placement. In power delivery networks (PDNs) for microcontrollers and digital logic, their primary job is to act as a local, high-speed energy reservoir that shunts high-frequency switching noise to ground and supplies instantaneous transient current when the main power rail cannot react fast enough.

Forget the abstract textbook definitions. On the bench, a capacitor is your first line of defense against brownouts, erratic ADC readings, and electromagnetic interference (EMI). Below, we break down the exact topology, real-world component selection, and failure modes you need to design robust circuits in 2026.

The Decoupling Topology: Node Labels and Behavior

To understand capacitor behavior, we must look at the standard local decoupling topology used on every modern PCB. This configuration places the capacitor as close to the load as physically possible to minimize parasitic trace inductance.

  • Node A (Upstream VCC): The main power rail coming from a voltage regulator or power supply.
  • Node B (IC VDD Pin): The specific power input pin of the integrated circuit (the load).
  • Node C (Common GND): The ground reference plane.

The capacitor bridges Node B and Node C. When the IC switches internal logic gates, it demands a sudden burst of current. The trace inductance between Node A and Node B prevents the upstream supply from delivering this current instantly. The capacitor at Node B discharges its stored charge to bridge the gap, preventing the voltage at the IC pin from drooping.

Topology Behavior Matrix: What Changes When Elements Shift
Element ChangedDirectionCircuit Behavior Result
Capacitance (C)IncreasedLower impedance at low frequencies; holds up voltage during longer transient loads, but increases physical footprint and parasitic ESL.
ESR (Equivalent Series Resistance)DecreasedSharper self-resonant peak; better high-frequency noise shunting, but can cause ringing if the Q-factor gets too high without damping.
ESL (Equivalent Series Inductance)IncreasedSelf-resonant frequency (SRF) drops; the capacitor becomes useless for high-speed digital noise (e.g., >50MHz) and acts like an inductor.
Distance to Node BIncreasedTrace inductance adds to ESL; ruins the high-frequency decoupling effect entirely, leading to localized VDD bounce.

Why Parallel Decoupling Beats Single-Cap Filtering

A common beginner mistake is placing a single, large-value capacitor (like a 10µF electrolytic) at Node B and calling it done. This fails in modern high-speed designs because of the Self-Resonant Frequency (SRF). Every real capacitor has parasitic inductance (ESL). At the SRF, the capacitive reactance and inductive reactance cancel out, yielding minimum impedance. Above the SRF, the component behaves as an inductor, rendering it useless for high-frequency noise.

By placing a 100nF ceramic capacitor in parallel with a 10µF bulk capacitor, you create a broadband low-impedance path. The 100nF ceramic has low ESL and a high SRF (often >100MHz), handling fast logic transients. The 10µF bulk cap handles slower, larger current demands (like a WiFi radio turning on). According to All About Circuits, this parallel approach ensures the PDN impedance remains below the target threshold across the entire frequency spectrum of the IC.

What Breaks at the Extremes: Failure Mode Contrast

Understanding how components fail dictates your topology choices. Ceramic and electrolytic capacitors fail in opposite, catastrophic ways:

Failure Mode 1: MLCC Short (The Mechanical Crack)
Multi-Layer Ceramic Capacitors (MLCCs) are brittle. If the PCB flexes during assembly or operation, the ceramic body cracks. This internal crack often bridges the interleaved plates, creating a dead short between Node B and Node C. Result: The upstream LDO goes into thermal shutdown, or traces vaporize if unfused.
Failure Mode 2: Electrolytic Open (The Dry-Out)
Aluminum electrolytic capacitors contain liquid electrolyte that slowly evaporates over time, especially near heat sources. As it dries, ESR skyrockets and capacitance plummets until it effectively becomes an open circuit. Result: The IC experiences severe VDD droop during load spikes, causing random microcontroller resets and corrupted flash memory writes.

Design Walkthrough: Picking Real Component Values

Let us design the decoupling network for an ESP32-S3 driving a WiFi transmission burst. The datasheet specifies transient current spikes up to 500mA lasting less than 1ms. We need to calculate the bulk capacitance required to prevent a brownout.

Using the fundamental capacitor equation rearranged for time: C = (I * Δt) / ΔV.
Assuming a maximum allowable voltage droop (ΔV) of 0.1V on a 3.3V rail, a 500mA spike (I), and a 1ms duration (Δt):
C = (0.5A * 0.001s) / 0.1V = 5µF.

However, we must account for DC Bias Derating. As documented in SparkFun's capacitor tutorial, high-k dielectrics like X5R and X7R lose significant capacitance when a DC voltage is applied. A 10µF 0603 X5R capacitor rated for 6.3V will often drop to just 2µF of effective capacitance at 5V DC bias. Therefore, we must over-specify the nominal value.

Decision Tree: Selecting the Right Dielectric and Package
Condition / ConstraintDecision PathConcrete Pick
Need high-frequency shunting (>50MHz), minimal microphonicsRequire C0G/NP0 dielectric, but limited to low capacitance values1nF - 10nF C0G (Not ideal for bulk power)
Standard logic decoupling, 3.3V or 5V rail, fast transientsX7R dielectric offers stable tempco and low ESL in small packages100nF X7R, 0603 package
Bulk energy storage for >100mA spikes, space-constrained PCBX5R dielectric, but must over-size for DC bias derating at 3.3V10µF X5R, 0603 package (10V rated)
Bulk storage for high ripple current, audio filtering, >100µF neededCeramics become too large/expensive; switch to low-ESR polymer or electrolytic470µF Aluminum Polymer SMD

Breadboard Testing: Step-by-Step Verification

Before committing a parallel decoupling topology to a custom PCB, validate the transient response on a breadboard. Breadboards introduce massive parasitic inductance (often >100nH per row), so this test verifies the bulk energy math, not the high-frequency ESL performance.

  1. Prepare the Load: Wire your ESP32 or microcontroller to a 3.3V bench power supply. Force the IC into a high-draw state (e.g., continuous WiFi TX or toggling a heavy GPIO load via a MOSFET).
  2. Baseline Measurement: Connect an oscilloscope probe to the IC VDD pin. Critical: Use the spring-clip ground attachment, not the long alligator ground lead, to avoid picking up switching noise loops. Trigger on a falling edge with AC+DC coupling. Record the baseline voltage droop without local decoupling.
  3. Add the Bulk Cap: Insert a 10µF electrolytic or radial ceramic directly across the breadboard power rails at the IC. Run the test again. Measure the new ΔV droop.
  4. Add the High-Freq Cap: Insert a 100nF ceramic capacitor as close to the IC pins as the breadboard allows. Observe the high-frequency ringing on the scope. If you see severe oscillation after the initial droop, your breadboard parasitics are resonating with the low-ESR ceramic; this is normal for breadboards but will disappear on a proper PCB ground plane.
  5. Verify the Math: Confirm that the measured ΔV with the 10µF cap matches your calculated droop from the C = IΔt/ΔV formula within a 20% margin (accounting for breadboard contact resistance).

The Final Verdict: Your Default BOM Pick

When designing power delivery for 3.3V or 5V digital logic, microcontrollers, and sensors, you do not need to recalculate the universe for every chip. The physics of modern CMOS switching and the economics of surface-mount manufacturing point to a single, optimal default.

The Default Recommendation: For every active IC on your board, place a 100nF X7R ceramic capacitor (KEMET C0603C104K5RACTU or equivalent) within 1.5mm of the VDD and GND pins. At the power entry point of the PCB, or at the output of your main LDO, place a 10µF X5R ceramic capacitor (Murata GRM188R61A106KE69D, rated at 10V to survive DC bias derating).

This parallel topology guarantees sub-100mV transient droop for 95% of hobbyist and commercial IoT designs, eliminates high-frequency EMI radiation, and prevents the erratic ground-bounce resets that plague poorly decoupled prototypes. Stop guessing with single-cap layouts; standardizing this two-cap BOM pick will permanently eliminate power-integrity bugs from your design workflow.