conspire/constitutive/hybrid/hyperelastic/multiplicative/
mod.rs#[cfg(test)]
mod test;
use crate::{
constitutive::{
hybrid::{Hybrid, Multiplicative, MultiplicativeTrait},
solid::hyperelastic::Hyperelastic,
ConstitutiveError,
},
mechanics::{DeformationGradient, Scalar},
};
impl<'a, C1: Hyperelastic<'a>, C2: Hyperelastic<'a>> Hyperelastic<'a> for Multiplicative<C1, C2> {
fn helmholtz_free_energy_density(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<Scalar, ConstitutiveError> {
let (deformation_gradient_1, deformation_gradient_2) =
self.deformation_gradients(deformation_gradient)?;
Ok(self
.constitutive_model_1()
.helmholtz_free_energy_density(&deformation_gradient_1)?
+ self
.constitutive_model_2()
.helmholtz_free_energy_density(&deformation_gradient_2)?)
}
}