pub trait ThermalConduction<'a>where
Self: Constitutive<'a> + Thermal<'a>,{
// 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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.