Transmission-Line Models and Wave Equations
Transmission lines are the bridge from circuit theory to field theory. When a wire pair, coaxial cable, or microstrip is electrically short, the entire interconnect can be approximated by a lumped impedance. When its physical length is a significant fraction of wavelength, voltage and current vary along the structure, propagation delay matters, and reflections can dominate behavior. That is the moment when a wire stops being a simple node connection and becomes a distributed electromagnetic system.
The transmission-line model keeps the circuit variables and , but lets them depend on position. Its distributed parameters , , , and summarize the fields around the conductors per unit length. This page develops the telegrapher equations, wave propagation, characteristic impedance, and the lossless-line formulas used later for standing waves and matching.
Figure: A coaxial line makes distributed inductance, capacitance, impedance, and guided waves tangible. Image: Wikimedia Commons, Tkgd2007, CC BY 3.0.
Definitions
A uniform transmission line is modeled by per-unit-length parameters:
| Parameter | Units | Meaning |
|---|---|---|
| conductor resistance per unit length | ||
| H/m | series inductance per unit length | |
| S/m | shunt conductance through dielectric per unit length | |
| F/m | shunt capacitance per unit length |
The phasor-domain telegrapher equations are
Combining them gives wave equations:
where
The characteristic impedance is
For a lossless line, and , so
The general lossless voltage and current phasors are
The superscript denotes a wave traveling in the direction; the superscript denotes a wave traveling in the direction.
The current expression is not symmetric with the voltage expression because a backward voltage wave carries current in the negative direction. This sign convention is the source of many later formulas, including the reflection coefficient and input impedance. A forward wave alone has ; a backward wave alone has when current is defined positive in the direction.
Key results
The telegrapher equations come from applying Kirchhoff voltage and current laws to a differential segment and then taking the limit . Although the derivation looks like circuit theory, the parameters represent electromagnetic storage and loss:
per unit length for instantaneous energy in the lossless case.
When a line is terminated by its characteristic impedance , the load absorbs the incident wave without reflection. The line then looks infinitely long from the source end because no returning wave reports the load or line end. This idea is the basis of matched interconnects, microwave terminations, and many measurement systems.
The wavelength on a line is
Electrical length is usually more important than physical length:
A cm trace is electrically short at low frequency and electrically long at microwave frequency. The rough engineering rule is that distributed effects become important when is not negligible compared with , often when for phase-sensitive work.
For a lossless microstrip or coaxial line, and depend on geometry and material. The same telegrapher equations apply after the structure is summarized by its effective and , or by an effective dielectric constant.
The distributed model is also an energy model. In a small section , magnetic energy is associated with and electric energy with . A traveling wave moves by exchanging these stored forms while carrying power forward. In a lossless matched line the average electric and magnetic stored energies are equal over a cycle, just as they are for a uniform plane wave in a lossless medium.
A lossy line changes the interpretation of . It can become complex because voltage and current are no longer exactly in phase for a single traveling wave. The attenuation constant accounts for conductor heating through and dielectric leakage through . At high frequency, practical lines may also have frequency-dependent and , producing dispersion and waveform distortion even when the telegrapher form still applies locally.
The distributed viewpoint also changes how "ground" and "return current" are understood. A signal on a two-conductor line is not carried by one conductor alone; the electromagnetic field occupies the space between and around conductors, and the return path shapes both and . In microstrip, for example, some field exists in the substrate and some in air, so an effective permittivity is used rather than simply the substrate permittivity. This is why layout geometry is part of the circuit at high frequency.
A line can be electrically long even in ordinary digital hardware. The fastest spectral content of an edge, not just the clock frequency, sets the shortest relevant wavelength. Controlled impedance, continuous return planes, and careful transitions keep the distributed parameters predictable so the telegrapher model remains useful.
Visual
The transmission-line diagram starts from the per-unit-length equivalent circuit and derives the telegrapher equations through KVL and KCL. The wave-equation layer then exposes the propagation constant, attenuation, phase, characteristic impedance, delay, wavelength, and matching condition. The labeled branches make the energy-storage roles of and and the loss roles of and explicit.
| Case | Main behavior | ||
|---|---|---|---|
| General lossy | attenuation plus phase | ||
| Lossless | no attenuation, pure delay | ||
| Low-loss | with small | nearly real | weak attenuation |
| Matched load | same line | no reflected wave |
Worked example 1: Lossless line parameters
Problem: A lossless transmission line has and . Find , phase velocity, wavelength at , and electrical length of a m section.
Step 1: Compute characteristic impedance:
Step 2: Compute phase velocity:
Step 3: Compute wavelength:
Step 4: Compute electrical length:
Check: The line is much longer than m, so distributed effects cannot be ignored.
Worked example 2: Time delay and phase shift
Problem: A m cable has phase velocity . A sinusoid enters the cable. Find the one-way delay and phase shift.
Step 1: Delay is length divided by phase velocity:
Step 2: Period is
Step 3: The delay is cycles. Convert to phase:
Step 4: Phase is periodic, so the observed sinusoidal phase shift is equivalent to
Check: The absolute propagation delay is still ns. The reduced phase only describes a steady sinusoid, not the arrival time of a modulation envelope.
Code
import numpy as np
L_per_m = 250e-9
C_per_m = 100e-12
f = 100e6
length = 0.75
Z0 = np.sqrt(L_per_m / C_per_m)
vp = 1 / np.sqrt(L_per_m * C_per_m)
wavelength = vp / f
beta = 2 * np.pi / wavelength
theta_deg = np.rad2deg(beta * length)
print(f"Z0 = {Z0:.2f} ohms")
print(f"vp = {vp:.3e} m/s")
print(f"lambda = {wavelength:.3f} m")
print(f"electrical length = {theta_deg:.1f} degrees")
Common pitfalls
- Treating a long line as a lumped wire because its dc resistance is small. Propagation delay and reflection are separate from resistance.
- Confusing with the actual input impedance. is a property of the line; input impedance also depends on load and length.
- Forgetting that the current expression has a minus sign for the reflected wave.
- Using free-space wavelength when the wave travels in a dielectric line.
- Assuming a matched line means no voltage or current. It means no reflected wave; power still travels to the load.
- Applying lossless formulas to a line where conductor or dielectric loss is important.
- Forgetting that , , , and are per-unit-length values. Multiplying or dividing by length incorrectly changes units and physical meaning.
Connections
- Waves, phasors, and spectrum for sinusoidal traveling-wave notation.
- Reflections, Smith chart, and matching for load effects.
- Transmission-line transients and power for bounce diagrams and time-domain behavior.
- Plane waves in media for the field analogue of guided propagation.