pub struct Fourier<P> { /* private fields */ }
Expand description
The Fourier thermal conduction constitutive model.
Parameters
- The thermal conductivity $
k
$.
External variables
- The temperature gradient $
\nabla T
$.
Internal variables
- None.
Trait Implementations§
Source§impl<P> Constitutive<P> for Fourier<P>where
P: Parameters,
impl<P> Constitutive<P> for Fourier<P>where
P: Parameters,
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<P> ThermalConduction for Fourier<P>where
P: Parameters,
impl<P> ThermalConduction for Fourier<P>where
P: Parameters,
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 T
impl<P> Thermal for Fourier<P>where
P: Parameters,
Auto Trait Implementations§
impl<P> Freeze for Fourier<P>where
P: Freeze,
impl<P> RefUnwindSafe for Fourier<P>where
P: RefUnwindSafe,
impl<P> Send for Fourier<P>where
P: Send,
impl<P> Sync for Fourier<P>where
P: Sync,
impl<P> Unpin for Fourier<P>where
P: Unpin,
impl<P> UnwindSafe for Fourier<P>where
P: UnwindSafe,
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