1//! Thermal constitutive models. 2 3pub mod conduction; 4 5use crate::mechanics::{HeatFlux, Scalar, TemperatureGradient}; 6use std::fmt::Debug; 7 8/// Required methods for thermal constitutive models. 9pub trait Thermal 10where 11 Self: Debug, 12{ 13}