Why Real Circuits Don't Respond Instantly
Ideal circuit diagrams tempt beginners to think every signal jumps from one value to another immediately. Real circuits do not behave that way. Whenever a circuit stores energy, it takes time for voltage and current to move from one state to another.
Those temporary changes are called transients.
Learning Objectives
By the end of this lesson, you should be able to:
- explain why capacitors resist sudden voltage change and inductors resist sudden current change;
- distinguish transient response from steady-state behavior;
- estimate whether a transition is fast or slow using resistance, capacitance, and inductance;
- connect transient behavior to real engineering problems such as startup surges, switch bounce, and inductive kickback.
Steady State Versus Transient State
- Steady state is what the circuit looks like after enough time has passed.
- Transient state is the temporary interval after something changes: a switch closes, power turns on, a load disconnects, or a signal edge arrives.
If a circuit contains only ideal resistors and ideal sources, the transition is instantaneous. Real electronic systems include capacitance and inductance everywhere, whether intentional or parasitic.
The Two Main Causes of Delay
Capacitors resist sudden voltage change
For a capacitor,
$$
i_C = C\frac{dv_C}{dt}
$$
To change capacitor voltage instantly, the slope dv/dt would have to be extremely large. That would require extremely large current. Real sources and traces cannot provide infinite current, so capacitor voltage changes over time.
Inductors resist sudden current change
For an inductor,
$$
v_L = L\frac{di_L}{dt}
$$
To change inductor current instantly, di/dt would have to be extremely large. That demands extremely large voltage. Real circuits cannot supply infinite voltage safely, so inductor current changes over time.
A Useful Physical Picture
Resistance does not store energy. It dissipates energy as heat and sets the rate at which capacitors charge and inductors ramp current.
Example 1: Charging a Capacitor
In a simple RC charging circuit, the source does not force the capacitor to final voltage instantly. Current is highest at the start, then decays as the capacitor charges.
V1: Device:Battery_Cell value="5 V step"
S1: Switch:SW_SPST value="Close at t = 0"
R1: Device:R value="10 k"
C1: Device:C value="100 uF" rotate=0
layout direction=LR gap=90
group SOURCE label="Step source" direction=LR {
V1
S1
}
group CHARGE label="RC charging path" direction=TB {
R1
C1
}
V1.1 --> S1.1
S1.2 --> R1.1
R1.2 --> local:VC
C1.1 --> local:VC
C1.2 --> global:0V
V1.2 --> global:0V
At t = 0:
- the capacitor voltage cannot jump instantly;
- the capacitor initially looks like a short for the purpose of the first moment;
- current is approximately
V/R.
Long after the switch closes:
- capacitor current falls toward zero;
- capacitor voltage approaches the source voltage;
- the capacitor looks like an open circuit in DC steady state.
Example 2: Turning Off an Inductive Load
If current is flowing in a relay coil or motor winding and the path is opened suddenly, the inductor tries to keep that current flowing. It raises its terminal voltage until a new path appears.
V1: Device:Battery_Cell value="12 V"
S1: Switch:SW_SPST value="Open switch"
L1: Device:L value="Relay coil" rotate=270
D1: Device:D value="Flyback diode"
layout direction=LR gap=90
group DRIVE label="Inductive load" direction=TB {
V1
S1
L1
D1
}
V1.1 --> S1.1
S1.2 --> L1.1
L1.2 --> global:0V
V1.2 --> global:0V
D1.K --> L1.1
D1.A --> global:0V
Without the flyback diode, the switch node voltage can spike high enough to arc contacts or destroy a transistor.
Time Scales Matter
Transient behavior can last:
- nanoseconds in fast digital edges;
- microseconds in MOSFET switching;
- milliseconds in RC delays and relay coils;
- seconds in large filter capacitors or thermal startup systems.
What matters is not whether a transient exists. Every real circuit has transients. What matters is whether that transient is significant relative to the system's timing and tolerance.
Common Real-World Consequences
- Power-up reset issues: a supply rail rises too slowly or with too much overshoot.
- Button bounce: mechanical contacts produce repeated transitions before settling.
- Sensor noise: fast disturbances couple into high-impedance nodes.
- Motor and relay kickback: inductive loads generate high-voltage spikes when switched off.
- Ringing on digital lines: trace inductance and capacitance create overshoot and undershoot.
Worked Example
A 10 k ohm resistor and 100 uF capacitor produce:
$$
\tau = RC = 10{,}000 \times 100\times10^{-6} = 1\ \text{s}
$$
So the node reaches about:
63%of final value after1 s;86%after2 s;95%after3 s;- more than
99%after about5 s.
That is why engineers often treat 5 tau as "settled enough."
Safety Guidance
Transient energy is often what damages parts:
- Large capacitors can source high surge current even at modest voltage.
- Inductors can generate dangerous spikes when current is interrupted.
- Never assume "only 12 V" means harmless if a coil or large capacitor is involved.
Discharge capacitors safely and add suppression components such as flyback diodes, RC snubbers, or TVS devices where needed.
Common Mistakes
- Thinking only final DC values matter.
- Assuming a capacitor "passes current" in DC steady state.
- Assuming an inductor simply "blocks current."
- Ignoring parasitic capacitance and inductance in wiring and PCB traces.
- Treating an oscilloscope spike as "noise" without asking what energy source created it.
Summary
Real circuits do not respond instantly because energy cannot appear, disappear, or move infinitely fast. Capacitors store energy in electric fields and resist sudden voltage change. Inductors store energy in magnetic fields and resist sudden current change. Resistance sets how quickly those changes settle.
Transient thinking is the bridge between neat textbook schematics and real hardware behavior.