Part IV, Chapter 4

Fiber Optics

Optical fibers guide light through total internal reflection, forming the backbone of modern telecommunications. Understanding their modal structure, dispersion, and amplification is essential for photonics engineering.

4.1 Total Internal Reflection and Waveguiding

An optical fiber consists of a core (refractive index n1) surrounded by a cladding (n2 < n1). Light entering within the acceptance cone undergoes total internal reflection at the core-cladding interface and is guided along the fiber.

4.1.1 Numerical Aperture

The maximum acceptance half-angle θa defines the numerical aperture:

$$\text{NA} = \sin\theta_a = \sqrt{n_1^2 - n_2^2} \approx n_1\sqrt{2\Delta}$$

where Δ = (n1 - n2)/n1 is the relative index difference. Typical telecom fibers have NA ≈ 0.12 and Δ ≈ 0.3%.

4.1.2 Step-Index vs. Graded-Index Fibers

Step-index fiber:

Uniform core index with an abrupt change at the cladding. Simple construction but suffers from intermodal dispersion in multimode fibers, as higher-order modes travel longer paths.

Graded-index fiber:

Core index decreases parabolically from center to edge: n(r) = n1(1 - Δ(r/a)²). Higher-order modes travel longer paths but in lower-index regions (faster), nearly equalizing transit times. Reduces intermodal dispersion by orders of magnitude.

4.2 Guided Modes and the V-Number

The number of guided modes in a step-index fiber is determined by the normalized frequency parameter (V-number):

$$V = \frac{2\pi a}{\lambda}\sqrt{n_1^2 - n_2^2} = \frac{2\pi a}{\lambda} \cdot \text{NA}$$

Derivation: V-Number from the Eigenvalue Equation

Step 1. The wave equation in cylindrical coordinates for a step-index fiber separates into Bessel functions in the core and modified Bessel functions in the cladding:

$$\text{Core: } J_l(\kappa r), \quad \text{Cladding: } K_l(\gamma r)$$

where κ² = n1²k² - β² and γ² = β² - n2²k².

Step 2. Matching boundary conditions at r = a gives the characteristic equation. The normalized parameters are:

$$U = \kappa a, \quad W = \gamma a, \quad V^2 = U^2 + W^2$$

Step 3. The fiber is single-mode when V < 2.405 (the first zero of J0). For V >> 1, the number of guided modes is approximately:

Result:

$$M \approx \frac{V^2}{2} \quad \text{(step-index)}, \qquad M \approx \frac{V^2}{4} \quad \text{(graded-index)}$$

4.2.1 Single-Mode Fiber

Standard single-mode fiber (SMF-28) has a = 4.1 μm, Δ = 0.36%, giving V = 2.17 at λ = 1550 nm. Only the HE11 (LP01) mode propagates. The mode field diameter (MFD) is approximately:

$$\frac{w}{a} \approx 0.65 + \frac{1.619}{V^{3/2}} + \frac{2.879}{V^6}$$

(Marcuse approximation). For SMF-28, MFD ≈ 10.4 μm at 1550 nm.

4.3 Chromatic Dispersion

Chromatic dispersion causes different wavelength components of a pulse to travel at different speeds, broadening the pulse. It has two contributions:

4.3.1 Material Dispersion

The refractive index of silica depends on wavelength. The group velocity dispersion (GVD) parameter is:

$$\beta_2 = \frac{d^2\beta}{d\omega^2} = -\frac{\lambda^2}{2\pi c} D$$

where D is the dispersion parameter in ps/(nm·km). For standard silica fiber, D = 0 at λ ≈ 1310 nm (zero-dispersion wavelength). At 1550 nm, D ≈ 17 ps/(nm·km).

4.3.2 Waveguide Dispersion

The effective index of the guided mode depends on wavelength through the mode confinement. Waveguide dispersion is negative at telecom wavelengths and can be engineered (dispersion-shifted fibers) to move the zero-dispersion wavelength to 1550 nm. The dispersion length is:

$$L_D = \frac{T_0^2}{|\beta_2|}$$

where T0 is the initial pulse width. For T0 = 10 ps at 1550 nm, LD ≈ 5 km.

4.4 Loss Mechanisms and Fiber Amplifiers

4.4.1 Fiber Loss

The attenuation of light in a fiber follows Beer's law: P(z) = P(0) exp(-αz), where α is the loss coefficient. In dB/km:

$$\alpha_{\text{dB}} = -\frac{10}{L} \log_{10}\!\left(\frac{P_{\text{out}}}{P_{\text{in}}}\right) = 4.343\,\alpha$$

The main loss mechanisms are Rayleigh scattering (∝ λ-4) at short wavelengths and infrared absorption at long wavelengths. The minimum loss of 0.2 dB/km occurs at λ ≈ 1550 nm, setting the optimal telecom window.

4.4.2 Erbium-Doped Fiber Amplifier (EDFA)

The EDFA revolutionized fiber telecommunications by providing optical amplification directly in the fiber, eliminating the need for electronic regeneration. Erbium ions (Er³+) doped into silica fiber provide gain in the 1530-1565 nm band (C-band) when pumped at 980 nm or 1480 nm.

$$G_{\text{dB}} = 10\log_{10}\!\left(\frac{P_{\text{out}}}{P_{\text{in}}}\right) = (g - \alpha) L \cdot 4.343$$

Typical EDFA gains are 20-40 dB with noise figures of 4-6 dB. The noise figure is limited by amplified spontaneous emission (ASE) with a quantum limit of 3 dB.

4.4.3 Wavelength Division Multiplexing (WDM)

WDM transmits multiple wavelength channels simultaneously through a single fiber. Dense WDM (DWDM) systems use 40-80+ channels spaced by 100 GHz (0.8 nm) or 50 GHz across the C-band. Combined with EDFAs, this enables aggregate data rates exceeding 10 Tbps per fiber.

4.5 Python Simulation: Fiber Modes, Dispersion & Loss

This simulation computes the V-number and number of modes, plots the fiber loss spectrum, shows pulse broadening due to dispersion, and displays the refractive index profiles.

Fiber Optics: Modes, Dispersion & Loss

Python
script.py124 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server