Plot the Refractive Index of Optical Material: Silver#

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

Refractive Index and Absorption vs. Wavelength [silver]
import numpy
from PyOptik import MaterialBank

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

# Calculate refractive index at specific wavelengths
RI = material.compute_refractive_index(wavelength=[1310e-9, 1550e-9])

# Display calculated refractive indices at sample wavelengths
material.plot(
    wavelength=numpy.linspace(300e-9, 1500e-9, 300)
)

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

Gallery generated by Sphinx-Gallery