Reflection, Transmission, Fibers, and Waveguides
When a plane wave meets a material boundary, Maxwell boundary conditions determine how much field reflects, how much transmits, and in what direction the transmitted wave travels. The same physical issue appeared earlier on transmission lines: a wave carrying one impedance reaches another impedance and partially returns. In space, impedance mismatch is joined by refraction, polarization dependence, total internal reflection, and Brewster-angle behavior.
Guided waves add geometry. Optical fibers guide light by total internal reflection or modal confinement. Metallic waveguides guide microwave fields with conducting boundaries and support discrete TE and TM modes. Cavities are closed waveguides that store energy at resonant frequencies. These topics show how fields, materials, and boundaries become engineered structures.
Figure: Snell's law turns an everyday refraction scene into a boundary-condition calculation. Image: Wikimedia Commons, Cristan and Sawims, public domain.
Definitions
For normal incidence from medium 1 to medium 2, the electric-field reflection and transmission coefficients are
and
for the transmitted electric field just across the boundary. For lossless media, the time-average reflected power fraction is .
Snell's law is
where for simple media. For nonmagnetic dielectrics, .
Total internal reflection occurs for incidence from higher refractive index to lower refractive index when
For parallel polarization at a dielectric interface, the Brewster angle satisfies
for nonmagnetic lossless media.
Rectangular metallic waveguides have cross-section . Their cutoff wavenumber for mode indices is
The cutoff frequency is
TE means the electric field has no component in the propagation direction, while TM means the magnetic field has no component in the propagation direction. TEM waves, like the ideal coaxial-line mode, require at least two conductors and have neither electric nor magnetic longitudinal components. A hollow single-conductor rectangular waveguide cannot support a true TEM mode because the boundary conditions and field topology do not allow the required static transverse potential solution.
Key results
At oblique incidence, perpendicular and parallel polarizations have different reflection coefficients. The boundary conditions must be applied to tangential and , producing Fresnel coefficients. The qualitative outcomes are:
- Reflection usually depends on angle and polarization.
- Transmitted angle follows Snell's law in lossless media.
- Above critical angle, transmitted power normal to the interface vanishes in the second medium, though an evanescent field exists near the boundary.
- At Brewster angle for parallel polarization, reflection can be zero for ideal lossless dielectrics.
For optical fibers, the numerical aperture for a step-index fiber in air is
where is core index and is cladding index. It describes the acceptance cone for guided rays.
For rectangular waveguides, propagation occurs only when for a given mode. The propagation constant along the guide is
where . Below cutoff, is imaginary and the mode decays instead of carrying power down the guide. The dominant mode in a standard rectangular guide with is usually TE because it has the lowest cutoff:
Cavity resonators result when conducting walls close the guide, forcing standing-wave conditions in all dimensions. Their quality factor measures stored energy relative to energy lost per radian.
Waveguide dispersion is another key difference from ordinary plane waves in unbounded media. The phase velocity along the guide is
and exceeds the material wave speed for propagating TE/TM modes, while the group velocity is lower. This does not violate relativity because information and energy move with group velocity, not phase velocity. Close to cutoff, group velocity becomes small and fields are strongly dispersive, so waveguides are usually operated comfortably above the dominant-mode cutoff but below the next mode's cutoff.
For fibers, ray optics gives intuition through total internal reflection, but full fiber analysis is modal. A single-mode fiber supports only the fundamental mode at a given wavelength and core size, reducing modal dispersion. A multimode fiber supports many paths or modes, which can broaden pulses and limit data rate unless graded-index design or digital compensation is used.
At a perfect electric conductor, the tangential electric field at the surface is zero. This boundary condition is what forces standing transverse field patterns in metallic waveguides. Surface currents on the walls support the required discontinuity in tangential . Real conductors have finite conductivity, so fields penetrate slightly and wall loss gives attenuation even above cutoff.
The transmission-line analogy remains useful but incomplete. Both lines and waveguides have propagation constants and characteristic impedances, yet waveguide impedance depends on mode type and frequency. Near cutoff, waveguide impedance can become very large or very small depending on TE or TM mode, which strongly affects coupling probes, irises, and transitions.
Mode excitation depends on source symmetry. A probe, loop, aperture, or transition couples efficiently only to modes with compatible field patterns. If the source field is orthogonal to a mode pattern over the cross section, coupling can be weak even when the frequency is above cutoff. Practical waveguide components therefore shape fields as carefully as they shape metal boundaries.
Single-mode operation is often a design goal because multiple propagating modes travel with different phase and group velocities. If more than one mode is excited, power can arrive with different delays or field patterns, complicating measurements and communication channels. Waveguide dimensions are therefore chosen to keep the operating band above the dominant cutoff and below the next cutoff.
Visual
This diagram separates boundary scattering from guided-wave structure. The top pipeline applies electromagnetic boundary conditions to produce Fresnel reflection, transmission, refraction, and possible evanescent fields. The fiber and rectangular-waveguide subgraphs then show how those boundary facts become modal guidance, cutoff conditions, dominant modes, and dispersion.
| Phenomenon | Condition | Result |
|---|---|---|
| Normal reflection | partial reflected wave | |
| Total internal reflection | , | guided or evanescent behavior |
| Brewster angle | parallel polarization, ideal dielectrics | zero reflected parallel field |
| Waveguide cutoff | no propagating mode | |
| Cavity resonance | standing waves in closed guide | discrete resonant frequencies |
Worked example 1: Normal incidence from air to glass
Problem: A normally incident plane wave in air strikes lossless nonmagnetic glass with . Find , reflected power fraction, and transmitted electric-field coefficient.
Step 1: Intrinsic impedance in air is
Step 2: For nonmagnetic glass,
Step 3: Reflection coefficient:
Step 4: Reflected power fraction:
Step 5: Electric-field transmission coefficient:
Check: The transmitted electric-field amplitude is smaller, but power accounting also includes the impedance change.
Worked example 2: TE10 cutoff in a rectangular waveguide
Problem: An air-filled rectangular waveguide has cm and cm. Find the TE cutoff frequency and determine whether GHz propagates.
Step 1: For TE,
Step 2: Convert :
Step 3: Substitute:
Step 4: Compare GHz with cutoff:
Therefore TE propagates.
Step 5: Optional guide wavelength. First compute free-space wavelength:
For TE modes,
Since , propagation is above cutoff but phase behavior differs from free-space propagation.
Check: This dimension is the common WR-90 broad wall, whose useful band includes X-band near 10 GHz.
Code
import numpy as np
c = 299_792_458.0
def normal_incidence_gamma(er1, er2, mur1=1.0, mur2=1.0):
eta1 = np.sqrt(mur1 / er1)
eta2 = np.sqrt(mur2 / er2)
return (eta2 - eta1) / (eta2 + eta1)
def rectangular_cutoff(a, b, m, n, eps_r=1.0, mu_r=1.0):
vp = c / np.sqrt(eps_r * mu_r)
return 0.5 * vp * np.sqrt((m / a)**2 + (n / b)**2)
print("Gamma air to er=4:", normal_incidence_gamma(1, 4))
print("TE10 cutoff:", rectangular_cutoff(0.02286, 0.01016, 1, 0), "Hz")
Common pitfalls
- Using the transmission-line reflection coefficient formula with but forgetting that plane waves use intrinsic impedance .
- Assuming transmitted field coefficient squared is transmitted power fraction. Power depends on impedance and angle.
- Forgetting polarization dependence at oblique incidence.
- Applying total internal reflection when the wave goes from lower index to higher index. It requires incidence from higher index.
- Treating waveguide cutoff as material absorption. Below cutoff the mode is evanescent even in a perfectly conducting, lossless guide.
- Calling TE and TM modes by their electric-field direction relative to a wall. TE/TM are defined relative to the propagation direction.
- Assuming a waveguide can carry any low frequency if the source is strong enough. Below cutoff, increasing source power does not create a propagating mode of that type.
Connections
- Plane waves, loss, polarization, and power for , , polarization, and Poynting vector.
- Reflections, Smith chart, and matching for the guided-wave impedance analogy.
- Maxwell equations for time-varying fields for boundary conditions.
- Antennas, radiation, and arrays for apertures and radiation from guided structures.