Plane Waves, Loss, Polarization, and Power
Uniform plane waves are the simplest full electromagnetic waves. The fields are transverse to the direction of propagation, the wavefronts are infinite planes, and the field variation depends on one spatial coordinate. Real antennas and apertures do not create perfect plane waves everywhere, but far from a source or over a small region of a large wavefront, the plane-wave model is often the right local approximation.
This page develops plane waves in lossless and lossy media, polarization, skin depth, and electromagnetic power density. These ideas connect transmission-line wave impedance to free-space and material intrinsic impedance, and they prepare for reflection, refraction, waveguides, antennas, and radar.
Figure: The electromagnetic spectrum ties circuit-scale oscillations, radio links, optics, and thermal radiation into one continuum. Image: Wikimedia Commons, Inductiveload, public domain.
Definitions
For a time-harmonic uniform plane wave traveling in with electric field polarized in ,
where
The magnetic field is
where is the intrinsic impedance:
The propagation constant is
For a lossless medium ,
For a good conductor ,
and skin depth is
The time-average Poynting vector is
It gives average power flow density in W/m.
For a wave traveling in an arbitrary direction , the field directions must satisfy , , and for a lossless medium. This compact vector relation is safer than memorizing separate , , and cases. It also makes polarization calculations easier because the electric-field vector can be decomposed into any two orthogonal transverse components.
Key results
The wave equation in a source-free homogeneous medium follows from the phasor Maxwell curl equations:
with the same form for . A uniform plane wave is transverse:
and the propagation direction is set by
In a lossless medium, is real, so and are in time phase. The average power density magnitude is
for peak phasor amplitude. In a lossy medium, is complex and the fields are not exactly in phase. Power flow decays as because power is proportional to field magnitude squared.
Polarization describes the path traced by the electric-field vector at a fixed point. If orthogonal components have zero or phase difference, polarization is linear. If equal magnitudes have phase difference, it is circular. The general case is elliptical:
The sign of and the viewing convention determine right-hand or left-hand circular polarization. The important engineering rule is to state the convention being used.
Lossy media are often characterized by loss tangent,
Low-loss dielectrics have , so conduction current is much smaller than displacement current. Good conductors have , so conduction dominates. This ratio is more informative than conductivity alone because the same material can behave differently as frequency changes.
The complex permittivity notation packages conduction loss into an effective material parameter:
for the convention. Then . This is a bookkeeping device, but it helps compare dielectric and conductive loss in wave equations and reflection formulas.
Polarization mismatch affects received power. If a receiving antenna is linearly polarized along and the incoming electric field is polarized along , the received power is multiplied by for ideal linear polarizations. Orthogonal linear polarizations ideally deliver zero power, while a circularly polarized wave loses half its power into a linearly polarized antenna. Real antennas add axial-ratio and cross-polarization imperfections.
In lossy propagation, phase velocity, attenuation, and impedance can all be frequency dependent. A narrowband sinusoid may be described by one , but a pulse contains many frequencies, each with its own attenuation and phase delay. The resulting waveform distortion is dispersion, and it is important in soil propagation, seawater communication, and broadband dielectric materials.
Attenuation is often reported in dB per meter rather than Np per meter. For field amplitudes,
For power, the same numerical dB loss over distance results from because power uses a ratio. Stating whether is a field attenuation constant or a power-loss slope prevents double-counting loss.
A final consistency check is the direction of average power flow. For a passive medium with a wave attenuating in , should point in and decrease with . If the calculated points backward, the assumed magnetic-field direction or propagation sign is likely reversed.
Visual
| Medium | Condition | behavior | ||
|---|---|---|---|---|
| Lossless dielectric | 0 | real | ||
| Low-loss dielectric | small | near lossless value | nearly real | |
| Good conductor | approximately | complex, small magnitude | ||
| Free space | 0 |
Worked example 1: Plane wave in air
Problem: A MHz uniform plane wave in air has peak electric-field amplitude and travels in with along . Find wavelength, , magnetic-field amplitude, and average power density.
Step 1: In air, take :
Step 2: Phase constant:
Step 3: Intrinsic impedance of air is approximately , so
Step 4: Direction: is and propagation is , so must be because .
Step 5: Average power density:
Check: Units are W/m, and the power direction is .
Worked example 2: Skin depth in copper
Problem: Estimate the skin depth in copper at MHz. Use and .
Step 1: For a good conductor,
Step 2: Substitute:
Step 3: Compute the product inside the square root:
Step 4: Square root:
Step 5: Skin depth:
Check: Radio-frequency currents in copper are confined to a thin surface layer, so tens of micrometers at 10 MHz is plausible.
Code
import numpy as np
import matplotlib.pyplot as plt
mu0 = 4 * np.pi * 1e-7
eps0 = 8.8541878128e-12
sigma = 5.8e7
freq = np.logspace(3, 10, 400)
alpha = np.sqrt(np.pi * freq * mu0 * sigma)
delta = 1 / alpha
plt.loglog(freq, delta)
plt.xlabel("frequency (Hz)")
plt.ylabel("skin depth in copper (m)")
plt.grid(True, which="both")
plt.show()
Common pitfalls
- Forgetting that , , and propagation direction form a right-handed triad for a forward plane wave.
- Using rms formulas with peak phasors or peak formulas with rms phasors. The factor of depends on convention.
- Treating attenuation of field amplitude and attenuation of power as the same exponent. Power decays as .
- Calling any two-component field circularly polarized. Circular polarization requires equal magnitudes and a quadrature phase difference.
- Applying good-conductor approximations when is not much larger than .
- Assuming plane waves have longitudinal field components. Uniform plane waves in homogeneous source-free media are transverse.
- Comparing penetration depths at different frequencies without noting that decreases as frequency increases in good conductors.
Connections
- Maxwell equations for time-varying fields for the wave-equation derivation.
- Waves, phasors, and spectrum for , , , and phasor notation.
- Wave reflection, fibers, and waveguides for what happens at material boundaries.
- Antennas, radiation, and arrays for far-field waves from sources.