conspire/constitutive/thermal/conduction/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! Thermal conduction constitutive models.

#[cfg(test)]
pub mod test;

mod fourier;

use super::{Constitutive, HeatFlux, Parameters, Scalar, TemperatureGradient, Thermal};

pub use fourier::Fourier;

/// Required methods for thermal conduction constitutive models.
pub trait ThermalConduction<'a>
where
    Self: Constitutive<'a> + Thermal<'a>,
{
    /// Calculates and returns the heat flux.
    fn heat_flux(&self, temperature_gradient: &TemperatureGradient) -> HeatFlux;
}