Fiber optic communication works because light — a form of electromagnetic (EM) radiation — can be guided through a strand of glass and used to carry digital information over vast distances. To really understand fiber optics, you need to understand the fundamental characteristics of electromagnetic radiation itself: what it is, how it behaves, and why those behaviors matter for real-world networking.
This article breaks down EM radiation from first principles, using simple language, diagrams, and practical networking examples.
What Is Electromagnetic Radiation?
Electromagnetic radiation is energy that travels through space (or a medium like glass) as coupled electric and magnetic fields oscillating perpendicular to each other and to the direction of travel. It does not require a physical medium to travel — it can move through the vacuum of space, but it can also travel through transparent materials like glass or air, which is exactly what happens inside an optical fiber.
Light, radio waves, X-rays, and microwaves are all electromagnetic radiation — they differ only in wavelength and frequency, as we’ll explore in the next article on the electromagnetic spectrum.
Core Characteristics of Electromagnetic Radiation
1. Wave-Particle Duality
EM radiation behaves both as a wave (with wavelength, frequency, and amplitude) and as a stream of discrete energy packets called photons. In fiber optics:
- The wave model explains phenomena like interference, dispersion, and polarization.
- The particle (photon) model explains how photodetectors convert light into electrical current (each photon striking a photodiode can free an electron).
2. Speed
In a vacuum, all electromagnetic radiation travels at the speed of light, c ≈ 299,792,458 m/s. However, inside a medium like glass, light slows down. This is described by the refractive index (n):
v = c / n
For typical fiber optic glass, n ≈ 1.45–1.48, meaning light travels at roughly two-thirds the speed it would in a vacuum — around 200,000 km/s. This directly affects propagation delay (latency) in long fiber links.
3. Amplitude
Amplitude describes the strength or intensity of the wave. In fiber optics, amplitude corresponds to the optical power of the signal, typically measured in milliwatts (mW) or decibel-milliwatts (dBm). Amplitude naturally decreases as light travels through fiber due to attenuation (covered in a dedicated article).
4. Frequency and Wavelength
As covered in the previous article, frequency and wavelength are inversely related through c = λf. Different wavelengths of light interact differently with glass, which is why specific wavelength “windows” (850, 1310, 1550 nm) are chosen for fiber communication.
5. Polarization
Polarization describes the orientation of the oscillating electric field. Light can be:
- Linearly polarized — oscillating in a single plane
- Circularly or elliptically polarized — the oscillation plane rotates as the wave travels
Polarization matters in fiber optics because of a phenomenon called Polarization Mode Dispersion (PMD), where slight imperfections in the fiber cause different polarization components of a signal to travel at slightly different speeds, spreading out (dispersing) the signal over long distances — a major concern in high-speed, long-haul single-mode fiber links.
6. Reflection and Refraction
When light hits a boundary between two materials with different refractive indices, part of it reflects and part refracts (bends). This is the entire basis of how fiber optic cable works:
- The fiber core has a higher refractive index than the surrounding cladding.
- Light traveling at the correct angle undergoes total internal reflection at the core-cladding boundary, bouncing along the fiber core without escaping.
graph LR
A[Light Source: Laser/LED] --> B[Enters Fiber Core<br/>Higher Refractive Index]
B --> C{Angle of Incidence<br/>vs Critical Angle}
C -->|Greater than critical angle| D[Total Internal Reflection<br/>Light stays in core]
C -->|Less than critical angle| E[Light Escapes into Cladding<br/>Signal Loss]
D --> F[Signal travels to receiver]7. Absorption
Some of the light energy traveling through fiber is absorbed by the glass material itself, converting to heat. This is a major contributor to attenuation and is highly wavelength-dependent — certain wavelengths (like near 1383 nm, the “water peak” caused by trace hydroxyl ions in the glass) are absorbed much more strongly than others.
8. Scattering
Microscopic density variations in the glass cause some light to scatter in random directions rather than continuing forward. The dominant type in fiber is Rayleigh scattering, which increases sharply at shorter wavelengths (this is part of why 1550 nm has lower loss than 850 nm over long distances — shorter wavelengths scatter more).
9. Interference
When two or more light waves overlap, they can interfere constructively (amplifying) or destructively (canceling). This principle underlies technologies like Fiber Bragg Gratings and certain types of optical filters used in DWDM systems.
10. Coherence
Coherence describes how consistent the phase relationship of a light wave is over time and distance. Lasers (used in most modern fiber transmitters) produce highly coherent light, unlike LEDs, which produce less coherent, broader-spectrum light. Higher coherence generally means better performance for long-distance, high-speed transmission.
Why These Characteristics Matter for Real Networks
| EM Characteristic | Real-World Networking Impact |
|---|---|
| Speed in medium | Determines propagation delay/latency on long fiber runs |
| Amplitude | Directly maps to optical power budget calculations |
| Frequency/Wavelength | Determines transceiver compatibility and DWDM channel planning |
| Polarization | Affects PMD, a limiting factor for very high-speed (100G+) long-haul links |
| Reflection/Refraction | The fundamental mechanism that keeps light inside the fiber core |
| Absorption | Major contributor to attenuation, dictating max unrepeated distance |
| Scattering | Wavelength-dependent loss, informs wavelength selection |
| Interference | Basis for optical filtering and DWDM multiplexer/demultiplexer design |
| Coherence | Determines laser vs. LED source choice for different link types |
Real-World Example: Why Long-Haul Links Use 1550 nm Lasers
Long-haul telecom providers almost universally use highly coherent, narrow-linewidth lasers at 1550 nm because:
- Scattering loss is lower at longer wavelengths (a Rayleigh scattering effect).
- Absorption loss is minimized outside the water-peak absorption band.
- High coherence supports the tight channel spacing required for DWDM, packing 40, 80, or even 96+ wavelength channels onto one fiber strand.
Linux Example: Observing Optical Power (Amplitude) Diagnostics
# Show detailed optical diagnostics, including Tx/Rx power (amplitude in dBm)
ethtool -m eth0
# Sample relevant output:
# Laser output power : 1.2589 mW / 1.00 dBm
# Receiver signal average optical power : 0.3467 mW / -4.60 dBmMonitoring these values over time helps detect gradual signal degradation caused by absorption, scattering, or connector contamination — real-world manifestations of the EM characteristics described above.
Cisco Example: Reflection-Related Fault Detection
Cisco IOS devices can report optical return loss issues, which relate to unwanted reflections (a violation of “ideal” refraction/transmission) at connectors or splices:
Switch# show interfaces TenGigabitEthernet1/0/1 transceiver detail
Rx Power Low Alarm Threshold : -13.00 dBm
Rx Power reported : -22.4 dBm (ALARM: Low Rx Power)A low Rx power alarm often points to excessive reflection, absorption, or a dirty/damaged connector — all physical manifestations of how EM radiation interacts with the fiber medium.
Python Example: Modeling Attenuation Due to Absorption and Scattering
import math
def signal_power_after_distance(initial_power_mw, attenuation_db_per_km, distance_km):
"""
Calculate remaining optical power after traveling through fiber,
modeling combined absorption + scattering loss as a single dB/km figure.
"""
total_loss_db = attenuation_db_per_km * distance_km
# Convert dB loss to a linear power ratio
power_ratio = 10 ** (-total_loss_db / 10)
return initial_power_mw * power_ratio
# Example: 1 mW launched at 1550 nm, typical single-mode fiber loss ~0.2 dB/km
initial_power = 1.0 # mW
for distance in [10, 40, 80, 120]:
remaining = signal_power_after_distance(initial_power, 0.2, distance)
print(f"After {distance} km: {remaining:.6f} mW remaining")Output:
After 10 km: 0.630957 mW remaining
After 40 km: 0.099986 mW remaining (approx.)
After 80 km: 0.009986 mW remaining (approx.)
After 120 km: 0.000998 mW remaining (approx.)This demonstrates how absorption and scattering, both wavelength-dependent EM effects, compound over distance — a critical calculation used in real optical link budget planning.
Comparison Table: Laser vs. LED as an EM Radiation Source
| Property | Laser | LED |
|---|---|---|
| Coherence | High | Low |
| Spectral width | Narrow (~0.1 nm or less) | Wide (~30-50 nm) |
| Typical fiber type | Single-mode | Multimode |
| Max distance | Long (tens to hundreds of km) | Short (up to ~2 km) |
| Cost | Higher | Lower |
| Modulation speed | High (10G+) | Lower (typically <1G practical limit) |
Best Practices
- Match light source coherence to link requirements — use lasers for long-distance/high-speed single-mode links, LEDs only for short multimode runs.
- Account for wavelength-dependent scattering and absorption when calculating optical power budgets.
- Monitor polarization-related errors (PMD) on very long, high-speed (100G+) single-mode links.
- Keep connectors clean to minimize unwanted reflection and scattering losses.
- Use return loss testing during installation to catch reflection problems from poor splices or connectors.
Troubleshooting Guide
| Symptom | Likely EM-Related Cause | Fix |
|---|---|---|
| High bit error rate on long single-mode link | Polarization Mode Dispersion (PMD) | Use PMD-compensating equipment, or newer low-PMD fiber |
| Unusually high loss at specific wavelength | Absorption (e.g., water-peak) | Switch to a fiber rated for that wavelength band, or shift wavelength |
| Gradual link degradation over months/years | Increased scattering from fiber aging/micro-bending | Physically inspect and reroute fiber, check bend radius |
| Reflection alarms / high return loss | Poor connector polish or dirty connector | Clean and inspect connector end-face with a fiber scope |
Conclusion
Every characteristic of electromagnetic radiation — speed, amplitude, frequency, polarization, reflection, absorption, scattering, interference, and coherence — has a direct, practical consequence for fiber optic network design, performance, and troubleshooting. Understanding these fundamentals from first principles equips you to reason about real problems rather than just memorizing rules of thumb, and sets the stage for the next topic: the full electromagnetic spectrum and where fiber optic wavelengths fit within it.