conspire/constitutive/solid/hyperelastic/
mod.rs#![doc = include_str!("doc.md")]
#[cfg(test)]
pub mod test;
mod arruda_boyce;
mod fung;
mod gent;
mod mooney_rivlin;
mod neo_hookean;
mod saint_venant_kirchhoff;
mod yeoh;
pub use self::{
arruda_boyce::ArrudaBoyce, fung::Fung, gent::Gent, mooney_rivlin::MooneyRivlin,
neo_hookean::NeoHookean, saint_venant_kirchhoff::SaintVenantKirchhoff, yeoh::Yeoh,
};
use super::{elastic::Elastic, *};
use std::fmt::Debug;
pub trait Hyperelastic<'a>
where
Self: Elastic<'a> + Debug,
{
fn helmholtz_free_energy_density(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<Scalar, ConstitutiveError>;
}