DeformationGradientGeneral

Type Alias DeformationGradientGeneral 

Source
pub type DeformationGradientGeneral<const I: usize, const J: usize> = TensorRank2<3, I, J>;
Expand description

A general deformation gradient.

Aliased Type§

pub struct DeformationGradientGeneral<const I: usize, const J: usize>(/* private fields */);

Trait Implementations§

Source§

impl<const I: usize, const J: usize> Deformation<I, J> for DeformationGradientGeneral<I, J>

Source§

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

Calculates and returns the Jacobian. Read more
Source§

fn left_cauchy_green(&self) -> TensorRank2<3, I, I>

Calculates and returns the left Cauchy-Green deformation. Read more
Source§

fn right_cauchy_green(&self) -> TensorRank2<3, J, J>

Calculates and returns the right Cauchy-Green deformation. Read more