Lesson 13 of 15
RC Time Constant
RC Circuits
A resistor and capacitor in series form an RC circuit. When charged or discharged, the voltage decays exponentially with time constant:
- (tau) — time constant (seconds)
- R — resistance (Ω)
- C — capacitance (farads, F)
What τ Means
After one time constant , the voltage has decayed to 1/e ≈ 36.8% of its initial value. After it is essentially zero (0.7%).
| Time | Voltage remaining |
|---|---|
| 0 | 100% |
| 36.8% | |
| 13.5% | |
| 0.7% (fully discharged) |
Charging and Discharging
ight)$$ ### Applications RC time constants set the frequency response of filters and timing circuits — camera flashes, audio tone controls, oscillator timing, and signal debouncing. ### Examples | R (Ω) | C (F) | τ (s) | |-------|-------|-------| | 1000 | 1×10⁻³ | **1.0000** | | 10000 | 100×10⁻⁶ | **1.0000** | | 1000 | 1×10⁻⁶ | **0.0010** | | 470 | 100×10⁻⁶ | **0.0470** | ### Your Task Implement `rc_time_constant(R, C)` returning $ au$ in seconds.
Pyodide loading...
Loading...
Click "Run" to execute your code.