When a DC voltage is suddenly applied to a Transmission line (e.g., switching on a power supply, or driving a digital logic transition), the line doesn’t reach steady state instantly. A wavefront propagates from source to load, reflects, returns, reflects again — a multi-bounce transient that gradually settles.

Setup

A line of length , characteristic impedance , propagation velocity . Switched on at , connected to a DC source with internal impedance and load .

One-way travel time:

This is the time for a wavefront to traverse the line once.

Phase 1: Initial launch ()

At the instant the switch closes, the line looks like its characteristic impedance to the source — not like the load yet, since no wave has reached the load. The source sees a voltage divider between and , and the initial forward wave has amplitude:

This wave propagates in at speed .

Phase 2: First reflection ()

When the wavefront reaches the load at , the load enforces . If , the incoming wave can’t match this — a reflection is generated:

The voltage at the load at is the sum of incident plus reflected:

Phase 3: Second reflection ()

The reflected wave returns to the source at . If , it also fails to match — a new forward wave is generated:

This is the start of “bouncing back and forth,” with each round trip multiplying the amplitude by .

Long-time steady state

After many round trips, the geometric series of bounces converges:

Substituting and simplifying with the definitions of :

The transient settles to the DC resistive-divider answer — what you’d predict from lumped circuit theory, ignoring the line entirely. The transmission line is “invisible” at DC steady state (lossless case).

The transient is the price you pay during the settling time of order — a few round trips for moderate mismatches, many round trips for severe ones.

Three special terminations

Matched load (, ): No reflection at the load. The forward wave is absorbed; voltage steps up to and stays there. Cleanest possible response — one step, no ringing. The reason RF designers obsess over matching.

Open load (, ): The wave reflects fully in phase. Voltage at the open end doubles. If the source is also mismatched (), the wave bounces back and the voltage oscillates around the steady-state value, decaying geometrically.

Short load (, ): The wave reflects fully inverted. Voltage at the short stays zero, current doubles. Bouncing creates the dual of the open-circuit oscillation pattern.

Why a digital signal “rings”

In high-speed digital design, the source and load are not perfectly matched. A 0→1 transition launches a wave that bounces a few times before settling. If , the bounces produce overshoot and undershoot (“ringing”) — the voltage at the receiver oscillates around the final value.

For very fast edges (short rise time relative to ), this ringing can cross logic thresholds multiple times, causing false transitions. Mitigation strategies:

  1. Source-series termination: add at the driver. kills back-reflections, so any waveform that arrives at the source is absorbed. The first reflection from the load eventually settles things out.
  2. Parallel termination at the load: add a resistor in parallel at the load so the load impedance matches . . Cleanest response but consumes DC power (the resistor draws current at logic-high).
  3. Differential signaling and controlled-impedance PCBs: the modern approach for multi-Gbps interconnects.

This is also why high-speed PCB design specifies things like “50 Ω microstrip” — you’re designing the line to match the components, so transient ringing is controlled by design rather than after the fact.

Computing the response

Two equivalent ways:

  • Bounce diagram: graphical, intuitive. Locate on the diagram, sum amplitudes of waves that have passed.
  • Closed-form sum: of bounces explicit through time . For each round trip, add if applicable.

For complex problems, time-domain SPICE simulation handles the bounces automatically.