pub trait ThermalConductionwhere
    Self: Thermal,{
    // Required method
    fn heat_flux(&self, temperature_gradient: &TemperatureGradient) -> HeatFlux;
}Expand description
Required methods for thermal conduction constitutive models.
Required Methods§
Sourcefn heat_flux(&self, temperature_gradient: &TemperatureGradient) -> HeatFlux
 
fn heat_flux(&self, temperature_gradient: &TemperatureGradient) -> HeatFlux
Calculates and returns the heat flux.