The fundamental capacitance voltage formula is V = Q / C, meaning the voltage across a capacitor equals the stored electrical charge divided by its capacitance. For dynamic circuits where current flows over time, the formula expands to the derivative form I = C × (dV / dt), which rearranges to calculate voltage change as ΔV = (I × Δt) / C. Whether you are sizing a decoupling capacitor for an ESP32 or calculating the droop on a power supply filter, these two equations dictate how your circuit will actually behave on the bench.
The Core Capacitance Voltage Formula and Symbol Definitions
At its core, a capacitor is a charge storage device. The static relationship between the physical charge stored and the resulting electrical potential (voltage) is defined by the primary capacitance voltage formula:
V = Q / C
When we move from static charge to real-world circuits where current is actively charging or discharging the component over time, we use the derivative relationship. Since current (I) is the rate of charge flow over time (I = dQ/dt), we substitute this into the base formula to get the dynamic capacitance voltage formula:
I = C × (dV / dt) or ΔV = (I × Δt) / C
Here is the exact definition of every symbol used in these equations, mapped to their strict SI base units as defined by the NIST Guide to the SI.
| Symbol | Parameter | SI Unit | Unit Abbreviation | Practical Bench Context |
|---|---|---|---|---|
| V (or ΔV) | Voltage / Potential Difference | Volts | V | Measured across the capacitor terminals with a DMM. |
| Q | Electric Charge | Coulombs | C | Rarely measured directly; usually calculated from current × time. |
| C | Capacitance | Farads | F | Printed on the component (often in µF, nF, or pF). |
| I | Current | Amperes | A | The flow rate of charge into or out of the capacitor. |
| t (or Δt) | Time | Seconds | s | The duration the current flows (often in ms or µs in digital circuits). |
Rearranged Forms and Unit Tracking (Where Mistakes Happen)
Depending on what you are trying to solve for on the bench, you will need to rearrange the formula. Here are the standard algebraic forms:
- Solve for Voltage (V): V = Q / C | ΔV = (I × Δt) / C
- Solve for Charge (Q): Q = C × V
- Solve for Capacitance (C): C = Q / V | C = (I × Δt) / ΔV
- Solve for Current (I): I = C × (dV / dt)
- Solve for Time (Δt): Δt = (C × ΔV) / I
The 1,000,000x Unit Mistake
The most common reason a calculated voltage doesn't match the oscilloscope trace is a unit conversion failure. The formula strictly requires Farads (F), Amperes (A), and Seconds (s). Components are almost never labeled in base Farads; they use microfarads (µF, 10-6), nanofarads (nF, 10-9), or picofarads (pF, 10-12).
If you plug '100' into the C variable for a 100µF capacitor, your calculated voltage will be off by a factor of 1,000,000. Always convert to scientific notation first (e.g., 100µF = 100 × 10-6 F). According to Georgia State University HyperPhysics, maintaining strict SI unit consistency is the only way to prevent order-of-magnitude errors in electrostatic calculations.
What a Realistic Magnitude Looks Like
To build intuition: a massive 1 Farad supercapacitor holding 1 Coulomb of charge yields exactly 1V. A standard 100µF electrolytic capacitor holding a typical bench charge of 0.001 Coulombs yields 10V. If your formula spits out 4,000V for a 5V logic circuit, you forgot to convert your microfarads to Farads.
Worked Examples with Step-by-Step Derivations
Let's run two common scenarios you will encounter when designing power delivery networks or timing circuits.
Problem 1: Static Charge Voltage Calculation
Scenario: You have a 470µF electrolytic capacitor that has been charged and isolated. A coulomb meter (or calculated integration) determines it holds 0.0235 Coulombs of charge. What is the voltage across its terminals?
- Identify knowns: Q = 0.0235 C, C = 470µF.
- Convert units to SI base: C = 470 × 10-6 F (or 0.00047 F).
- Select formula: V = Q / C.
- Substitute values: V = 0.0235 / 0.00047.
- Calculate: V = 50 Volts.
Bench check: A 50V reading on a 470µF capacitor is perfectly realistic, provided the component's voltage rating is 63V or higher. If it's a 25V rated part, it has likely vented or failed short.
Problem 2: Dynamic Voltage Droop (Transient Load)
Scenario: An ESP32 wakes up from deep sleep and draws a sudden constant current spike of 250mA (0.25A) for 4 milliseconds (0.004s). The local decoupling capacitor is 22µF. How much will the voltage droop (ΔV) during this transient before the main regulator can respond?
- Identify knowns: I = 0.25 A, Δt = 0.004 s, C = 22µF.
- Convert units to SI base: C = 22 × 10-6 F.
- Select formula: ΔV = (I × Δt) / C.
- Calculate Charge (Numerator): Q = 0.25 A × 0.004 s = 0.001 Coulombs.
- Divide by Capacitance: ΔV = 0.001 / (22 × 10-6).
- Calculate: ΔV = 45.45 Volts.
Bench check: A 45V droop on a 3.3V rail means the microcontroller will instantly brownout and reset. The 22µF capacitor is vastly undersized for a 250mA load lasting 4ms. You would need to increase C to at least 300µF to keep the droop under 3.3V, or add a bulk electrolytic alongside the MLCC. For more on decoupling strategies, the SparkFun Capacitor Tutorial provides excellent practical guidelines for digital logic rails.
Assumptions, Limits, and Real-World Deviations
The formulas above assume an ideal capacitor. On the bench, parasitics and material physics break these assumptions. You must account for three major deviations:
The formula assumes C is a constant. For Class II ceramic capacitors (X7R, X5R), capacitance drops drastically as DC voltage increases. A 10µF, 16V 0805 MLCC might only provide 4µF of actual capacitance when 12V is applied. If you use the nominal 10µF value in your ΔV calculation, your predicted voltage droop will be 2.5x lower than what actually happens on the oscilloscope. Always check the manufacturer's DC bias curve.
- Equivalent Series Resistance (ESR): The formula calculates the voltage across the pure capacitance. In reality, Vtotal = Vcapacitor + (I × ESR). During high-current transients, the I × ESR voltage drop often dominates the initial voltage spike.
- Dielectric Absorption: If you discharge a capacitor to 0V and leave it open-circuit, the voltage will slowly creep back up as trapped charges in the dielectric relax. The simple V=Q/C formula does not model this time-delayed relaxation.
- Leakage Current: Real capacitors slowly bleed charge over time. For long-term hold-up calculations (like RTC backup power), you must subtract the leakage current from your charging current in the I variable.
Decision Tree: Sizing a Capacitor for a 12V DC Bus Filter
When designing a filter for a 12V DC bus (e.g., the output of a buck converter feeding a motor driver), you need to select a specific capacitance and voltage rating. Use this if-then decision path to arrive at a concrete part selection.
| Condition / Constraint | Engineering Action | Resulting Parameter |
|---|---|---|
| IF nominal bus is 12V (with 14V max transients) | THEN apply 2x voltage derating rule for reliability. | Select 25V or 35V minimum voltage rating. |
| IF space is constrained and you choose an MLCC (X7R) | THEN account for DC bias derating (approx. 40% loss at 12V on a 25V part). | To get 10µF effective, you must spec a 22µF nominal MLCC. |
| IF the load has high di/dt transients (e.g., motors, solenoids) | THEN MLCC ESR is too low, risking ringing. You need bulk damping. | Switch to Aluminum Electrolytic or Polymer chemistry. |
| IF you need guaranteed bulk capacitance without DC bias derating | THEN select an Aluminum Electrolytic (which maintains C across DC voltage). | Spec 100µF to 470µF at 35V. |
| DEFAULT PICK: For a standard 12V DC bus filter requiring reliable bulk capacitance, default to the Nichicon UVR1V102MPD (1000µF, 35V, Aluminum Electrolytic, radial). It provides massive charge reservoir capacity, ignores DC bias derating entirely, and the 35V rating safely handles 12V nominal + automotive-style load dump transients. | ||
Stop guessing and start calculating. The capacitance voltage formula is absolute, provided you respect the SI units and the physical limitations of the dielectric material. When in doubt on a DC power bus, default to a 35V-rated aluminum electrolytic to guarantee your calculated capacitance matches the physical reality on your board.






