spdcalc 2.0.1

SPDCalc, the Spontaneous Parametric Downconversion Calculator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Sellmeier equations for calculating the refractive index of a material
extern crate nalgebra as na;
use crate::{crystal::Indices, *};
use na::*;

pub mod standard;
pub use standard::*;

/// The kind of sellmeier equation form to use
pub trait SellmeierEquation {
  /// Get the indices of refraction for a given wavelength
  fn get_indices(&self, wavelength: Wavelength) -> Indices;
}