1//! Thermal constitutive models. 2 3pub mod conduction; 4 5use crate::mechanics::{HeatFlux, Scalar, TemperatureGradient}; 6 7use super::{Constitutive, Parameters}; 8 9/// Required methods for thermal constitutive models. 10pub trait Thermal {}