The fundamental voltage capacitor equation is V = Q / C, where the voltage (V) across the component equals the stored electrical charge (Q) divided by its capacitance (C). This algebraic relationship defines the static DC state of a capacitor. For time-varying circuits where current flows in and out, this equation expands into the derivative form i = C(dv/dt), which dictates how fast the voltage changes when a specific current is applied.
Whether you are sizing a supercapacitor for an ESP32 brownout ride-through or calculating bulk filter sag on a GSM module power rail, understanding how to manipulate this formula—and knowing where real-world components deviate from the ideal math—is critical for reliable circuit design.
The Core Voltage Capacitor Equation and Symbol Definitions
The electrostatic relationship between voltage, charge, and capacitance assumes an ideal component with no parasitic resistance, inductance, or dielectric leakage. Below is the spec-sheet breakdown of every symbol in the primary equation.
| Symbol | Parameter | SI Unit | Practical Bench Unit | Definition |
|---|---|---|---|---|
| V | Voltage | Volts (V) | Volts (V), mV | The electrical potential difference across the capacitor plates. |
| Q | Charge | Coulombs (C) | mC, μC | The total quantity of electricity stored on the plates (1 Coulomb = 1 Ampere × 1 second). |
| C | Capacitance | Farads (F) | μF, nF, pF | The ability of the component to store charge per volt applied. |
| i | Current | Amperes (A) | mA, μA | The rate of charge flow into or out of the capacitor over time. |
| dv/dt | Voltage Slew Rate | Volts/second (V/s) | V/μs | How rapidly the voltage across the capacitor is changing at a given instant. |
When this applies and its assumptions: The static equation V = Q / C applies perfectly to DC steady-state analysis and initial/final condition calculations in transient circuits. It assumes the dielectric material is perfectly linear. In reality, Georgia State University HyperPhysics notes that physical capacitors exhibit dielectric absorption and leakage, meaning the actual retained charge Q will slowly decay over time even with the circuit open.
Rearranged Forms and Unit Mistakes That Break Calculations
On the bench, you rarely solve for charge directly. You are usually solving for the required capacitance to prevent a voltage sag, or calculating the voltage spike caused by a known charge injection. Here are the rearranged forms:
- Solving for Voltage: V = Q / C
- Solving for Charge: Q = C × V
- Solving for Capacitance: C = Q / V
- Time-Domain Form (Delta): C = (I × Δt) / ΔV (Derived by substituting Q = I × t)
Unit Mistakes That Will Break Your Math
The most common reason hobbyists and junior engineers get wildly incorrect answers is failing to convert practical units into base SI units before calculating.
- The Microfarad Trap: Plugging "100" into the equation for a 100μF capacitor. You must use 100 × 10-6 (or 0.0001) Farads.
- The Milliamp-Hour Confusion: Battery capacity is measured in mAh, but capacitor charge Q must be in Coulombs. (1 mAh = 3.6 Coulombs). Never mix battery math directly into the V=Q/C formula without converting to Amperes and seconds first.
- Time Scaling: When using the delta form (C = IΔt / ΔV), time must be in seconds. A 500ms pulse is 0.5s, not 500.
What a Realistic Answer Magnitude Looks Like
Capacitors store very little total charge compared to electrochemical cells. A massive 10,000μF (0.01F) bulk electrolytic capacitor charged to 12V holds only 0.12 Coulombs of charge. If you calculate a required charge of 50 Coulombs for a backup circuit, you immediately know you need a battery or a bank of high-voltage supercapacitors, not standard MLCCs.
Worked Bench Examples with Unit Tracking
Let’s apply the time-domain rearrangement of the voltage capacitor equation to two common embedded systems scenarios. We will track units at every step to ensure dimensional accuracy.
Problem 1: Supercapacitor Sizing for RTC Backup
Scenario: You are designing a real-time clock (RTC) backup circuit for an ESP32. When main power fails, the RTC must stay alive for at least 5 seconds. The RTC draws a constant 10μA. The supercapacitor starts fully charged at 2.5V, and the RTC brownout threshold is 1.8V.
Goal: Find the minimum capacitance (C).
- Identify knowns and convert to SI:
Current (I) = 10μA = 10 × 10-6 A
Time (Δt) = 5 s
Voltage drop (ΔV) = 2.5V - 1.8V = 0.7 V - Select the rearranged formula:
C = (I × Δt) / ΔV - Substitute and track units:
C = (10 × 10-6 A × 5 s) / 0.7 V
C = (50 × 10-6 C) / 0.7 V (since Amperes × seconds = Coulombs)
C = 71.42 × 10-6 F - Convert to practical units:
C = 71.42 μF
Bench Decision: A standard 100μF X5R ceramic capacitor would technically work on paper. However, due to Equivalent Series Resistance (ESR) and dielectric absorption, a seasoned designer would select a 0.1F (100,000μF) radial supercapacitor (like a Vishay or Eaton part) to guarantee the voltage doesn’t sag prematurely under temperature variations.
Problem 2: Bulk Filter Voltage Sag Under Pulsed Load
Scenario: A SIM800L GSM module is pulling 2A peak current bursts during transmission. The burst lasts for 2 milliseconds (0.002s). Your 5V power rail can tolerate a maximum voltage sag of 0.5V before the module resets.
Goal: Find the required bulk capacitance to ride through the pulse.
- Identify knowns and convert to SI:
Current (I) = 2 A
Time (Δt) = 2 ms = 0.002 s
Allowed Voltage drop (ΔV) = 0.5 V - Substitute into C = (I × Δt) / ΔV:
C = (2 A × 0.002 s) / 0.5 V
C = 0.004 C / 0.5 V
C = 0.008 F - Convert to practical units:
C = 8,000 μF
Bench Decision: You need at least 8,000μF. Because standard electrolytic capacitors have wide tolerances (often -20% / +80%), you would place a 10,000μF low-ESR aluminum electrolytic (such as a Panasonic FR series) in parallel with a 100μF MLCC to handle the high-frequency transient edge of the pulse.
Real-World Deviations: Why Bench Measurements Differ
The voltage capacitor equation assumes capacitance C is a constant. On the bench, C is highly variable depending on the dielectric material and applied voltage.
The MLCC DC Bias Effect: If you use the equation to size a 10μF X5R ceramic capacitor for a 12V rail, you will be disappointed. According to Murata’s technical documentation on MLCC characteristics, Class II dielectrics (X5R, X7R) suffer from severe DC bias derating. A 10μF X5R cap might only exhibit 2μF of actual capacitance when 12V DC is applied across it. If your math relies on 10μF, your voltage sag will be five times worse than calculated. Fix: Always check the manufacturer’s DC bias curve, or use Class I (C0G/NP0) dielectrics which do not suffer from this effect, albeit at lower maximum capacitance values.
Safety Caveat: While the examples above deal with low-voltage logic, the V=Q/C equation applies equally to high-voltage systems. A 400V, 470μF capacitor in a switch-mode power supply (SMPS) stores nearly 38 Joules of energy (E = ½CV²). This is a lethal shock hazard. Always de-energize, lock out, and verify dead with a tested meter before probing high-voltage capacitors, and use a properly rated bleed resistor to safely discharge them.
Frequently Asked Questions
How does the voltage capacitor equation apply to AC circuits?
In AC circuits, the voltage and current are continuously changing, so we use the derivative form: i = C(dv/dt). Because the voltage is a sine wave, its derivative is a cosine wave, meaning the current leads the voltage by exactly 90 degrees. Instead of using static charge (Q), AC analysis uses capacitive reactance (Xc = 1 / 2πfC) to calculate RMS voltage and current using a modified version of Ohm’s Law (V = I × Xc).
Why does my calculated capacitor voltage exceed the source voltage in an LC circuit?
The static V=Q/C equation doesn’t account for energy transfer dynamics. In a resonant LC (inductor-capacitor) circuit, the inductor stores energy in a magnetic field and forces current into the capacitor even after the source voltage is reached. This "ringing" effect can cause the capacitor voltage to swing up to twice the source DC voltage (or much higher in high-Q circuits). This is why you must rate your capacitor’s maximum DC voltage (WVDC) significantly higher than your nominal supply rail in switching converters.
What is the difference between the V=Q/C equation and the RC charging equation?
V = Q / C is a state equation; it tells you the voltage right now based on the charge currently stored. The RC charging equation (V(t) = Vsource × (1 - e-t/RC)) is a time-domain kinematic equation. It tells you how long it will take to reach a specific voltage when charging through a resistor. You use V=Q/C to find the final destination, and the RC equation to map the journey.






