conspire::constitutive::solid::hyperelastic

Trait Hyperelastic

Source
pub trait Hyperelastic<'a>
where Self: Elastic<'a> + Debug,
{ // Required method fn helmholtz_free_energy_density( &self, deformation_gradient: &DeformationGradient, ) -> Result<Scalar, ConstitutiveError>; }
Expand description

Required methods for hyperelastic constitutive models.

Required Methods§

Source

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

Calculates and returns the Helmholtz free energy density.

a = a(\mathbf{F})

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<'a> Hyperelastic<'a> for ArrudaBoyce<'a>

Source§

impl<'a> Hyperelastic<'a> for Fung<'a>

Source§

impl<'a> Hyperelastic<'a> for Gent<'a>

Source§

impl<'a> Hyperelastic<'a> for MooneyRivlin<'a>

Source§

impl<'a> Hyperelastic<'a> for NeoHookean<'a>

Source§

impl<'a> Hyperelastic<'a> for SaintVenantKirchhoff<'a>

Source§

impl<'a> Hyperelastic<'a> for Yeoh<'a>

Source§

impl<'a, C1: Hyperelastic<'a>, C2: Hyperelastic<'a>> Hyperelastic<'a> for Additive<C1, C2>

Source§

impl<'a, C1: Hyperelastic<'a>, C2: Hyperelastic<'a>> Hyperelastic<'a> for Multiplicative<C1, C2>