extern crate nalgebra as na;
use crate::crystal::Indices;
use dim::ucum::Kelvin;
pub mod none;
pub use none::*;
pub mod standard;
pub use standard::*;
pub trait TemperatureDependence {
fn apply(&self, n: Indices, temperature: Kelvin<f64>) -> Indices;
}