Loading header...

Capacitance: Charge, Voltage, and Energy Storage

Capacitance describes how much charge a structure can store for a given voltage difference. In practical electronics, that structure is usually a capacitor: two conductors separated by an insulator called a dielectric.

Capacitors appear simple, but they quietly determine whether supplies stay stable, ADC readings stay clean, and startup timing behaves as intended.

Learning Objectives

By the end of this lesson, you should be able to:

  • use the equation Q = CV correctly with units;
  • calculate energy stored in a capacitor;
  • explain why capacitor voltage cannot change instantaneously;
  • choose appropriate capacitance scales for decoupling, timing, and filtering applications.

The Core Relationship

Capacitance is defined by:

$$
C = \frac{Q}{V}
$$

Rearranged into the form engineers often use:

$$
Q = CV
$$

Where:

  • C is capacitance in farads;
  • Q is charge in coulombs;
  • V is voltage in volts.

If a 10 uF capacitor holds 5 V, then the stored charge is:

$$
Q = CV
$$

$$
Q = 10\times10^{-6}\times 5
$$

$$
Q = 50\ \mu\text{C}
$$

Physical Intuition

Think in field terms:

  • one plate accumulates positive charge;
  • the other accumulates equal negative charge;
  • the electric field in the dielectric stores energy.

Greater plate area, smaller plate spacing, and dielectric materials with higher permittivity all increase capacitance.

flowchart LR A["Larger plate area"] --> C["Higher capacitance"] B["Smaller plate spacing"] --> C D["Higher-permittivity dielectric"] --> C

Common Units

The farad is very large for most electronics work, so practical values are usually:

Unit Symbol Value
millifarad mF 10^-3 F
microfarad uF 10^-6 F
nanofarad nF 10^-9 F
picofarad pF 10^-12 F

Typical use ranges:

  • 10 pF to 100 pF: crystal load networks, RF tuning, small parasitics;
  • 1 nF to 100 nF: decoupling and filtering;
  • 1 uF to 1000 uF: bulk storage, coupling, timing, power smoothing.

Energy Stored in a Capacitor

The energy stored in a capacitor is:

$$
E = \frac{1}{2}CV^2
$$

This equation matters because voltage affects stored energy quadratically.

Worked example

For 100 uF charged to 12 V:

$$
E = \frac{1}{2}(100\times10^{-6})(12^2)
$$

$$
E = 7.2\ \text{mJ}
$$

That may not sound large, but a capacitor can release that energy very quickly, which is why even low-voltage capacitors can create sparks or damage components during accidental discharge.

Capacitor Current and Voltage Change

The dynamic equation for a capacitor is:

$$
i_C = C\frac{dv_C}{dt}
$$

This tells you three useful things immediately:

  • no voltage change means no capacitor current in steady-state DC;
  • faster voltage change requires more current;
  • a larger capacitor needs more current for the same voltage ramp rate.

That is why a capacitor acts like:

  • a temporary short at the instant of a DC step;
  • an open circuit after DC steady state is reached;
  • a lower impedance path as frequency increases.

Capacitors in Practical Electronics

Decoupling

A microcontroller can demand short bursts of current in nanoseconds. Long PCB traces and wiring cannot respond ideally. A nearby capacitor supplies that fast transient current locally.

Bulk energy storage

Electrolytic or polymer capacitors absorb slower load changes and reduce ripple on power rails.

Timing

In an RC network, capacitance sets how long a node takes to charge or discharge.

Filtering and coupling

Capacitors block DC, pass changing signals, and work with resistors or inductors to shape frequency response.

Real Capacitors Are Not Ideal

Real components include:

  • equivalent series resistance (ESR);
  • equivalent series inductance (ESL);
  • leakage current;
  • voltage coefficient in some ceramic dielectrics;
  • tolerance and temperature dependence.

That is why capacitor type matters:

Type Strengths Watch-outs
Ceramic low ESR, great for decoupling capacitance can fall with DC bias
Electrolytic high capacitance, low cost polarity sensitive, higher ESR
Tantalum stable capacitance in compact size can fail violently if overstressed
Film accurate, low loss physically larger

Safety Guidance

  • Discharge large capacitors with a suitable resistor, not a screwdriver.
  • Observe polarity on electrolytic and tantalum capacitors.
  • Respect voltage ratings with margin.
  • Use inrush limiting where large capacitors connect directly to a supply.

Common Mistakes

  • Confusing charge with energy.
  • Forgetting that doubling voltage quadruples stored energy.
  • Assuming a capacitor is an ideal open circuit at all times in DC systems.
  • Placing bulk capacitance far from the load that needs fast current.
  • Ignoring DC-bias derating on ceramic capacitors.

Summary

Capacitance links charge and voltage through Q = CV, and capacitors store energy according to E = 1/2 CV^2. They resist sudden voltage change because changing their voltage requires current. In real hardware, capacitors stabilize supplies, shape timing, filter signals, and store short-term energy, but only when their non-ideal behavior and safety limits are respected.

Further Reading