The unit of electric capacitance is the farad (F), defined as the ability of a component to store one coulomb of electrical charge per one volt of applied potential. In practical bench and jobsite electronics, a single farad is a massive amount of storage, so we almost exclusively deal in microfarads (µF), nanofarads (nF), and picofarads (pF). Whether you are stabilizing a 3.3V rail on an ESP32 dev board or filtering 60Hz ripple on a linear bench power supply, understanding how to read, convert, and apply this unit is the difference between a stable circuit and a constantly resetting microcontroller.

The Farad and Its Sub-Multiples

Because base-unit farads are impractical for standard PCB design, the industry relies on standard metric prefixes. Misreading these prefixes on a schematic or a tiny ceramic package is one of the most common beginner mistakes. A 104 marking on a ceramic capacitor does not mean 104 farads; it means 10 followed by 4 zeros in picofarads (100,000 pF).

Unit NameSymbolValue in FaradsCommon Use Case
FaradF1Supercapacitors, memory backup
MillifaradmF10^-3 (0.001)Rarely used; often confused with µF on old schematics
MicrofaradµF or uF10^-6 (0.000001)Bulk filtering, decoupling, motor start
NanofaradnF10^-9Snubbers, mid-range audio filtering
PicofaradpF10^-12RF tuning, high-speed digital bypass, oscillators
Golden Conversion Rule: 1 µF = 1,000 nF = 1,000,000 pF. If your BOM calls for 0.1µF, you can safely sub in a 100nF cap.

What Capacitance Changes in a Real Circuit

Capacitance changes the time-domain response of voltage. While a resistor resists the flow of current, and an inductor resists changes in current, a capacitor resists changes in voltage.

Think of a capacitor like a water tank with a flexible rubber membrane down the middle. The membrane stretches to store pressure (voltage) and pushes back to maintain flow (current) when the supply dips, but it doesn't let the actual water molecules (DC current) pass through. When a microcontroller suddenly draws a spike of current, the local voltage rail tries to sag. The capacitor's stored charge discharges instantly to fill that voltage void, holding the rail steady.

Common Confusions to Avoid

  • Capacitance vs. Battery Capacity: People frequently confuse Farads (electric field energy storage) with Amp-hours (chemical energy storage). A 1 Farad supercapacitor at 3.3V holds roughly 0.0015 mAh of usable energy—a fraction of a standard CR2032 coin cell.
  • Capacitance vs. Inductance: Inductors (Henries) fight changes in current by storing energy in a magnetic field. Capacitors (Farads) fight changes in voltage by storing energy in an electric field.

Worked Example: Sizing a Brownout Ride-Through Capacitor

Let's calculate the exact unit of electric capacitance needed to keep a circuit alive during a brief power interruption. Suppose you have a 5V sensor node that draws a peak current of 100mA (0.1A) during a wireless transmission burst. The transmission takes 2 milliseconds (0.002s). Your voltage regulator drops out if the input rail falls below 4.5V. You need a bulk capacitor to bridge the gap from 5.0V down to 4.5V.

We use the constant current discharge formula:

C = (I × Δt) / ΔV

  • I (Current) = 0.1 A
  • Δt (Time) = 0.002 s
  • ΔV (Allowable Voltage Drop) = 5.0V - 4.5V = 0.5 V

C = (0.1 × 0.002) / 0.5
C = 0.0002 / 0.5 = 0.0004 Farads

Converting to microfarads: 0.0004 F × 1,000,000 = 400 µF.
Since 400µF is not a standard E12/E24 value, you would round up to the next standard size: 470 µF. For a 5V rail, you must select a capacitor with a voltage rating of at least 6.3V or 10V to provide a safety margin.

Where You Meet This in Practice

You will encounter different orders of magnitude of the farad depending on the specific job the capacitor is doing on your PCB or in your panel:

  • High-Frequency Decoupling (100nF / 0.1µF): Placed as close to the VCC/GND pins of an IC as possible. These shunt high-frequency switching noise to ground. According to SparkFun's capacitor guide, almost every digital IC requires this exact value.
  • Bulk Energy Storage (10µF to 1000µF): Used at power supply inputs to smooth out low-frequency ripple and provide ride-through current for sudden load spikes.
  • Timing and Oscillators (10pF to 100pF): Used in parallel with quartz crystals (like a 32.768kHz RTC crystal) to provide the exact load capacitance required for accurate frequency oscillation.
  • AC Motor Run/Start (5µF to 100µF at 370VAC+): Found in HVAC systems to shift the phase angle of the start winding, creating the rotating magnetic field needed to spin single-phase induction motors.

Decision Tree: Picking the Right Dielectric and Package

Selecting the right capacitance value is only half the battle; choosing the right dielectric material dictates whether that value holds up under real-world conditions. Use this decision path to select your component.

If your application is...Then choose this dielectric...Why?Concrete Part Pick
High-frequency digital bypass (0.1µF / 100nF) MLCC (X7R or C0G/NP0) Extremely low ESL/ESR; responds to nanosecond transients. Murata GRM155R71C104KA88D (100nF, 16V, 0402 X7R)
Bulk hold-up where board space is tight (10µF - 100µF) Tantalum or Polymer Aluminum High capacitance density; stable DC bias characteristics. KEMET T491D476K016AT (47µF, 16V, D-Size Tantalum)
High-precision analog filtering or audio C0G/NP0 Ceramic or Film Zero piezoelectric effect; capacitance does not drift with temperature or voltage. Vishay VJ0805A102JXACW1BC (1nF, 50V, 0805 C0G)
Mains AC snubbing or motor run Metallized Polypropylene Film Self-healing properties; rated for continuous AC voltage stress without dielectric breakdown. Genteq 97F9002 (10µF, 370VAC, Round Film)
Pro-Tip: The DC Bias Trap. If you specify a 10µF X5R ceramic capacitor in an 0805 package for a 5V rail, do not assume you actually have 10µF. Due to the DC bias effect inherent in high-K dielectrics, that capacitor might lose 50% to 70% of its rated capacitance at 5V. Always check the manufacturer's DC bias curve (available on All About Circuits and distributor datasheets) and either step up to a 10V/16V rating or use a larger 1206 package.

FAQ: Quick Answers on Capacitor Sizing

Can I substitute a capacitor with a higher voltage rating?

Yes. A 100nF 50V capacitor is a perfectly safe substitute for a 100nF 16V capacitor. The voltage rating is a breakdown limit, not an operating requirement. The only penalty is usually a larger physical footprint and slightly higher cost.

Can I substitute a capacitor with a higher capacitance value?

It depends on the circuit function. For bulk power filtering, going from 470µF to 1000µF is usually fine and will reduce ripple. However, for switching regulator output capacitors or timing oscillators, increasing the value can cause regulator instability (phase margin collapse) or shift your oscillator frequency out of spec.

Why do schematics sometimes use 'uF' instead of 'µF'?

The micro symbol (µ) is notoriously difficult to render in older CAD software and legacy text editors. 'uF' is the universally accepted ASCII fallback. 10uF and 10µF are identical.

What is the default pick if I just need a standard bypass cap?

If you are building a generic digital prototype and need a bypass capacitor for an IC power pin, the default, unassailable choice is a 100nF (0.1µF) X7R MLCC in an 0805 or 0603 package, rated for at least double your rail voltage. Keep a strip of them on your bench at all times.