pub struct SaintVenantKirchhoff<P> { /* private fields */ }
Expand description
The Saint Venant-Kirchhoff hyperelastic constitutive model.
Parameters
- The bulk modulus $
\kappa
$. - The shear modulus $
\mu
$.
External variables
- The deformation gradient $
\mathbf{F}
$.
Internal variables
- None.
Notes
- The Green-Saint Venant strain measure is given by $
\mathbf{E}=\tfrac{1}{2}(\mathbf{C}-\mathbf{1})
$.
Trait Implementations§
Source§impl<P> Constitutive<P> for SaintVenantKirchhoff<P>where
P: Parameters,
impl<P> Constitutive<P> for SaintVenantKirchhoff<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: Debug> Debug for SaintVenantKirchhoff<P>
impl<P: Debug> Debug for SaintVenantKirchhoff<P>
Source§impl<P> Elastic for SaintVenantKirchhoff<P>where
P: Parameters,
impl<P> Elastic for SaintVenantKirchhoff<P>where
P: Parameters,
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>
\mathbf{S}(\mathbf{F}) = 2\mu\mathbf{E}' + \kappa\,\mathrm{tr}(\mathbf{E})\mathbf{1}
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>
\mathcal{G}_{IJkL}(\mathbf{F}) = \mu\,\delta_{JL}F_{kI} + \mu\,\delta_{IL}F_{kJ} + \left(\kappa - \frac{2}{3}\,\mu\right)\delta_{IJ}F_{kL}
Source§fn cauchy_stress(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<CauchyStress, ConstitutiveError>
fn cauchy_stress( &self, deformation_gradient: &DeformationGradient, ) -> Result<CauchyStress, ConstitutiveError>
Calculates and returns the Cauchy stress. Read more
Source§fn cauchy_tangent_stiffness(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<CauchyTangentStiffness, ConstitutiveError>
fn cauchy_tangent_stiffness( &self, deformation_gradient: &DeformationGradient, ) -> 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,
) -> 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 root(
&self,
applied_load: AppliedLoad,
) -> Result<DeformationGradient, OptimizeError>
fn root( &self, applied_load: AppliedLoad, ) -> Result<DeformationGradient, OptimizeError>
Solve for the unknown components of the deformation gradient under an applied load. Read more
Source§impl<P> Hyperelastic for SaintVenantKirchhoff<P>where
P: Parameters,
impl<P> Hyperelastic for SaintVenantKirchhoff<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{E}^2) + \frac{1}{2}\left(\kappa - \frac{2}{3}\,\mu\right)\mathrm{tr}(\mathbf{E})^2
Source§fn minimize(
&self,
applied_load: AppliedLoad,
) -> Result<DeformationGradient, OptimizeError>
fn minimize( &self, applied_load: AppliedLoad, ) -> Result<DeformationGradient, OptimizeError>
Solve for the unknown components of the deformation gradient under an applied load. Read more
Source§impl<P> Solid for SaintVenantKirchhoff<P>where
P: Parameters,
impl<P> Solid for SaintVenantKirchhoff<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 SaintVenantKirchhoff<P>where
P: Freeze,
impl<P> RefUnwindSafe for SaintVenantKirchhoff<P>where
P: RefUnwindSafe,
impl<P> Send for SaintVenantKirchhoff<P>where
P: Send,
impl<P> Sync for SaintVenantKirchhoff<P>where
P: Sync,
impl<P> Unpin for SaintVenantKirchhoff<P>where
P: Unpin,
impl<P> UnwindSafe for SaintVenantKirchhoff<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