Time Domain Reflectometry (TDR)

Category: Electromagnetic Field Analysis > High Frequency | Updated 2026-04-11
TDR impedance profile reconstruction showing step pulse reflection at impedance discontinuity in PCB via structure
Time Domain Reflectometry (TDR): Reconstructing the impedance profile from the reflection waveform of a step pulse

Theory and Physics

Overview and Principle of TDR

🧑‍🎓

What does a TDR measure? How is it related to electromagnetic analysis?

🎓

Simply put, it's a measurement method that injects a step wave—a pulse with a steep rise—into a transmission line and observes the time-domain waveform of the reflected wave. Since signals reflect at locations with impedance discontinuities, analyzing the amplitude and arrival time of the reflected wave reveals "where" and "what kind" of discontinuity exists.

🧑‍🎓

I see, it's similar to radar in principle. But how does that connect to CAE?

🎓

It's essential for design verification of vias and connectors in high-speed boards. For example, in PCIe Gen5/6 or DDR5 routing, the impedance discontinuity of a single via can ruin signal quality. The biggest benefit is being able to predict TDR waveforms with 3D FEM analysis and discover issues before prototyping.

🧑‍🎓

Finding problems before prototyping is huge! In what specific situations is it used?

🎓

Typical applications include:

  • PCB Trace Characteristic Impedance Verification: Checking if it stays within ±5% of design values like 50 Ω or 100 Ω differential
  • Via Discontinuity Evaluation: Optimizing stub length and anti-pad diameter of through-hole vias
  • Connector Impedance Profile: Identifying capacitive discontinuities at solder joints
  • Locating Break Points in Cables/Harnesses: Diagnostics for large-scale harnesses in automotive or aerospace applications

Reflection Coefficient and Transmission Line Theory

🧑‍🎓

Can you explain the mechanism of reflection with equations?

🎓

When the load impedance is $Z_L$ relative to the transmission line's characteristic impedance $Z_0$, the reflection coefficient $\rho$ (Greek letter "rho") is defined as:

$$ \rho = \frac{Z_L - Z_0}{Z_L + Z_0} $$
🎓

Let's organize what the value of $\rho$ means:

  • $\rho = 0$: Perfect match ($Z_L = Z_0$). No reflection. Ideal state.
  • $\rho = +1$: Open circuit ($Z_L = \infty$). Total reflection in-phase with the incident wave.
  • $\rho = -1$: Short circuit ($Z_L = 0$). Total reflection out-of-phase with the incident wave.
  • $0 < \rho < 1$: Inductive discontinuity. TDR waveform steps upward.
  • $-1 < \rho < 0$: Capacitive discontinuity. TDR waveform steps downward.
🧑‍🎓

So if the TDR waveform jumps up, it's a discontinuity towards higher impedance, and if it drops down, it's towards lower impedance. That's easy to understand!

Impedance Profile Reconstruction

🧑‍🎓

Can you determine the actual impedance value from the reflection coefficient?

🎓

Absolutely. If you read the reflection coefficient $\rho(t)$ at time $t$ from the reflection waveform, the impedance at that location can be reconstructed using the following formula:

$$ Z(t) = Z_0 \cdot \frac{1 + \rho(t)}{1 - \rho(t)} $$
🎓

Here, $\rho(t)$ is obtained empirically as the ratio of the reflected wave $V_r$ to the incident wave $V_i$:

$$ \rho(t) = \frac{V_r(t)}{V_i} $$
🎓

For example, when measuring with a $Z_0 = 50\,\Omega$ coaxial cable and obtaining $\rho = 0.2$ at a certain location:

$$Z = 50 \times \frac{1 + 0.2}{1 - 0.2} = 50 \times \frac{1.2}{0.8} = 75\,\Omega$$

This tells you there is a 75 Ω discontinuity. This is a common pattern seen in automotive antenna cables in practice. It instantly reveals connection errors between 50 Ω and 75 Ω systems.

🧑‍🎓

The time axis corresponds to spatial position, right? Since it's round-trip time, do we halve the distance?

🎓

Exactly. The distance $d$ to the discontinuity point is calculated from the propagation velocity $v_p$ and the round-trip time $\Delta t$:

$$ d = \frac{v_p \cdot \Delta t}{2} = \frac{c}{2\sqrt{\varepsilon_{\text{eff}}}} \cdot \Delta t $$
🎓

Here, $c$ is the speed of light, and $\varepsilon_{\text{eff}}$ is the effective permittivity. For an FR4 substrate, $\varepsilon_{\text{eff}} \approx 3.8$, so the propagation speed is about 51% of the speed of light. A 1 ns round-trip delay corresponds to a distance of about 76 mm.

