HyperelasticIV

Trait HyperelasticIV 

Source
pub trait HyperelasticIV<V, T1, T2, T3>
where Self: ElasticIV<V, T1, T2, T3>,
{ // Required method fn helmholtz_free_energy_density( &self, deformation_gradient: &DeformationGradient, internal_variables: &V, ) -> Result<Scalar, ConstitutiveError>; }
Expand description

Required methods for hyperelastic solid constitutive models with internal variables.

Required Methods§

Source

fn helmholtz_free_energy_density( &self, deformation_gradient: &DeformationGradient, internal_variables: &V, ) -> 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<C1, C2> HyperelasticIV<TensorRank2<3, 2, 0>, TensorRank4<3, 2, 0, 1, 0>, TensorRank4<3, 1, 0, 2, 0>, TensorRank4<3, 2, 0, 2, 0>> for ElasticMultiplicative<C1, C2>
where C1: Hyperelastic, C2: Hyperelastic,