Capacitor Dielectrics and Selection Criteria
Choosing the right capacitor goes far beyond just matching the microfarad (μF) value and voltage rating. The dielectric material inside the capacitor dictates its equivalent series resistance (ESR), temperature stability, and physical size. Below is a data-dense comparison of the four most common capacitor families you will encounter on the bench.
| Type / Dielectric | Construction | Typical Tolerance | Tempco / Stability | ESR Range | Typical Use Case |
|---|---|---|---|---|---|
| Ceramic (C0G/NP0) | Class I ceramic multilayer | ±5% | 0 ±30 ppm/°C (Ultra-stable) | <10 mΩ | Oscillators, RF filters, precision timing |
| Ceramic (X7R/X5R) | Class II ceramic multilayer | +80% / -20% | ±15% over temp (Voltage dependent) | <20 mΩ | Decoupling, bypass, general-purpose filtering |
| Aluminum Electrolytic | Etched aluminum foil + liquid electrolyte | ±20% | High drift, dries out over time | 50 mΩ - 1 Ω | Bulk energy storage, low-freq power filtering |
| Solid Tantalum | Tantalum pellet + manganese dioxide/polymer | ±10% to 20% | Stable bias, moderate temp drift | 50 mΩ - 500 mΩ | Compact bulk decoupling, medical/aerospace |
| Film (Polypropylene) | Metallized plastic film, wound or stacked | ±1% to 5% | ±200 ppm/°C (Very stable) | <5 mΩ | Audio crossovers, high-voltage snubbers, EMI |
Which Type for Which Job?
For precision timing and oscillators: Always use C0G/NP0 ceramics or Film. Class II ceramics (X7R) exhibit piezoelectric effects (they act as microphones, picking up vibration) and severe capacitance loss under DC bias, which will shift your RC time constant unpredictably.
For power supply decoupling: X7R/X5R MLCCs (Multilayer Ceramic Chip Capacitors) are the undisputed kings due to their ultra-low ESR and high-frequency response. Place them as close to the IC VCC pin as possible.
For bulk energy storage (e.g., motor drivers): Aluminum electrolytics provide the highest capacitance-per-dollar ratio. However, their high ESR makes them useless for high-frequency noise; you must pair them with a parallel ceramic capacitor.
For audio signal paths: Film capacitors (like WIMA MKS or Cornell Dubilier DPP series) offer the lowest dielectric absorption and distortion. Avoid Class II ceramics in audio coupling, as their voltage coefficient introduces harsh harmonic distortion.
Decoding Physical Markings and EIA Codes
Reading capacitor markings is a notorious stumbling block, especially with surface-mount and small radial components. Manufacturers use standardized EIA (Electronic Industries Alliance) codes to cram data into tiny spaces.
The 3-Digit Ceramic Code
Through-hole and larger SMD ceramics use a three-digit code representing picofarads (pF) in scientific notation. The first two digits are the significant figures, and the third digit is the multiplier (number of zeros).
- 104: 10 × 104 pF = 100,000 pF = 100 nF = 0.1 μF. (The most common decoupling cap in existence).
- 473: 47 × 103 pF = 47,000 pF = 47 nF.
- 221: 22 × 101 pF = 220 pF.
Tolerance and Voltage Suffixes
A letter following the numeric code indicates tolerance. J = ±5%, K = ±10%, M = ±20%. If you see 104K, it is a 0.1 μF cap with a 10% tolerance.
Small SMD ceramics often include an EIAJ voltage code preceding the value. Common codes include:
- 0J: 6.3V
- 1A: 10V
- 1C: 16V
- 1E: 25V
- 1H: 50V
Therefore, an SMD cap marked 1H104K is a 50V, 0.1μF, ±10% ceramic capacitor.
Electrolytic Polarity Stripe
On through-hole aluminum electrolytics, the painted stripe with minus signs (- - -) indicates the negative (cathode) lead. On SMD aluminum electrolytics, the black painted half-moon on the plastic base also denotes the negative side. Reversing polarity on an electrolytic capacitor causes internal gas generation, leading to a violent venting or explosion.
Designing and Tuning RC Circuits
The behavior of an RC circuit is governed by the time constant, τ (tau), measured in seconds. When τ = R × C, the capacitor charges to roughly 63.2% of the supply voltage in one time constant, and reaches 99.3% in five time constants (5τ).
For AC signals and filtering, we care about the cutoff frequency (fc), the point where the signal power drops by half (-3dB). The formula is:
fc = 1 / (2π × R × C)
Practical Example: PWM to Analog DAC Filter
Suppose you are using an ESP32 to generate a 5 kHz PWM signal, and you want to filter it into a smooth DC voltage to drive an analog control pin. You need a low-pass RC filter. To effectively eliminate the 5 kHz carrier, your cutoff frequency should be at least a decade lower (500 Hz or less). Let's target 50 Hz for ultra-smooth DC.
- Choose a standard capacitor value first, as capacitor options are fewer than resistor options. Let's pick C = 10 μF (X7R ceramic).
- Rearrange the formula to solve for R: R = 1 / (2π × fc × C).
- R = 1 / (6.283 × 50 × 0.000010) = 3,183 Ω.
- Select the closest standard E24 resistor value: 3.3 kΩ.
Bench Note: A single-pole RC filter rolls off at -20dB/decade. If 5 kHz ripple is still visible on your oscilloscope, cascade a second identical RC stage (making sure to use a buffer op-amp between them to prevent impedance loading, or simply increase R2 and decrease C2 to maintain the same fc without loading the first stage).
Failure Modes, Visual Symptoms, and Safe Substitution
Capacitors are the most common point of failure in aging electronics. Recognizing how they fail—and how to safely replace them—saves hours of debugging.
Large film capacitors in motor snubbers or power supplies can retain lethal charges for days. Always discharge them with a high-wattage bleeder resistor (e.g., 10kΩ 5W) before touching the terminals. Furthermore, solid tantalum capacitors fail as a dead short and can undergo thermal runaway, catching fire and emitting toxic smoke if subjected to reverse voltage or excessive surge current.
Visual Symptoms of Failure
| Capacitor Type | Visual Symptom | Root Cause | Electrical Result |
|---|---|---|---|
| Aluminum Electrolytic | Bulging top vent, brown crust on leads, or rubber bung pushed out. | Electrolyte boiling due to excessive ripple current or ambient heat. | Massive capacitance drop, ESR spikes to open-circuit. |
| MLCC (Ceramic SMD) | Hairline crack through the body, or completely shattered. | PCB flexure/bending during assembly or mechanical shock. | Dead short circuit (crack bridges internal electrodes). |
| Solid Tantalum | Black charred mark on the PCB, melted epoxy, or a literal hole burned through the component. | Reverse polarity, voltage spike exceeding rating, or high inrush current. | Dead short, often taking out the upstream power supply or PCB trace. |
| Film Capacitor | Swollen plastic casing, cracked potting compound, or bulging ends. | Overvoltage transients causing internal partial discharges (corona). | Capacitance drops, dissipation factor (tan δ) increases. |
How to Substitute Safely When the Exact Part is Missing
When your component bin lacks the exact BOM part, follow these substitution rules to avoid creating a latent defect:
- Voltage Rating: You can always substitute a higher voltage rating (e.g., using a 50V cap in a 16V circuit). Never substitute a lower voltage rating. The only penalty for higher voltage is increased physical size and sometimes higher ESR.
- Capacitance Value: For decoupling, going up in value (e.g., 0.22μF instead of 0.1μF) is generally safe. For RC timing circuits or active filters, you must match the exact value, or your cutoff frequency and time constants will shift, breaking the circuit logic.
- Dielectric Type: Never substitute a Class II ceramic (X7R) for a Class I (C0G) in an oscillator or precision filter. The X7R's microphonics and voltage coefficient will cause frequency drift. Conversely, substituting C0G for X7R in power decoupling is fine, provided you can fit the physically massive C0G part on the board.
- The DC Bias Trap: This is the most common substitution mistake. According to Murata's MLCC specifications, high-capacitance Class II ceramics suffer severe DC bias derating. A "10μF, 10V" X5R 0805 capacitor might only provide 4μF of actual capacitance when 5V DC is applied across it. If you are replacing an aging 10μF tantalum with a 10μF ceramic, you must select a ceramic rated for a much higher voltage (e.g., 25V or 50V) or use a larger physical case size (1206 or 1210) to achieve the true 10μF at your operating voltage.
- ESR Requirements: In switching power supplies and LDO (Low Dropout) regulator output stages, the control loop compensation often relies on a specific ESR. Substituting a ultra-low ESR ceramic for an aluminum electrolytic on an older LDO output can cause the regulator to oscillate. If you must use ceramic, add a small series resistor (e.g., 0.5Ω) to mimic the ESR of the original electrolytic.
Mastering capacitors and RC circuits requires moving beyond ideal schematic symbols. By understanding the physical dielectric, decoding the manufacturer markings, and respecting the real-world limitations of DC bias and ESR, you can design filters and timing networks that perform on the bench exactly as they do in your SPICE simulations.






