pub struct Hencky<P> { /* private fields */ }
Expand description
The Hencky hyperelastic constitutive model.
Parameters
- The bulk modulus $
\kappa
$. - The shear modulus $
\mu
$.
External variables
- The deformation gradient $
\mathbf{F}
$.
Internal variables
- None.
Notes
- The Hencky strain measure is given by $
\mathbf{h}=\tfrac{1}{2}\ln(\mathbf{B})
$.
Trait Implementations§
Source§impl<P> Constitutive<P> for Hencky<P>where
P: Parameters,
impl<P> Constitutive<P> for Hencky<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> Elastic for Hencky<P>where
P: Parameters,
impl<P> Elastic for Hencky<P>where
P: Parameters,
Source§fn cauchy_stress(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<CauchyStress, ConstitutiveError>
fn cauchy_stress( &self, deformation_gradient: &DeformationGradient, ) -> Result<CauchyStress, ConstitutiveError>
\boldsymbol{\sigma}(\mathbf{F}) = \frac{2\mu}{J}\,\mathbf{h}' + \frac{\kappa}{J}\,\mathrm{tr}(\mathbf{h})\mathbf{1}
Source§fn cauchy_tangent_stiffness(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<CauchyTangentStiffness, ConstitutiveError>
fn cauchy_tangent_stiffness( &self, deformation_gradient: &DeformationGradient, ) -> Result<CauchyTangentStiffness, ConstitutiveError>
\mathcal{T}_{ijkL}(\mathbf{F}) = \frac{\mu}{J}\left[\frac{\partial\ln B_{ij}}{\partial F_{kL}} - \frac{2}{3}\,\delta_{ij}F_{kL}^{-T} - 2h_{ij}'F_{kL}^{-T}\right] + \frac{\kappa}{J}\left[1 - \mathrm{tr}(\mathbf{h})\right]\delta_{ij}F_{kL}^{-T}
Source§fn first_piola_kirchhoff_stress(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<FirstPiolaKirchhoffStress, ConstitutiveError>
fn first_piola_kirchhoff_stress( &self, deformation_gradient: &DeformationGradient, ) -> Result<FirstPiolaKirchhoffStress, ConstitutiveError>
Calculates and returns the first Piola-Kirchhoff stress. Read more
Source§fn first_piola_kirchhoff_tangent_stiffness(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<FirstPiolaKirchhoffTangentStiffness, ConstitutiveError>
fn first_piola_kirchhoff_tangent_stiffness( &self, deformation_gradient: &DeformationGradient, ) -> 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,
) -> Result<SecondPiolaKirchhoffStress, ConstitutiveError>
fn second_piola_kirchhoff_stress( &self, deformation_gradient: &DeformationGradient, ) -> Result<SecondPiolaKirchhoffStress, ConstitutiveError>
Calculates and returns the second Piola-Kirchhoff stress. Read more
Source§fn second_piola_kirchhoff_tangent_stiffness(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<SecondPiolaKirchhoffTangentStiffness, ConstitutiveError>
fn second_piola_kirchhoff_tangent_stiffness( &self, deformation_gradient: &DeformationGradient, ) -> Result<SecondPiolaKirchhoffTangentStiffness, ConstitutiveError>
Calculates and returns the tangent stiffness associated with the second Piola-Kirchhoff stress. Read more
Source§impl<P> Hyperelastic for Hencky<P>where
P: Parameters,
impl<P> Hyperelastic for Hencky<P>where
P: Parameters,
Source§fn helmholtz_free_energy_density(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<Scalar, ConstitutiveError>
fn helmholtz_free_energy_density( &self, deformation_gradient: &DeformationGradient, ) -> Result<Scalar, ConstitutiveError>
a(\mathbf{F}) = \mu\,\mathrm{tr}(\mathbf{h}^2) + \frac{1}{2}\left(\kappa - \frac{2}{3}\,\mu\right)\mathrm{tr}(\mathbf{h})^2
Source§impl<P> Solid for Hencky<P>where
P: Parameters,
impl<P> Solid for Hencky<P>where
P: Parameters,
Source§fn bulk_modulus(&self) -> &Scalar
fn bulk_modulus(&self) -> &Scalar
Returns the bulk modulus.
Source§fn shear_modulus(&self) -> &Scalar
fn shear_modulus(&self) -> &Scalar
Returns the shear modulus.
Auto Trait Implementations§
impl<P> Freeze for Hencky<P>where
P: Freeze,
impl<P> RefUnwindSafe for Hencky<P>where
P: RefUnwindSafe,
impl<P> Send for Hencky<P>where
P: Send,
impl<P> Sync for Hencky<P>where
P: Sync,
impl<P> Unpin for Hencky<P>where
P: Unpin,
impl<P> UnwindSafe for Hencky<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
Source§impl<T> FirstOrderMinimize for Twhere
T: Hyperelastic,
impl<T> FirstOrderMinimize for Twhere
T: Hyperelastic,
Source§fn minimize(
&self,
applied_load: AppliedLoad,
solver: impl FirstOrderOptimization<f64, TensorRank2<3, 1, 0>>,
) -> Result<TensorRank2<3, 1, 0>, OptimizeError>
fn minimize( &self, applied_load: AppliedLoad, solver: impl FirstOrderOptimization<f64, TensorRank2<3, 1, 0>>, ) -> Result<TensorRank2<3, 1, 0>, OptimizeError>
Solve for the unknown components of the deformation gradient under an applied load. Read more
Source§impl<T> FirstOrderRoot for Twhere
T: Elastic,
impl<T> FirstOrderRoot for Twhere
T: Elastic,
Source§fn root(
&self,
applied_load: AppliedLoad,
solver: impl FirstOrderRootFinding<TensorRank2<3, 1, 0>, TensorRank4<3, 1, 0, 1, 0>, TensorRank2<3, 1, 0>>,
) -> Result<TensorRank2<3, 1, 0>, OptimizeError>
fn root( &self, applied_load: AppliedLoad, solver: impl FirstOrderRootFinding<TensorRank2<3, 1, 0>, TensorRank4<3, 1, 0, 1, 0>, TensorRank2<3, 1, 0>>, ) -> Result<TensorRank2<3, 1, 0>, OptimizeError>
Solve for the unknown components of the deformation gradient under an applied load. Read more
Source§impl<T> SecondOrderMinimize for Twhere
T: Hyperelastic,
impl<T> SecondOrderMinimize for Twhere
T: Hyperelastic,
Source§fn minimize(
&self,
applied_load: AppliedLoad,
solver: impl SecondOrderOptimization<f64, TensorRank2<3, 1, 0>, TensorRank4<3, 1, 0, 1, 0>, TensorRank2<3, 1, 0>>,
) -> Result<TensorRank2<3, 1, 0>, OptimizeError>
fn minimize( &self, applied_load: AppliedLoad, solver: impl SecondOrderOptimization<f64, TensorRank2<3, 1, 0>, TensorRank4<3, 1, 0, 1, 0>, TensorRank2<3, 1, 0>>, ) -> Result<TensorRank2<3, 1, 0>, OptimizeError>
Solve for the unknown components of the deformation gradient under an applied load. Read more
Source§impl<T> ZerothOrderRoot for Twhere
T: Elastic,
impl<T> ZerothOrderRoot for Twhere
T: Elastic,
Source§fn root(
&self,
applied_load: AppliedLoad,
solver: impl ZerothOrderRootFinding<TensorRank2<3, 1, 0>>,
) -> Result<TensorRank2<3, 1, 0>, OptimizeError>
fn root( &self, applied_load: AppliedLoad, solver: impl ZerothOrderRootFinding<TensorRank2<3, 1, 0>>, ) -> Result<TensorRank2<3, 1, 0>, OptimizeError>
Solve for the unknown components of the deformation gradient under an applied load. Read more