conspire/constitutive/hybrid/elastic/additive/
mod.rs#[cfg(test)]
mod test;
use crate::{
constitutive::{
hybrid::{Additive, Hybrid},
solid::{elastic::Elastic, Solid},
Constitutive, ConstitutiveError, Parameters,
},
mechanics::{
CauchyStress, CauchyTangentStiffness, DeformationGradient, FirstPiolaKirchhoffStress,
FirstPiolaKirchhoffTangentStiffness, Scalar, SecondPiolaKirchhoffStress,
SecondPiolaKirchhoffTangentStiffness,
},
};
impl<'a, C1: Elastic<'a>, C2: Elastic<'a>> Constitutive<'a> for Additive<C1, C2> {
fn new(_parameters: Parameters<'a>) -> Self {
panic!()
}
}
impl<'a, C1: Elastic<'a>, C2: Elastic<'a>> Solid<'a> for Additive<C1, C2> {
fn bulk_modulus(&self) -> &Scalar {
panic!()
}
fn shear_modulus(&self) -> &Scalar {
panic!()
}
}
impl<'a, C1: Elastic<'a>, C2: Elastic<'a>> Elastic<'a> for Additive<C1, C2> {
fn cauchy_stress(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<CauchyStress, ConstitutiveError> {
Ok(self
.constitutive_model_1()
.cauchy_stress(deformation_gradient)?
+ self
.constitutive_model_2()
.cauchy_stress(deformation_gradient)?)
}
fn cauchy_tangent_stiffness(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<CauchyTangentStiffness, ConstitutiveError> {
Ok(self
.constitutive_model_1()
.cauchy_tangent_stiffness(deformation_gradient)?
+ self
.constitutive_model_2()
.cauchy_tangent_stiffness(deformation_gradient)?)
}
fn first_piola_kirchhoff_stress(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<FirstPiolaKirchhoffStress, ConstitutiveError> {
Ok(self
.constitutive_model_1()
.first_piola_kirchhoff_stress(deformation_gradient)?
+ self
.constitutive_model_2()
.first_piola_kirchhoff_stress(deformation_gradient)?)
}
fn first_piola_kirchhoff_tangent_stiffness(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<FirstPiolaKirchhoffTangentStiffness, ConstitutiveError> {
Ok(self
.constitutive_model_1()
.first_piola_kirchhoff_tangent_stiffness(deformation_gradient)?
+ self
.constitutive_model_2()
.first_piola_kirchhoff_tangent_stiffness(deformation_gradient)?)
}
fn second_piola_kirchhoff_stress(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<SecondPiolaKirchhoffStress, ConstitutiveError> {
Ok(self
.constitutive_model_1()
.second_piola_kirchhoff_stress(deformation_gradient)?
+ self
.constitutive_model_2()
.second_piola_kirchhoff_stress(deformation_gradient)?)
}
fn second_piola_kirchhoff_tangent_stiffness(
&self,
deformation_gradient: &DeformationGradient,
) -> Result<SecondPiolaKirchhoffTangentStiffness, ConstitutiveError> {
Ok(self
.constitutive_model_1()
.second_piola_kirchhoff_tangent_stiffness(deformation_gradient)?
+ self
.constitutive_model_2()
.second_piola_kirchhoff_tangent_stiffness(deformation_gradient)?)
}
}