pub trait Deformation {
    // Required methods
    fn jacobian(&self) -> Result<Scalar, DeformationError>;
    fn left_cauchy_green(&self) -> LeftCauchyGreenDeformation;
    fn right_cauchy_green(&self) -> RightCauchyGreenDeformation;
}Expand description
Methods for deformation gradients.
Required Methods§
Sourcefn jacobian(&self) -> Result<Scalar, DeformationError>
 
fn jacobian(&self) -> Result<Scalar, DeformationError>
Calculates and returns the Jacobian.
J = \mathrm{det}(\mathbf{F})Sourcefn left_cauchy_green(&self) -> LeftCauchyGreenDeformation
 
fn left_cauchy_green(&self) -> LeftCauchyGreenDeformation
Calculates and returns the left Cauchy-Green deformation.
\mathbf{B} = \mathbf{F}\cdot\mathbf{F}^TSourcefn right_cauchy_green(&self) -> RightCauchyGreenDeformation
 
fn right_cauchy_green(&self) -> RightCauchyGreenDeformation
Calculates and returns the right Cauchy-Green deformation.
\mathbf{C} = \mathbf{F}^T\cdot\mathbf{F}