conspire/constitutive/thermal/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Thermal constitutive models.

pub mod conduction;

use crate::mechanics::{HeatFlux, Scalar, TemperatureGradient};

use super::{Constitutive, Parameters};

/// Required methods for thermal constitutive models.
pub trait Thermal<'a>
where
    Self: Constitutive<'a>,
{
}