conspire::constitutive::multiphysics

Struct ThermoelasticThermalConduction

Source
pub struct ThermoelasticThermalConduction<C1, C2> { /* private fields */ }
Expand description

A thermoelastic-thermal conduction constitutive model.

Trait Implementations§

Source§

impl<'a, C1, C2> Constitutive<'a> for ThermoelasticThermalConduction<C1, C2>
where C1: Constitutive<'a>, C2: Constitutive<'a>,

Source§

fn new(_parameters: Parameters<'a>) -> Self

Dummy method that will panic, use Self::construct() instead.

Source§

fn jacobian( &self, deformation_gradient: &DeformationGradient, ) -> Result<Scalar, ConstitutiveError>

Calculates and returns the Jacobian.
Source§

impl<C1: Debug, C2: Debug> Debug for ThermoelasticThermalConduction<C1, C2>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a, C1, C2> Solid<'a> for ThermoelasticThermalConduction<C1, C2>
where C1: Thermoelastic<'a>, C2: ThermalConduction<'a>,

Source§

fn bulk_modulus(&self) -> &Scalar

Returns the bulk modulus.
Source§

fn shear_modulus(&self) -> &Scalar

Returns the shear modulus.
Source§

impl<'a, C1, C2> SolidThermal<'a, C1, C2> for ThermoelasticThermalConduction<C1, C2>
where C1: Thermoelastic<'a>, C2: ThermalConduction<'a>,

Source§

fn construct( thermoelastic_constitutive_model: C1, thermal_conduction_constitutive_model: C2, ) -> Self

Constructs and returns a new solid-thermal constitutive model.
Source§

fn solid_constitutive_model(&self) -> &C1

Returns a reference to the solid constitutive model.
Source§

fn thermal_constitutive_model(&self) -> &C2

Returns a reference to the thermal constitutive model.
Source§

impl<'a, C1, C2> ThermalConduction<'a> for ThermoelasticThermalConduction<C1, C2>
where C1: Thermoelastic<'a>, C2: ThermalConduction<'a>,

Source§

fn heat_flux(&self, temperature_gradient: &TemperatureGradient) -> HeatFlux

Calculates and returns the heat flux.
Source§

impl<'a, C1, C2> Thermoelastic<'a> for ThermoelasticThermalConduction<C1, C2>
where C1: Thermoelastic<'a>, C2: ThermalConduction<'a>,

Source§

fn cauchy_stress( &self, deformation_gradient: &DeformationGradient, temperature: &Scalar, ) -> Result<CauchyStress, ConstitutiveError>

Calculates and returns the Cauchy stress. Read more
Source§

fn cauchy_tangent_stiffness( &self, deformation_gradient: &DeformationGradient, temperature: &Scalar, ) -> Result<CauchyTangentStiffness, ConstitutiveError>

Calculates and returns the tangent stiffness associated with the Cauchy stress. Read more
Source§

fn first_piola_kirchhoff_stress( &self, deformation_gradient: &DeformationGradient, temperature: &Scalar, ) -> Result<FirstPiolaKirchhoffStress, ConstitutiveError>

Calculates and returns the first Piola-Kirchhoff stress. Read more
Source§

fn first_piola_kirchhoff_tangent_stiffness( &self, deformation_gradient: &DeformationGradient, temperature: &Scalar, ) -> Result<FirstPiolaKirchhoffTangentStiffness, ConstitutiveError>

Calculates and returns the tangent stiffness associated with the first Piola-Kirchhoff stress. Read more
Source§

fn second_piola_kirchhoff_stress( &self, deformation_gradient: &DeformationGradient, temperature: &Scalar, ) -> Result<SecondPiolaKirchhoffStress, ConstitutiveError>

Calculates and returns the second Piola-Kirchhoff stress. Read more
Source§

fn second_piola_kirchhoff_tangent_stiffness( &self, deformation_gradient: &DeformationGradient, temperature: &Scalar, ) -> Result<SecondPiolaKirchhoffTangentStiffness, ConstitutiveError>

Calculates and returns the tangent stiffness associated with the second Piola-Kirchhoff stress. Read more
Source§

fn coefficient_of_thermal_expansion(&self) -> &Scalar

Returns the coefficient of thermal expansion.
Source§

fn reference_temperature(&self) -> &Scalar

Returns the reference temperature.
Source§

impl<'a, C1, C2> Multiphysics<'a> for ThermoelasticThermalConduction<C1, C2>
where C1: Constitutive<'a>, C2: Constitutive<'a>,

Source§

impl<'a, C1, C2> Thermal<'a> for ThermoelasticThermalConduction<C1, C2>
where C1: Constitutive<'a>, C2: Constitutive<'a>,

Auto Trait Implementations§

§

impl<C1, C2> Freeze for ThermoelasticThermalConduction<C1, C2>
where C1: Freeze, C2: Freeze,

§

impl<C1, C2> RefUnwindSafe for ThermoelasticThermalConduction<C1, C2>

§

impl<C1, C2> Send for ThermoelasticThermalConduction<C1, C2>
where C1: Send, C2: Send,

§

impl<C1, C2> Sync for ThermoelasticThermalConduction<C1, C2>
where C1: Sync, C2: Sync,

§

impl<C1, C2> Unpin for ThermoelasticThermalConduction<C1, C2>
where C1: Unpin, C2: Unpin,

§

impl<C1, C2> UnwindSafe for ThermoelasticThermalConduction<C1, C2>
where C1: UnwindSafe, C2: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<A, Y, U> OdeSolver<Y, U> for A
where A: Debug, Y: Tensor, U: TensorVec<Item = Y>,