conspire::constitutive::hybrid

Struct Multiplicative

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

A hybrid constitutive model based on the multiplicative decomposition.

Trait Implementations§

Source§

impl<'a, C1: Elastic<'a>, C2: Elastic<'a>> Constitutive<'a> for Multiplicative<C1, C2>

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 Multiplicative<C1, C2>

Source§

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

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

impl<'a, C1: Elastic<'a>, C2: Elastic<'a>> Elastic<'a> for Multiplicative<C1, C2>

Source§

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

Calculates and returns the Cauchy stress.

\boldsymbol{\sigma}(\mathbf{F}) = \frac{1}{J_2}\,\boldsymbol{\sigma}_1(\mathbf{F}_1)
Source§

fn cauchy_tangent_stiffness( &self, _: &DeformationGradient, ) -> Result<CauchyTangentStiffness, ConstitutiveError>

Dummy method that will panic.

Source§

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

Calculates and returns the first Piola-Kirchhoff stress.

\mathbf{P}(\mathbf{F}) = \mathbf{P}_1(\mathbf{F}_1)\cdot\mathbf{F}_2^{-T}
Source§

fn first_piola_kirchhoff_tangent_stiffness( &self, _: &DeformationGradient, ) -> Result<FirstPiolaKirchhoffTangentStiffness, ConstitutiveError>

Dummy method that will panic.

Source§

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

Calculates and returns the second Piola-Kirchhoff stress.

\mathbf{S}(\mathbf{F}) = \mathbf{F}_2^{-1}\cdot\mathbf{S}_1(\mathbf{F}_1)\cdot\mathbf{F}_2^{-T}
Source§

fn second_piola_kirchhoff_tangent_stiffness( &self, _: &DeformationGradient, ) -> Result<SecondPiolaKirchhoffTangentStiffness, ConstitutiveError>

Dummy method that will panic.

Source§

fn solve( &self, applied_load: AppliedLoad, ) -> Result<(DeformationGradient, CauchyStress), ConstitutiveError>

Solve for the unknown components of the Cauchy stress and deformation gradient under an applied load.
Source§

impl<'a, C1: Constitutive<'a>, C2: Constitutive<'a>> Hybrid<'a, C1, C2> for Multiplicative<C1, C2>

Source§

fn construct(constitutive_model_1: C1, constitutive_model_2: C2) -> Self

Constructs and returns a new hybrid constitutive model.
Source§

fn constitutive_model_1(&self) -> &C1

Returns a reference to the first constitutive model.
Source§

fn constitutive_model_2(&self) -> &C2

Returns a reference to the second constitutive model.
Source§

impl<'a, C1: Hyperelastic<'a>, C2: Hyperelastic<'a>> Hyperelastic<'a> for Multiplicative<C1, C2>

Source§

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

Calculates and returns the Helmholtz free energy density.

a(\mathbf{F}) = a_1(\mathbf{F}_1) + a_2(\mathbf{F}_2)
Source§

impl<'a, C1: Elastic<'a>, C2: Elastic<'a>> MultiplicativeTrait for Multiplicative<C1, C2>

Source§

impl<'a, C1: Elastic<'a>, C2: Elastic<'a>> Solid<'a> for Multiplicative<C1, C2>

Source§

fn bulk_modulus(&self) -> &Scalar

Dummy method that will panic.

Source§

fn shear_modulus(&self) -> &Scalar

Dummy method that will panic.

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<C1, C2> UnwindSafe for Multiplicative<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>,