Capacitance is the ability of a component or circuit to store electrical energy in an electric field, and the standard unit of electrical capacitance is the farad (F). Think of it like a municipal water tower: the capacitance dictates how much water (charge) the tower can hold for a given amount of pressure (voltage). In real circuits, altering this value changes timing constants, shifts filter cutoff frequencies, and determines how long a microcontroller can survive a power dip.
The Farad and Its Metric Sub-Units
One farad is defined as one coulomb of charge stored per one volt of potential difference. According to the NIST Reference on SI Units, the farad is named after Michael Faraday, but in practical electronics, a single farad is an enormous amount of storage. Because real-world circuits rarely need a full farad, we rely on metric prefixes to express the units of electrical capacitance in manageable numbers.
| Unit Name | Symbol | Multiplier | Decimal Form | Common Application |
|---|---|---|---|---|
| Millifarad | mF | 10^-3 | 0.001 F | Motor start circuits, large audio crossovers |
| Microfarad | µF (or uF) | 10^-6 | 0.000001 F | Power supply bulk smoothing, DC-DC converters |
| Nanofarad | nF | 10^-9 | 0.000000001 F | High-frequency decoupling, EMI filtering |
| Picofarad | pF | 10^-12 | 0.000000000001 F | RF tuning, crystal oscillator load matching |
Worked Numeric Example: ESP32 Brownout Ride-Through
To understand how these units scale in a real installation, let us calculate the exact capacitance needed to keep an ESP32-WROOM-32 running during a brief power rail dip. When the ESP32 transmits a Wi-Fi packet, it can draw a peak current of 150 mA. If your 3.3V power supply glitches for 50 milliseconds, the voltage will droop. We need to size a bulk capacitor to "ride through" this dip without the voltage falling below 3.0V (the brownout reset threshold).
We use the constant current discharge formula: C = (I × Δt) / ΔV
- I (Current): 150 mA = 0.15 A
- Δt (Time): 50 ms = 0.05 seconds
- ΔV (Voltage Drop): 3.3V (start) - 3.0V (minimum) = 0.3V
Plugging in the numbers:
C = (0.15 A × 0.05 s) / 0.3 V
C = 0.0075 / 0.3
C = 0.025 Farads
Converting this to standard units of electrical capacitance:
0.025 F × 1,000,000 = 25,000 µF.
This calculation proves why a standard 100 nF (0.1 µF) ceramic decoupling capacitor placed near the IC will not save you from a 50 ms power dip. You need a massive 33,000 µF electrolytic capacitor or a dedicated supercapacitor module to bridge that specific gap. This highlights how the physical size and cost of a capacitor scale directly with the unit prefix you require.
Where You Meet These Units in Practice
Different capacitor technologies dominate different unit ranges due to physical manufacturing limits. As noted in the SparkFun Capacitor Guide, the dielectric material dictates the maximum capacitance you can fit into a given volume.
Picofarads (pF) in RF and Timing
You will find pF values in high-frequency radio circuits and precise timing loops. For example, a standard 16 MHz ATmega328P crystal oscillator requires two 22 pF load capacitors to ground. Using a 22 nF capacitor here would completely stall the oscillator due to the excessive RC time constant.
Nanofarads (nF) in Decoupling
The 100 nF capacitor is the undisputed workhorse of digital logic. You will find one on almost every VCC pin of every IC on a PCB. On schematic diagrams and physical components, 100 nF is often written as 0.1 µF. On ceramic disc capacitors, it is stamped with the code "104" (meaning 10 × 10^4 pF, which equals 100,000 pF, or 100 nF).
Microfarads (µF) in Power Delivery
Electrolytic and tantalum capacitors dominate the µF range. A 12V to 5V DC-DC buck converter typically requires a 470 µF output capacitor to smooth the switching ripple. In AC mains installations, motor run capacitors are often rated in µF (e.g., a 45 µF / 370VAC cap for an HVAC compressor) to create the phase shift needed to start the motor.
Common Confusions: Capacitance vs. Battery Capacity
The most frequent mistake beginners make is confusing electrical capacitance (measured in Farads) with battery capacity (measured in Amp-hours or milliamp-hours). Both describe energy storage, but they behave entirely differently in a circuit.
A 3,000 mAh LiPo battery stores vastly more total energy than a 3,000 F supercapacitor rated at 2.7V. The battery maintains a relatively steady voltage (e.g., 3.7V) until it is nearly empty, delivering power steadily over hours. A capacitor, however, drops its voltage linearly the moment it starts discharging. A 3,000 F supercapacitor is used for rapid burst delivery—like capturing regenerative braking energy or providing a 10-second bridge for a server to safely write data to an SSD during a blackout—not for long-term runtime. According to All About Circuits, understanding this voltage-discharge curve is critical when selecting energy storage for off-grid or embedded systems.
Frequently Asked Questions
What are the standard units of electrical capacitance?
The base SI unit is the farad (F). However, because one farad is exceptionally large, the standard practical units used in electronics are the microfarad (µF), nanofarad (nF), and picofarad (pF). Millifarads (mF) are occasionally used in older European schematics or specific motor-start applications.
How do you convert microfarads to nanofarads?
To convert microfarads (µF) to nanofarads (nF), multiply the value by 1,000. For example, a 0.1 µF decoupling capacitor is exactly equal to 100 nF. Conversely, to convert nanofarads to microfarads, divide by 1,000.
Why is the farad considered such a large unit?
Historically, the physical construction of a capacitor required massive surface areas of conductive plates separated by thin dielectrics to achieve just one farad. It was not until the invention of supercapacitors (which use activated carbon to achieve microscopic pore structures and massive surface area) that 1 F components became small enough to hold in your hand.
Can I replace a microfarad capacitor with a nanofarad one?
No. A nanofarad capacitor is 1,000 times smaller in storage capacity than a microfarad capacitor of the same voltage rating. Substituting a nF part for a µF part in a power supply filter will result in massive voltage ripple, and in a timing circuit, it will cause the oscillator to run 1,000 times faster than designed, likely causing total system failure.






