pub struct Fourier<'a> { /* private fields */ }
Expand description
The Fourier thermal conduction constitutive model.
Parameters
- The thermal conductivity
.
External variables
- The temperature gradient
.
Internal variables
- None.
Trait Implementations§
Source§impl<'a> Constitutive<'a> for Fourier<'a>
impl<'a> Constitutive<'a> for Fourier<'a>
Source§fn new(parameters: Parameters<'a>) -> Self
fn new(parameters: Parameters<'a>) -> Self
Constructs and returns a new constitutive model.
Source§fn jacobian(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<Scalar, ConstitutiveError>
fn jacobian( &self, deformation_gradient: &DeformationGradient, ) -> Result<Scalar, ConstitutiveError>
Calculates and returns the Jacobian.
Source§impl<'a> ThermalConduction<'a> for Fourier<'a>
impl<'a> ThermalConduction<'a> for Fourier<'a>
Source§fn heat_flux(&self, temperature_gradient: &TemperatureGradient) -> HeatFlux
fn heat_flux(&self, temperature_gradient: &TemperatureGradient) -> HeatFlux
Calculates and returns the heat flux.
impl<'a> Thermal<'a> for Fourier<'a>
Auto Trait Implementations§
impl<'a> Freeze for Fourier<'a>
impl<'a> RefUnwindSafe for Fourier<'a>
impl<'a> Send for Fourier<'a>
impl<'a> Sync for Fourier<'a>
impl<'a> Unpin for Fourier<'a>
impl<'a> UnwindSafe for Fourier<'a>
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