Relationship between Telegrapher's Equations and TDR

🧑‍🎓

I'd like to delve deeper into the physics of transmission lines. What are the governing equations?

🎓

Transmission lines are described by Telegrapher's equations. Using per-unit-length inductance $L$, capacitance $C$, resistance $R$, and conductance $G$:

$$ \frac{\partial V}{\partial z} = -R \cdot I - L \frac{\partial I}{\partial t} $$
$$ \frac{\partial I}{\partial z} = -G \cdot V - C \frac{\partial V}{\partial t} $$
🎓

In the lossless case ($R = G = 0$), this system of equations becomes a wave equation propagating at velocity $v_p = 1/\sqrt{LC}$. The characteristic impedance is:

$$ Z_0 = \sqrt{\frac{L}{C}} $$
🎓

TDR utilizes the phenomenon of this wave reflecting at discontinuity points. In CAE simulation, the mainstream approach is to directly solve Maxwell's equations with 3D FEM/FDTD to obtain S-parameters, then calculate the TDR waveform from them. Telegrapher's equations are a 1D approximation, but 3D structures like vias and connectors cannot be represented by 1D models, so full 3D analysis is necessary.

Rise Time and Spatial Resolution

🧑‍🎓

How is the "resolution" of TDR determined? It seems like a sharper pulse would allow seeing finer details...

🎓

Sharp intuition. The spatial resolution $\Delta d$ of TDR is determined by the step pulse's rise time $t_r$ (10% to 90%):

$$ \Delta d = \frac{v_p \cdot t_r}{2} $$
🎓

Let's look at some concrete examples:

Rise Time $t_r$Spatial Resolution (FR4)Corresponding Frequency Bandwidth
100 psApprox. 7.7 mm~3.5 GHz
35 psApprox. 2.7 mm~10 GHz
15 psApprox. 1.2 mm~23 GHz

Verifying PCIe Gen5 (32 GT/s) routing requires $t_r \leq 20$ ps. Resolving via stub lengths (around 0.5–2 mm) requires resolution in this class. In simulation, a major advantage over measurement is the ability to freely set the rise time as a design parameter.

Summary of Core TDR Equations
  • Reflection coefficient $\rho = (Z_L - Z_0)/(Z_L + Z_0)$: Represents the magnitude and polarity of impedance discontinuity. Larger $|\rho|$ means stronger reflection, positive sign indicates inductive discontinuity (Z increasing direction), negative sign indicates capacitive discontinuity (Z decreasing direction).
  • Impedance reconstruction $Z(t) = Z_0(1+\rho)/(1-\rho)$: Calculates the impedance value at a location from the reflection amplitude in the TDR waveform. This "visualizes" the spatial distribution of impedance along the transmission line.
  • Distance conversion $d = v_p \Delta t / 2$: Converts round-trip delay time to one-way distance. Propagation velocity $v_p$ depends on the medium's effective permittivity, making accurate dielectric constant data for the substrate material essential.
  • Characteristic impedance $Z_0 = \sqrt{L/C}$: Determined by the ratio of per-unit-length inductance and capacitance. Controlled by cross-sectional shape (trace width, dielectric thickness, ground distance).
Assumptions and Applicability Limits
  • TEM (Transverse Electromagnetic) approximation: Accuracy degrades at high frequencies for quasi-TEM lines like microstrip, making frequency dispersion non-negligible.
  • Single reflection assumption: The simple impedance reconstruction above only holds when multiple reflections can be ignored. The presence of multiple closely spaced discontinuities degrades accuracy due to multiple reflection effects.
  • Lossless approximation: In lossy transmission lines, pulses attenuate during propagation, increasing the apparent rise time and reducing resolution.
  • Linearity: When nonlinear devices (e.g., ESD protection elements) are included, the superposition principle does not hold, and normal TDR interpretation is not applicable.
Coffee Break Trivia Corner

The Origin of TDR—History of Adapting Radar Technology for Transmission Line Diagnostics

The principle of TDR is exactly the same as radar: "pulse transmission → reflection reception → distance calculation from arrival time." In the 1960s, Hewlett-Packard (now Keysight) released the first commercial TDR, the "HP 1415A," enabling the first numerical location of breaks and shorts in coaxial cables. Initially, its main use was cable maintenance for telecom operators, but it evolved into a PCB SI (Signal Integrity) verification tool with the spread of GHz-band digital design in the 1990s. Today, measurement TDR instruments have reached bandwidths of 70 GHz and above, with 100 μ

関連トピック(Cross-topics)