A Python library for simulating optical systems, similar to Zemax.
optika computes the spectral response and resolution of an arbitrary optical system, and can optimize it using scipy.optimize.
Surfaces carry their own sag profile, aperture, material, and rulings, and are placed in global coordinates, so a system is an ordinary Python object that can be built, modified, and swept over programmatically.
Because every parameter can be an array from named-arrays, a whole configuration space of designs propagates through the raytrace at once, and an uncertain parameter carries its uncertainty through to the performance of the system.
More information is available in the documentation.
Optika can be installed using pip:
pip install optika- Sequential raytrace modeling of an optical system
- Stratified random sampling of input rays for faster convergence
- Image simulation of a given scene using an optical system
- A fast linear forward model approximating a raytraced system, for imaging many scenes without raytracing each one
- Spherical, conical, and toroidal surface sag profiles
- Circular, rectangular, and polygonal apertures
- Mirrors and arbitrary multilayer coatings
- Refractive glass materials with Sellmeier dispersion (e.g. N-BK7, F2)
- Diffraction gratings, with constant, polynomial, and holographic ruling spacing, and sinusoidal, square, rectangular, sawtooth, and triangular ruling profiles
- CCD/CMOS sensor simulation, including quantum efficiency, noise, and charge diffusion
- n-dimensional configurations of the optical system using named-arrays
- Uncertainty propagation using named-arrays
Surfaces are placed in global coordinates.
Unlike Zemax, where each surface is positioned relative to the one before it, an optika surface carries a transformation giving its position and orientation in the coordinate system of the whole instrument.
Moving one surface therefore does not move everything downstream of it.
The field of view and entrance pupil are computed, not specified.
The apertures of the surfaces determine them, so marking a surface with is_pupil_stop or is_field_stop is enough.
Rulings are a property of a surface.
A diffraction grating is an ordinary surface with a rulings field, so switching between ruling designs does not mean switching to a different type of surface.
Any parameter can be an array.
Giving a parameter an extra named axis sweeps the system over that axis, and every ray traced through it carries that axis along, which is how optika explores a configuration space without a loop.
An UncertainScalarArray parameter propagates its uncertainty through the raytrace by the Monte Carlo method.
Simulate a Newtonian telescope
using optika
Compute the reflectivity of a multilayer mirror by specifying the materials and thicknesses of the layers.
Model the quantum efficiency of a backilluminated CCD
Compute the transmissivity of a thin filter, such as the aluminum filters used to reject visible light on solar instruments.
importmatplotlib.pyplotaspltimportastropy.unitsasuimportnamed_arraysasnaimportoptika# Define the wavelengths at which to compute the transmissivitywavelength=na.geomspace(100, 800, axis="wavelength", num=201) *u.AA# Compute the efficiency of a 100 nm layer of aluminumreflectivity, transmissivity=optika.materials.multilayer_efficiency(
wavelength=wavelength,
layers=optika.materials.Layer(
chemical="Al",
thickness=1000*u.AA,
),
)
# Plot the transmissivity, which drops sharply at the aluminum L edgefig, ax=plt.subplots(constrained_layout=True)
na.plt.plot(wavelength, transmissivity.average, ax=ax, axis="wavelength");
ax.set_xscale("log");
ax.set_xlabel(f"wavelength ({wavelength.unit:latex_inline})");
ax.set_ylabel("transmissivity");Install the package in editable mode along with its test dependencies, and run the test suite using pytest:
pip install -e .[test]
pytestThis project is formatted using black, linted using ruff, and type-checked using mypy, all of which are checked by continuous integration:
black .
ruff check .
mypy optikaTo build the documentation locally:
pip install -e .[doc]
sphinx-build docs docs/_build/html



