conspire::mechanics

Trait Deformation

Source
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§

Source

fn jacobian(&self) -> Result<Scalar, DeformationError>

Calculates and returns the Jacobian.

J = \mathrm{det}(\mathbf{F})
Source

fn left_cauchy_green(&self) -> LeftCauchyGreenDeformation

Calculates and returns the left Cauchy-Green deformation.

\mathbf{B} = \mathbf{F}\cdot\mathbf{F}^T
Source

fn right_cauchy_green(&self) -> RightCauchyGreenDeformation

Calculates and returns the right Cauchy-Green deformation.

\mathbf{C} = \mathbf{F}^T\cdot\mathbf{F}

Implementors§