Trait ThermalConduction

Source
pub trait ThermalConduction
where Self: Thermal,
{ // Required method fn heat_flux(&self, temperature_gradient: &TemperatureGradient) -> HeatFlux; }
Expand description

Required methods for thermal conduction constitutive models.

Required Methods§

Source

fn heat_flux(&self, temperature_gradient: &TemperatureGradient) -> HeatFlux

Calculates and returns the heat flux.

Implementors§