Fiber Optics and Numerical Aperture
Fiber Optics and Numerical Aperture
Optical fibers transmit light over long distances with minimal loss by exploiting total internal reflection. They are the backbone of modern telecommunications, carrying internet traffic across oceans.
Structure of an Optical Fiber
An optical fiber has two concentric layers:
- Core: higher refractive index . Light propagates here.
- Cladding: lower refractive index . Surrounds the core.
Because , light hitting the core-cladding interface beyond the critical angle undergoes total internal reflection and remains confined in the core.
Numerical Aperture (NA)
The numerical aperture characterizes how much light a fiber can accept. It depends on the difference in refractive indices:
A larger NA means the fiber accepts light from a wider cone of angles.
Example: Core , cladding :
Acceptance Angle
The acceptance angle is the half-angle of the cone of light that will be accepted into the fiber (measured in air outside the fiber):
The full acceptance cone has a full angle of .
Example: For the fiber above, .
Single-Mode vs Multi-Mode Fibers
- Single-mode fiber: very thin core (~9 µm), , NA ≈ 0.12, carries one mode of light. Used for long-distance telecommunications.
- Multi-mode fiber: thicker core (~50–62.5 µm), NA ≈ 0.2–0.5, carries many modes. Used for short distances (data centers, buildings).
Your Task
Implement the numerical aperture and acceptance angle using math.sqrt and math.asin.