pub struct Fourier {
pub thermal_conductivity: Scalar,
}Expand description
The Fourier thermal conduction constitutive model.
Parameters
- The thermal conductivity $
k$.
External variables
- The temperature gradient $
\nabla T$.
Internal variables
- None.
Fields§
§thermal_conductivity: ScalarThe thermal conductivity $k$.
Trait Implementations§
Source§impl ThermalConduction for Fourier
impl ThermalConduction for Fourier
Source§fn heat_flux(&self, temperature_gradient: &TemperatureGradient) -> HeatFlux
fn heat_flux(&self, temperature_gradient: &TemperatureGradient) -> HeatFlux
Calculates and returns the heat flux.
\mathbf{q}(\nabla T) = -k\nabla Timpl Thermal for Fourier
Auto Trait Implementations§
impl Freeze for Fourier
impl RefUnwindSafe for Fourier
impl Send for Fourier
impl Sync for Fourier
impl Unpin for Fourier
impl UnwindSafe for Fourier
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more