Press a button on a touchscreen and it does not register an electrical edge instantly — there is a brief, deliberate settling before the input is read. Switch on a power supply and its output voltage rises along a smooth curve rather than snapping to its final value. Behind both behaviors is the same quiet quantity: a resistance multiplied by a capacitance, the RC time constant. It is the clock speed of analog electronics, and it is governed by a single, memorable product.
This article explains what the RC time constant is, where the exponential charging curve comes from, and how to read off the timing of a circuit from just two component values.
Why this calculation matters
Nothing in an electronic circuit changes state for free. Every time a voltage moves, charge has to flow into or out of capacitance, and resistance limits how fast that charge can move. The time constant is the number that captures the trade-off.
Get it right and you can size a debounce delay, set the cutoff of a filter, predict how long a sensor needs to stabilize, or estimate how quickly a logic line can swing between levels. Get it wrong and a circuit either responds sluggishly or rings and glitches. The same arithmetic decides whether a coupling capacitor passes a signal cleanly or distorts it, and whether a sample-and-hold has settled before the converter reads it. The time constant is the first number an engineer reaches for whenever the question is "how long?"
The core formula
When a capacitor charges through a resistor from a DC supply, its voltage does not rise linearly. It follows an exponential approach to the supply voltage:
V(t) = V_supply * (1 - e^(-t / tau))
The single parameter that scales the whole curve is the time constant:
tau = R * C
with R in ohms, C in farads, and tau in seconds. The physical reading is direct. A larger resistance throttles the charging current, so the capacitor fills more slowly. A larger capacitance needs more charge to reach a given voltage, so it also takes longer. Their product is the natural timescale of the circuit.
The exponential has a few landmarks worth committing to memory:
after 1 tau: V reaches about 63% of V_supply
after 2 tau: about 86%
after 3 tau: about 95%
after 5 tau: over 99% — treated as fully charged
Discharging follows the mirror-image curve, V(t) = V_initial * e^(-t / tau), falling to about 37% after one time constant. And the same idea carries over to inductive circuits: an RL circuit has a time constant tau = L / R, governing how the current rises or decays instead of the voltage.
A worked example
Take a capacitor charging through a resistor with common bench values: R = 10 kohm and C = 100 microfarad.
Step 1 — convert to base units. R = 10 kohm = 10,000 ohm. C = 100 microfarad = 100e-6 F = 1.0e-4 F.
Step 2 — compute the time constant.
tau = R * C
tau = 10,000 * 100e-6
tau = 1.0 s
Step 3 — interpret the curve. After one time constant — one second here — the capacitor voltage has reached about 63% of the supply voltage. After five time constants, which is 5 seconds, it is over 99% charged, and for practical purposes the circuit is treated as fully settled.
So this pairing produces a leisurely, easily observed charge: connect a multimeter and you can literally watch the voltage climb. Shrink the capacitor to 100 nanofarad and tau drops to 1 millisecond — the same shape of curve, but a thousand times faster. The shape never changes; only the timescale does.
That last point is the practical heart of the matter. The "5 tau" rule of thumb means the settling time of an RC circuit is essentially five times R times C, regardless of the actual component values. The same time constant L / R sets the current settling time in an RL circuit, so the design instinct transfers directly between the two.
Common mistakes
Dropping the unit prefixes. tau = R * C only gives seconds when R is in ohms and C is in farads. Multiplying kilohms by microfarads without converting throws the answer off by orders of magnitude. Convert first, then multiply.
Assuming the capacitor charges linearly. The voltage rise is exponential, not a straight ramp. It is fast at first and slows as it approaches the supply, which is why "half charged" is reached well before half the settling time.
Treating the capacitor as full after one tau. One time constant gets you to only about 63%. If a design needs the voltage genuinely settled, allow five time constants — the one-tau point is a milestone, not the finish line.
Forgetting that the source resistance counts. The R in tau is the total resistance in the charging path, including the output resistance of whatever drives the circuit. Using only the obvious series resistor underestimates the real time constant.
Mixing up the RC and RL forms. A capacitive circuit has tau = R * C; an inductive circuit has tau = L / R. The roles of the components differ, and confusing the two inverts how resistance affects the speed.
Try the interactive NovaSolver calculator
Computing one time constant is easy; building intuition for how the curve bends as you change R and C is better done by watching it. The RC/RL Circuit Transient Response Analyzer on NovaSolver lets you set resistance, capacitance, inductance, and the input amplitude, then plots the step response while reporting the time constant — and it compares the analytical solution against numerical integration so you can see the exponential build itself out.
Related calculators
- Thevenin Equivalent Simulator — reduce a messy source network to one resistance before you compute its time constant.
- RC Capacitor Charge / Discharge Simulator — focuses purely on the charge and discharge curves and the meaning of the 5-tau rule.
- Inductor & RL Circuit Transient Response — for the inductive twin, where tau = L / R governs the current instead.
You can browse the full set in the electromagnetics tools hub.
Closing note
The RC time constant is one calculation that frames every timing question in analog electronics. It is just a product — resistance times capacitance — but that product tells you how fast a circuit can settle, how quickly a filter responds, and how long to wait before trusting a measurement. Convert your units, remember that the curve is exponential, and allow five time constants for full settling. With those three habits, the pace of a circuit becomes something you can predict before you ever power it up.
Top comments (0)