The capacitor ESR tester measures the Equivalent Series Resistance of electrolytic capacitors — the hidden parameter that determines whether a capacitor is healthy or has silently failed. High ESR is the leading cause of power supply failures, motherboard issues, and LED driver problems. This guide covers ESR theory, DIY tester builds, and how to diagnose failed capacitors without removing them from the circuit.
What Is ESR and Why It Matters
Every real capacitor has a small series resistance (ESR) in addition to its capacitance. This resistance comes from the electrolyte conductivity, foil and lead resistance, and contact resistance between layers. In an ideal capacitor, ESR would be zero. In practice:
- New aluminium electrolytic: 0.01-2 ohms depending on capacitance and voltage rating
- Aged/failed electrolytic: 5-100+ ohms
- Ceramic capacitor: 0.001-0.1 ohms (excellent)
- Film capacitor: 0.005-0.5 ohms (very good)
Why ESR matters in power circuits: A high-ESR capacitor cannot smooth ripple effectively. In a switching power supply, high ripple causes overheating, noise, and component stress. A 100uF capacitor with 10 ohm ESR performs worse than a 10uF capacitor with 0.1 ohm ESR for ripple filtering.
ESR Measurement Methods
ESR cannot be measured with a standard multimeter. The multimeter’s resistance mode applies DC, which charges the capacitor rather than measuring resistance. ESR must be measured with an AC signal at a frequency where the capacitive reactance is negligible (typically 100kHz).
At 100kHz for a 100uF capacitor:
Capacitive reactance: Xc = 1/(2*pi*f*C) = 1/(2*3.14159*100000*0.0001) = 0.016 ohms
ESR of a good cap: 0.1-0.5 ohms
ESR of a bad cap: 5-50 ohms
Since Xc (0.016) << ESR (0.1+), the impedance at 100kHz is dominated by ESR.
This is why ESR testers use high-frequency AC signals.
Building an ESR Tester
A simple ESR tester can be built using a 555 timer oscillator and an analog meter:
555 Timer ESR Tester:
555 in astable mode → 100kHz square wave
Output → 100 ohm resistor → Test probes
Voltage across capacitor under test → Rectifier → Display
Simplified: At 100kHz, the voltage across the cap is proportional
to its ESR (capacitive reactance is negligible).
Arduino-based ESR Tester:
1. Generate 100kHz PWM on a pin
2. Apply through 100 ohm series resistor to capacitor
3. Read AC voltage across capacitor with ADC
4. Calculate: ESR = Vcap / I_test
5. Display on OLED
For better accuracy, use the AD9833 DDS module for
precise frequency generation and sample with the
Arduino's ADC synchronised to the test signal.
Interpreting ESR Values
| Capacitor Type | Good ESR | Marginal ESR | Failed ESR |
|---|---|---|---|
| 1000uF 16V | <0.1 ohm | 0.1-1 ohm | >1 ohm |
| 100uF 25V | <0.5 ohm | 0.5-3 ohm | >3 ohm |
| 10uF 50V | <2 ohm | 2-10 ohm | >10 ohm |
| 1uF 50V | <5 ohm | 5-20 ohm | >20 ohm |
Rule of thumb: Higher capacitance = lower expected ESR. Higher voltage rating = slightly higher expected ESR (thicker dielectric). Low-ESR capacitors (marked “Low Z” or “Low ESR”) have ESR 50-70% below standard types.
Identifying Bad Capacitors
Signs of high-ESR capacitors without an ESR tester:
- Bulging top: The vent scoring on top of electrolytic caps expands when internal pressure builds from electrolyte decomposition
- Electrolyte leakage: Brown or amber residue around the base or on the PCB
- Increased ripple: Measure AC ripple on the output of a power supply. Excessive ripple (>100mV on a 5V rail) suggests failed filter capacitors
- Overheating: Touch test — a capacitor that is warm to the touch in a circuit that should not heat it has high ESR
- Age: Electrolytic capacitors in Indian conditions (high ambient temperature) have a typical lifespan of 5-10 years. Budget electronics use cheap caps that may last only 2-3 years.
Shop All Batteries & Power Modules →
Frequently Asked Questions
Can I test ESR without removing the capacitor from the circuit?
Yes, in many cases. In-circuit ESR testing works because at 100kHz, most circuit impedances (inductors, other capacitors in parallel) are much higher or lower than the ESR being measured. However, low-resistance parallel paths (like other capacitors directly across the test points) can give falsely low readings. Disconnect power before testing.
Why do Indian power supplies fail so often?
Many Indian-market chargers and power supplies use cheap electrolytic capacitors rated for 85degC in environments that routinely reach 40-45degC ambient. The capacitor lifespan halves for every 10degC above its rating. At 45degC ambient (with 60-70degC internal temperatures), an 85degC cap may last only 1-2 years. Look for 105degC-rated capacitors in quality power supplies.
What is the difference between ESR and impedance?
ESR is the resistive component of impedance. Total impedance includes ESR plus capacitive reactance: Z = sqrt(ESR^2 + Xc^2). At high frequencies (where ESR testers operate), Xc approaches zero, so Z approximately equals ESR.
Add comment