Trait Constitutive

Source
pub trait Constitutive
where Self: Debug,
{ // Provided method fn jacobian( &self, deformation_gradient: &DeformationGradient, ) -> Result<Scalar, ConstitutiveError> { ... } }
Expand description

Required methods for constitutive models.

Provided Methods§

Source

fn jacobian( &self, deformation_gradient: &DeformationGradient, ) -> Result<Scalar, ConstitutiveError>

Calculates and returns the Jacobian.

Implementors§

Source§

impl<C> Constitutive for C
where C: Solid,