Plot the Refractive Index of Optical Material: Silica#

This module demonstrates the usage of the PyOptik library to calculate and plot the refractive index of the optical material Silica glass over a specified range of wavelengths.

Refractive Index vs. Wavelength: [fused_silica]
<Figure size 640x480 with 1 Axes>

from TypedUnit import ureg
from PyOptik import MaterialBank

# Initialize the material with the Sellmeier model
material = MaterialBank.fused_silica

# Calculate refractive index at specific wavelengths
RI = material.compute_refractive_index(wavelength=[1310, 1550] * ureg.nanometer)

# Display calculated refractive indices at sample wavelengths
material.plot()

Total running time of the script: (0 minutes 0.175 seconds)

Gallery generated by Sphinx-Gallery