Skip to main content

Hyperviscoelastic

Trait Hyperviscoelastic 

Source
pub trait Hyperviscoelastic
where Self: ElasticHyperviscous,
{ // Required method fn helmholtz_free_energy_density( &self, deformation_gradient: &DeformationGradient, ) -> Result<Quantity<EnergyDensity>, ConstitutiveError>; }
Expand description

Required methods for hyperviscoelastic solid constitutive models.

Required Methods§

Source

fn helmholtz_free_energy_density( &self, deformation_gradient: &DeformationGradient, ) -> Result<Quantity<EnergyDensity>, 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".

Implementors§

Source§

impl<C1, C2> Hyperviscoelastic for Canonical<C1, C2>
where C1: Hyperelastic, C2: Hyperviscous,