⏱️ RC / RL Time Constant Calculator
Charge & Discharge Curves (0 → 5τ)
What Exactly Is a Time Constant, and Why Should Circuit Designers Care?
Every circuit that involves energy storage — whether through a capacitor or an inductor — behaves in a predictable way when you suddenly apply or remove a voltage. It doesn't jump instantly from one state to another. Instead, it follows a smooth exponential curve, gradually climbing toward the final value or decaying away from it. The speed of that transition is governed by a single number called the time constant, denoted with the Greek letter τ (tau).
Understanding τ is genuinely one of the foundational skills in analog electronics. It tells you how fast a filter responds, how long a power supply takes to stabilize after load changes, how quickly a motor drive circuit ramps up current, and dozens of other things that matter in real-world design. Once you grasp what τ means, you start seeing its fingerprints everywhere — in audio crossovers, in sensor interface circuits, in oscilloscope probe compensation, in camera flash circuits.
RC Circuits: Resistance Times Capacitance
For a series resistor-capacitor circuit, the time constant is simply:
τ = R × C
Where R is in ohms and C is in farads, giving τ in seconds. A 10 kΩ resistor paired with a 10 µF capacitor gives τ = 0.1 seconds — that circuit takes about 100 milliseconds to reach roughly two-thirds of its target voltage.
Why two-thirds? The charging equation is V(t) = Vs × (1 − e^(−t/τ)). At exactly t = τ, that expression evaluates to Vs × (1 − e^(−1)) ≈ 0.632 × Vs, which is 63.2% of the supply voltage. This is the universal landmark for RC (and RL) circuits — one time constant always brings you to 63.2% of the way there. At 2τ you're at 86.5%, at 3τ you're at 95%, and at 5τ you're practically indistinguishable from the final value at 99.3%.
Discharge is the mirror image. A fully charged capacitor draining through a resistor follows V(t) = V0 × e^(−t/τ). At one time constant it retains 36.8% of its original charge. That decaying exponential never truly reaches zero mathematically, but for all engineering purposes the capacitor is fully discharged after five time constants.
RL Circuits: Inductance Divided by Resistance
Inductor-resistor circuits follow the same exponential shape, but the time constant formula is inverted:
τ = L / R
Here L is in henries and R is in ohms. A 100 mH inductor with a 50 Ω series resistor gives τ = 2 ms. Notice something interesting: in an RL circuit, adding more resistance shortens the time constant and speeds things up, whereas in an RC circuit, adding more resistance lengthens it and slows things down. That reversal trips up a lot of students initially.
The physical reason is intuitive once you think about it. In an RL circuit, resistance is what dissipates the energy stored in the inductor's magnetic field — more resistance means faster energy bleed. In an RC circuit, resistance limits the current that can flow to charge the capacitor — more resistance means slower charging.
The Cutoff Frequency Connection
The time constant is directly tied to the −3 dB cutoff frequency of a first-order filter. The relationship is:
fc = 1 / (2π × τ)
At this frequency, the output voltage of a low-pass RC filter drops to 70.7% of the input (the power is halved, which is the standard "half-power point"). This is why RC networks show up in every audio equalizer, anti-aliasing filter, and signal conditioning circuit — the designer picks R and C values to set fc at exactly the frequency where they want the filter to start rolling off.
An RL circuit at its cutoff frequency behaves identically from a filtering perspective, with fc = R / (2π × L). For high-current applications where capacitors would need to be impractically large, an RL low-pass filter can be a better choice — though inductors are bulkier and more expensive than capacitors at the same frequency range.
Common Mistakes When Working with τ
Unit confusion causes the most errors. Mixing kilohms with microfarads without converting is a classic trap. The formula τ = R × C needs R in plain ohms and C in plain farads. If you have 4.7 kΩ and 100 nF, you must compute 4700 × 0.0000001 = 0.00047 s = 0.47 ms. The calculator on this page handles unit conversions automatically, but when doing hand calculations, always reduce to base SI units first.
Another common misunderstanding is assuming the circuit is "done" at 3τ. It's at 95%, which is close — but if you're designing a sample-and-hold circuit or an ADC input buffer where settling accuracy matters, you might need 7τ or more to hit 0.01% accuracy. Know your precision requirements before assuming 5τ is sufficient.
Finally, the simple τ = RC formula assumes the capacitor sees a fixed Thévenin resistance. In real circuits with op-amps, transistors, or multiple branches, you need to compute the effective source resistance the capacitor actually sees using Thévenin's theorem. The elegant formula only holds in its pure, simple form for a single-loop series circuit.
Practical Uses: From Power Supplies to EMC Filtering
RC time constants appear in snubber circuits across relay contacts to suppress switching transients. They appear in the feedback networks of op-amp integrators and differentiators. They govern the charge time of camera flash capacitors — a 300 µF cap charging through a 1 kΩ resistance takes about 1.5 seconds to reach 95%, which matches the "recycling time" feel of many entry-level flash units.
In digital electronics, RC networks on reset pins ensure the microcontroller stays in reset long enough for the power supply to stabilize. The required reset hold time divided by 5 (for 99% settling) tells you the minimum RC product to use.
EMC engineers use RC and RL filters heavily on cable entry points to suppress conducted emissions. A simple RC low-pass with a well-chosen τ can knock 20 dB off a switching spike that would otherwise cause a radiated emissions failure — the difference between passing and failing a regulatory certification test.
Reading the Response Curves
The charge curve (blue in the plot above) rises steeply at first and flattens as it approaches the supply voltage asymptotically. The discharge curve (red dashed) mirrors it, starting high and decaying toward zero. Both curves have the same time constant — that's a direct consequence of the exponential function's self-similar nature.
The golden marker at 1τ on the plot highlights the 63.2% crossing point. Visually, if you draw a tangent line to the charging curve at t = 0, it would intersect the final voltage level exactly at t = τ. This geometric property is sometimes used in labs to estimate τ from an oscilloscope trace without doing any calculations — just draw the tangent and see where it crosses.
After 5τ, both curves are essentially flat. This is the design rule of thumb engineers use when deciding how long to wait before sampling a signal, switching a circuit state, or declaring that a transient has settled.