Optical Fiber Structure: Core, Cladding, and Coating

Optical Fiber Structure: Core, Cladding, and Coating

An optical fiber looks deceptively simple — a thin strand of glass thinner than a human hair. But that thin strand is actually a precisely engineered structure with multiple layers, each serving a specific purpose. This article explains the physical structure of optical fiber from first principles: the core, the cladding, and the coating — and why each layer exists.

The Three Fundamental Layers

graph TD
    A[Optical Fiber Cross-Section] --> B[Core<br/>Carries the light signal]
    A --> C[Cladding<br/>Reflects light back into core]
    A --> D[Coating/Buffer<br/>Protects the glass physically]

1. The Core

The core is the central part of the fiber, made of ultra-pure glass (silica) or, less commonly, plastic. This is where the actual light signal travels.

To put the size in perspective: a human hair is roughly 70-100 microns in diameter. A single-mode fiber core (8-10 microns) is about one-tenth the width of a human hair.

2. The Cladding

The cladding surrounds the core and is also made of glass, but with a slightly lower refractive index than the core.

This difference in refractive index between core and cladding is the entire physical mechanism that allows fiber optics to work: light hitting the core-cladding boundary at a shallow enough angle reflects entirely back into the core instead of escaping.

graph LR
    A[Light Ray Enters Core] --> B{Angle of Incidence vs Critical Angle}
    B -->|Angle > Critical Angle| C[Total Internal Reflection<br/>Stays in Core]
    B -->|Angle < Critical Angle| D[Refracts into Cladding<br/>Signal Lost]
    C --> E[Light propagates down fiber length]

3. The Coating (Buffer)

The coating, sometimes called the primary buffer coating, is a layer of protective plastic (usually acrylate) applied directly over the cladding during manufacturing.

Unlike the core and cladding, the coating plays no role in guiding light — it’s purely a protective mechanical and environmental layer.

Beyond the Three Core Layers: Cable Construction

In a real-world fiber optic cable, additional protective layers exist outside the basic fiber structure:

LayerPurpose
CoreCarries the light signal
CladdingProvides total internal reflection boundary
Coating (buffer)Protects glass from moisture and micro-bending
Strength member (e.g., aramid yarn/Kevlar)Provides tensile strength, protects against pulling stress
Outer jacketProvides overall protection against abrasion, UV, chemicals, and fire (with fire-rated jackets like OFNP/OFNR)
graph TD
    A[Outer Jacket] --> B[Strength Members - Aramid Yarn]
    B --> C[Coating/Buffer - 250um]
    C --> D[Cladding - 125um]
    D --> E[Core - 8-10um single-mode or 50/62.5um multimode]

Standard Fiber Dimensions Reference Table

Fiber TypeCore DiameterCladding DiameterTypical Coating Diameter
Single-mode (OS1/OS2)8-10 µm125 µm250 µm
Multimode OM162.5 µm125 µm250 µm
Multimode OM2/OM3/OM4/OM550 µm125 µm250 µm

Why the Core-Cladding Refractive Index Difference Matters

The refractive index difference between core and cladding is usually very small — typically less than 1%. This small but precise difference is what determines the fiber’s numerical aperture (NA), a measure of how much light the fiber can accept and guide.

NA = (n_core² - n_cladding²)

A higher NA means the fiber can accept light over a wider range of angles (easier to couple light into it, common in multimode fiber), while a lower NA is typical of single-mode fiber, which is designed to carry only a single light path.

Real-World Networking Example: Why Structure Affects Deployment Choices

Cisco Example: Fiber Type Awareness in Interface Configuration

Cisco switches often report expected fiber type compatibility for a given transceiver:

Switch# show interface TenGigabitEthernet1/0/1 transceiver detail

Transceiver Detail Info (A0 Dump):
    Name: 10GBASE-SR
    Connector Type: LC
    Cable Type: Multimode
    Link Length (50um): 300 m
    Link Length (62.5um): 33 m

Notice how the maximum supported distance changes drastically depending on the exact core diameter (50 µm vs. 62.5 µm) — a direct real-world consequence of fiber structure.

Linux Example: Verifying Cable/Fiber Type Reported by Optics

# Query transceiver EEPROM data, including cable/fiber type
ethtool -m eth0 | grep -i -E "cable|fiber|core"

# Example output:
# Transceiver type                                 : SFP/SFP+/SFP28 (1)
# Fibre Channel transmission media                 : Multi-mode 50um (M5)

This confirms, at the operating system level, what physical fiber structure the connected optic expects — useful for catching mismatches before a technician spends hours troubleshooting a “broken” link that’s actually a fiber-type mismatch.

Python Example: Calculating Numerical Aperture from Refractive Indices

import math

def numerical_aperture(n_core, n_cladding):
    """Calculate the numerical aperture of an optical fiber"""
    return math.sqrt(n_core**2 - n_cladding**2)

def acceptance_angle(na):
    """Calculate the maximum acceptance angle in degrees from NA"""
    return math.degrees(math.asin(na))

# Typical single-mode fiber refractive indices
n_core = 1.4677
n_cladding = 1.4624

na = numerical_aperture(n_core, n_cladding)
angle = acceptance_angle(na)

print(f"Numerical Aperture: {na:.4f}")
print(f"Maximum Acceptance Angle: {angle:.2f} degrees")

Output:

Numerical Aperture: 0.1246
Maximum Acceptance Angle: 7.16 degrees

This shows why aligning a light source precisely with a single-mode fiber core is so mechanically demanding — the acceptance angle is extremely narrow.

Comparison Table: Core vs. Cladding vs. Coating

LayerMaterialFunctionAffects Light Guiding?
CoreDoped silica glassCarries the actual signalYes — primary light path
CladdingPure/lower-index silica glassReflects light back into coreYes — creates reflection boundary
CoatingAcrylate plasticMechanical/environmental protectionNo — purely protective

Best Practices

  1. Never strip more coating than necessary during termination — exposed, unprotected glass is extremely fragile and prone to micro-cracks.
  2. Respect minimum bend radius specifications — sharp bends stress the cladding boundary and can cause light to leak out (macro-bending loss).
  3. Match connector and splice equipment to the correct core size — mixing 50 µm and 62.5 µm multimode fiber, for example, causes major loss at the mismatch point.
  4. Store and handle bare fiber carefully — the coating is the only thing protecting the glass from moisture and micro-fractures before termination.

Troubleshooting

SymptomStructural CauseFix
High loss at a specific splice/connector pointCore size mismatch (e.g., 50 µm to 62.5 µm)Verify and match core diameters end-to-end
Sudden signal loss after cable was bent sharplyMacro-bending loss from exceeding minimum bend radiusReroute cable, respect bend radius specs (often 10x cable diameter)
Random small losses along a cable runMicro-bending from poor coating/buffering or crush damageInspect physical routing and cable management; avoid over-tightened cable ties
Fiber breaks easily during handlingCoating stripped or damaged, exposing bare glassHandle stripped fiber sections minimally and re-coat/protect splice points

Conclusion

The structure of an optical fiber — core, cladding, and coating — is a masterclass in purposeful engineering. The core carries light, the cladding’s slightly lower refractive index confines that light through total internal reflection, and the coating protects the assembly from the physical world. Understanding this structure is essential for making informed decisions about fiber type selection, handling, and troubleshooting — and it sets the foundation for the next topic: the standards that govern fiber optic interoperability.

Further Reading

Exit mobile version