conspire/constitutive/solid/
mod.rspub mod elastic;
pub mod elastic_hyperviscous;
pub mod hyperelastic;
pub mod hyperviscoelastic;
pub mod thermoelastic;
pub mod thermohyperelastic;
pub mod viscoelastic;
const TWO_THIRDS: Scalar = 2.0 / 3.0;
const FIVE_THIRDS: Scalar = 5.0 / 3.0;
use super::{Constitutive, Parameters};
use crate::{
constitutive::ConstitutiveError,
math::{
ContractFirstSecondIndicesWithSecondIndicesOf, ContractSecondIndexWithFirstIndexOf, Rank2,
Tensor, TensorArray, TensorRank4, IDENTITY, IDENTITY_00, IDENTITY_10, IDENTITY_1010,
ZERO_10,
},
mechanics::{
CauchyRateTangentStiffness, CauchyStress, CauchyStresses, CauchyTangentStiffness,
Deformation, DeformationGradient, DeformationGradientRate, DeformationGradients,
FirstPiolaKirchhoffRateTangentStiffness, FirstPiolaKirchhoffStress,
FirstPiolaKirchhoffTangentStiffness, Scalar, SecondPiolaKirchhoffRateTangentStiffness,
SecondPiolaKirchhoffStress, SecondPiolaKirchhoffTangentStiffness,
},
};
pub enum AppliedLoad {
UniaxialStress(Scalar),
BiaxialStress(Scalar, Scalar),
}
pub trait Solid<'a>
where
Self: Constitutive<'a>,
{
fn bulk_modulus(&self) -> &Scalar;
fn shear_modulus(&self) -> &Scalar;
}