The fundamental capacitor voltage formula for a charging RC circuit is V(t) = Vs(1 - e-t/RC), and for a discharging circuit it is V(t) = V0e-t/RC. If you are sizing a standard 555-timer delay to reach 63.2% of a 12V supply using a 47kΩ resistor, you need a 100µF capacitor (such as the Panasonic EEU-FR1V101) to achieve a 4.7-second time constant. This guide breaks down the derivation, unit traps, and exact component selection for real-world bench work.
The Core Capacitor Voltage Formulas and Assumptions
While the static electrostatic formula is V = Q/C (Voltage = Charge / Capacitance), practicing engineers and makers almost exclusively rely on the transient RC formulas to calculate timing, filtering, and power ride-through. These formulas map how voltage changes over time when a capacitor is connected to a resistive network.
| Symbol | Definition | Standard Unit | Practical Range |
|---|---|---|---|
| V(t) | Capacitor voltage at time t | Volts (V) | 0V to 400V+ |
| Vs | Source / Supply voltage (Charging) | Volts (V) | 3.3V, 5V, 12V, 24V |
| V0 | Initial voltage (Discharging) | Volts (V) | Matches Vs prior to discharge |
| R | Series Resistance | Ohms (Ω) | 100Ω to 10MΩ |
| C | Capacitance | Farads (F) | 10pF to 1F (Supercaps) |
| t | Elapsed Time | Seconds (s) | 1µs to 100s |
| e | Euler's number | Constant | ~2.71828 |
| τ (tau) | Time Constant (R × C) | Seconds (s) | Time to reach 63.2% of Vs |
Rearranged Forms and the Unit Mistakes That Break Them
To solve circuit design problems, you rarely solve for V(t). Usually, you know your target voltage and need to find the required time, resistance, or capacitance. Here are the algebraically rearranged forms:
- Solve for Time (t): t = -RC · ln(1 - V(t)/Vs)
- Solve for Resistance (R): R = -t / [C · ln(1 - V(t)/Vs)]
- Solve for Capacitance (C): C = -t / [R · ln(1 - V(t)/Vs)]
The Microfarad Trap and Realistic Magnitudes
The most common reason a capacitor voltage calculation fails on the bench is a unit conversion error. The formula strictly requires Farads, not microfarads (µF) or picofarads (pF). If you plug '100' into the C variable for a 100µF capacitor, your calculated time constant will be one million times larger than reality.
Realistic Answer Magnitudes: For standard logic-level timing circuits (like a 555 timer or an RC debounce filter), your time constant (τ) should typically fall between 1 millisecond and 10 seconds. If your calculation yields t = 470,000 seconds, you forgot to multiply your µF value by 10-6. Conversely, if you are calculating high-frequency AC coupling or RF bypassing, your time constants will be in the nanosecond (ns) or microsecond (µs) range.
Worked Examples with Strict Unit Tracking
Let's walk through two common bench scenarios, explicitly tracking the unit conversions to ensure the math maps to physical reality.
Problem 1: Charging to a Microcontroller Logic Threshold
Scenario: You are designing a soft-start delay. A 5V rail charges a capacitor through a 220kΩ resistor. Your microcontroller's enable pin triggers at 2.8V. How long (t) after power-on will the MCU boot?
- Identify Knowns: Vs = 5V, V(t) = 2.8V, R = 220,000 Ω, C = 4.7µF = 0.0000047 F.
- Select Formula: t = -RC · ln(1 - V(t)/Vs)
- Calculate RC (τ): 220,000 Ω × 0.0000047 F = 1.034 seconds.
- Calculate Voltage Ratio: V(t)/Vs = 2.8 / 5 = 0.56.
- Apply Natural Log: ln(1 - 0.56) = ln(0.44) = -0.82098.
- Final Multiply: t = -1.034 × -0.82098 = 0.849 seconds.
Verification: 0.849 seconds is slightly less than one time constant (1.034s). At one time constant, voltage reaches 63.2% (3.16V). Since 2.8V is 56% of 5V, a time slightly less than 1τ makes logical sense.
Problem 2: High-Voltage Bleeder Resistor Discharge
Scenario: A 470µF filter capacitor in a tube amplifier power supply is charged to 400V. For safety, a bleeder resistor must discharge it to a safe-to-touch 30V within 5 seconds. What resistance (R) is required?
- Identify Knowns: V0 = 400V, V(t) = 30V, t = 5s, C = 470µF = 0.00047 F.
- Select Discharging Formula: V(t) = V0e-t/RC, rearranged to R = -t / [C · ln(V(t)/V0)].
- Calculate Voltage Ratio: 30 / 400 = 0.075.
- Apply Natural Log: ln(0.075) = -2.59027.
- Calculate Denominator: 0.00047 F × -2.59027 = -0.0012174.
- Final Divide: R = -5 / -0.0012174 = 4,107 Ω.
Practical Pick: Select a standard 3.9kΩ or 4.7kΩ resistor. Crucially, you must check the power rating. Initial power dissipation is V2/R = 4002 / 4107 = 38.9 Watts. You will need a heavy-duty wirewound chassis-mount resistor, not a standard 1/4W carbon film part. For authoritative safety guidelines on capacitor discharge networks, refer to the All About Circuits guide on capacitor discharge safety.
Decision Path: Sizing a Capacitor for Your Application
The mathematical formula gives you a target capacitance value, but picking the physical component requires understanding dielectric behavior. Use this decision tree to terminate your design in a concrete part number.
| Application Condition | Required Dielectric / Type | Concrete Part Pick (Example) |
|---|---|---|
| Precision Timing: RC oscillator, 555 timer, strict delay tolerances (< 2% drift over temp). | C0G / NP0 Ceramic. Zero voltage coefficient, ultra-stable temperature profile. | KEMET C0805C104J5GACTU (100nF, 50V, 5% tol) |
| General Decoupling: Logic IC bypassing, noise filtering where exact timing is irrelevant. | X7R / X5R Ceramic. High volumetric efficiency, but capacitance drops under DC bias. | Murata GRM21BR71H106KE51 (10µF, 50V, 10% tol) |
| Bulk Energy / Ride-Through: Power supply smoothing, audio coupling, motor start. | Aluminum Electrolytic. High capacitance per dollar, polarized, higher ESR. | Panasonic EEU-FR1V471 (470µF, 35V, Low ESR) |
| High Temp / Compact: Automotive under-hood, dense PCB layouts requiring >1µF. | Tantalum (MnO2 or Polymer). Stable, polarized, catastrophic failure mode if reverse biased. | KEMET T491C106K016AT (10µF, 16V, 10% tol) |
Real-World Deviations: When the Math Meets the Bench
If you build the 4.7-second delay from Problem 1 and probe it with an oscilloscope, the trace will not perfectly match the ideal exponential curve. According to SparkFun's capacitor tutorial and manufacturer datasheets, three physical realities alter the ideal capacitor voltage formula:
- Equivalent Series Resistance (ESR): Every capacitor has internal resistance. When a step voltage is applied, Ohm's law dictates an immediate voltage drop across the ESR (V = I × ESR). The capacitor voltage will 'step' up instantly before following the smooth exponential RC curve. This is critical in switching power supplies but negligible in high-resistance timing circuits.
- DC Bias Derating: If you chose an X7R ceramic capacitor for a 12V circuit, the actual capacitance will be lower than the printed value. A 10µF X7R cap might only exhibit 6µF of effective capacitance at 12V DC bias, shifting your calculated time constant by 40%. Always check the manufacturer's DC bias curve.
- Dielectric Absorption (DA): Often called 'capacitor memory', this is a phenomenon where the dielectric material slowly releases trapped charge after the capacitor is discharged. If you short a large electrolytic capacitor and remove the short, the voltage will creep back up to several volts over the next few minutes. This violates the ideal discharge formula and can be a lethal hazard in high-voltage equipment.
By mastering the algebraic rearrangements of the capacitor voltage formula, strictly enforcing unit conversions to base SI units (Farads, Ohms, Seconds), and selecting the correct dielectric for your specific edge cases, you can reliably predict circuit behavior before you ever cut a piece of wire.






