Reflections, Smith Chart, and Matching
Reflections occur whenever a traveling wave reaches a discontinuity whose impedance differs from the wave impedance it has been carrying. On a transmission line, that discontinuity may be a load, a connector, a width change, a via, or another line section. The reflected wave interferes with the incident wave and creates standing-wave patterns, input-impedance transformations, and sometimes severe power-transfer loss.
Impedance matching is the practical response: choose a network or line section so the source sees the intended impedance and the load receives the intended power. Ulaby treats reflection coefficients, standing-wave ratio, special line lengths, the Smith chart, lumped matching, and single-stub matching. This page organizes those ideas in formula form while keeping the physical picture visible.
Figure: The Smith chart turns reflection coefficients and impedance matching into a navigable geometric construction. Image: Wikimedia Commons, Cannabic, CC BY-SA 4.0.
Definitions
For a lossless line terminated by load , the voltage reflection coefficient at the load is
The reflected and incident voltage amplitudes at the load satisfy
The standing-wave ratio is
The input impedance looking into a lossless line of length terminated by is
Special cases are especially useful:
The normalized load impedance is
The Smith chart is a plot of constant resistance and reactance circles in the plane. Moving away from the load toward the generator rotates clockwise on the chart for the common impedance-chart convention.
Although computer tools often replace manual chart use, the Smith chart is still valuable because it shows several quantities at once. The distance from the center is , the angle gives reflection phase, circles around the center correspond to constant SWR, and rotations correspond to lossless line lengths. A matching problem becomes a geometric task: move along a constant- circle until a realizable series, shunt, or stub element can bring the point to the chart center.
Key results
Reflection magnitude indicates mismatch severity, while reflection phase locates standing-wave maxima and minima. The voltage magnitude along a lossless line can be expressed as
where is often taken at the load and points toward the generator. Constructive interference gives maxima; destructive interference gives minima.
The load absorbs all incident power only when , which occurs when . A short circuit has , an open circuit has , and a purely reactive load has , meaning no net time-average power is dissipated in the load.
A quarter-wave transformer matches a real load to a real line impedance by inserting a section with characteristic impedance
This match is narrowband because it relies on at the design frequency. Lumped networks are compact at lower frequencies, while stubs are natural at microwave frequencies where line sections are easier to fabricate than ideal inductors and capacitors.
For admittance matching, use
On the Smith chart, impedance-to-admittance conversion corresponds to a rotation in the reflection-coefficient plane.
Single-stub matching usually works in admittance form because a shunt stub adds susceptance directly. The design idea is to move from the load along the line until the normalized admittance has conductance , then add a short- or open-circuited stub whose susceptance cancels the remaining imaginary part. There are generally two possible stub locations within a half wavelength, and the better one depends on layout, bandwidth, and whether open or short stubs are easier to fabricate.
Lumped matching is attractive when the required inductors and capacitors behave close to ideal components. At microwave frequencies, however, component parasitics and package dimensions can be comparable to wavelength effects. Distributed matching with line sections then becomes more predictable because it uses the propagation physics directly rather than fighting it.
Input impedance transformations also explain why moving a measurement reference plane changes the impedance reported by a network analyzer. The physical load has not changed, but the section of line between the calibration plane and the load rotates the reflection coefficient. Calibration, de-embedding, and fixture design are therefore part of microwave measurement rather than administrative details.
Bandwidth should be judged against the application, not against the existence of a mathematical match at one frequency. A high-Q matching network can produce a deep narrow reflection minimum but perform poorly across a modulated signal bandwidth. A deliberately less perfect match with flatter response may deliver more useful system performance.
Return loss is another way to report mismatch:
Large positive return loss means small reflection. For example, corresponds to dB return loss and percent reflected power. Return loss is often easier to read on network-analyzer plots than raw complex reflection coefficient, but it hides reflection phase, which is still needed for matching-network design.
Voltage maxima and minima are also measurement tools. The distance from a voltage minimum to the load encodes the phase of , while SWR gives its magnitude. Before vector network analyzers were routine, slotted-line measurements used this standing-wave geometry to infer unknown load impedances.
For passive loads on a lossless line, all physically valid reflection coefficients lie inside or on the unit circle. A calculated point outside the Smith chart's outer circle usually means an algebra or normalization error unless an active load is intentionally being modeled.
Visual
This matching diagram shows the full impedance-matching pipeline from load impedance to reflection coefficient, standing waves, reference-plane transformation, Smith-chart operations, and physical matching networks. The subgraph separates lumped, quarter-wave, and stub methods and routes all of them through bandwidth and parasitic checks. The diagram makes the shortcut goal explicit: a successful match is a reduced over the intended band, not just a single algebraic point.
| Load | SWR | Power behavior | ||
|---|---|---|---|---|
| 0 | 1 | all incident power delivered | ||
| Short | 1 | infinite | no load dissipation | |
| Open | 1 | infinite | no load dissipation | |
| Pure reactance | phase only | 1 | infinite | stores and returns energy |
| Real mismatch | between 0 and 1 | finite | partial delivery |
Worked example 1: Reflection coefficient and SWR
Problem: A lossless line is terminated by . Find and SWR.
Step 1: Substitute into the reflection formula:
Step 2: Divide complex numbers by multiplying numerator and denominator by :
Step 3: Expand the numerator:
Step 4: Denominator:
Thus
Step 5: Magnitude:
Step 6: SWR:
Check: Since , the passive load absorbs some power. SWR above 1 indicates mismatch.
Worked example 2: Quarter-wave transformer design
Problem: A line must feed a real load at . The transformer section has phase velocity . Find the transformer impedance and physical length.
Step 1: For a quarter-wave transformer,
Step 2: Wavelength on the transformer line:
Step 3: Quarter wavelength:
Step 4: Verify input impedance at the design frequency:
Check: The source-side line sees its own , so at the design frequency.
Code
import numpy as np
Z0 = 50
ZL = 100 - 1j * 50
Gamma = (ZL - Z0) / (ZL + Z0)
SWR = (1 + abs(Gamma)) / (1 - abs(Gamma))
print(f"Gamma = {Gamma.real:.3f} {Gamma.imag:+.3f}j")
print(f"|Gamma| = {abs(Gamma):.3f}")
print(f"SWR = {SWR:.2f}")
f = 1e9
vp = 2e8
Z0t = np.sqrt(50 * 200)
length = vp / f / 4
print(f"Quarter-wave transformer: Z0t={Z0t:.1f} ohms, length={length:.3f} m")
Common pitfalls
- Using over with normalized impedance already substituted incorrectly. If , then .
- Confusing reflection coefficient for voltage with reflected power fraction. Reflected power fraction is for a lossless line.
- Assuming a quarter-wave transformer matches complex loads directly. The simple formula requires a real load at the transformer input plane.
- Forgetting that Smith-chart rotation depends on whether you move toward the generator or toward the load.
- Ignoring bandwidth. A match can be exact at one frequency and poor nearby.
- Treating a high SWR as automatically destructive. The consequence depends on source tolerance, line loss, voltage breakdown, and power level.
- Forgetting that a perfect match at the load plane can be spoiled by connectors, vias, bends, or transitions placed between the matching network and the actual device.
Connections
- Transmission-line models and wave equations for , , and traveling waves.
- Transmission-line transients and power for time-domain reflections.
- Wave reflection, fibers, and waveguides for the plane-wave analogue of impedance mismatch.
- Complex functions and analyticity for complex arithmetic behind .