Note
Go to the end to download the full example code
Plot the Refractive Index of Optical Material: Water#
This module demonstrates the usage of the PyOptik library to calculate and plot the refractive index of the optical material water over a specified range of wavelengths.
![Refractive Index vs. Wavelength: [water]](../../_images/sphx_glr_plot_water_001.png)
import numpy
from PyOptik import MaterialBank
# Initialize the material with the Sellmeier model
material = MaterialBank.water
# Calculate refractive index at specific wavelengths
RI = material.compute_refractive_index(wavelength=[800e-9, 900e-9])
# Display calculated refractive indices at sample wavelengths
material.plot(
wavelength=numpy.linspace(300e-9, 1000e-9, 300)
)
Total running time of the script: (0 minutes 0.261 seconds)