pub trait HyperelasticViscoplasticFiniteElement<C, const G: usize, const M: usize, const N: usize, const P: usize, Y>where
C: HyperelasticViscoplastic<Y>,
Self: ElasticViscoplasticFiniteElement<C, G, M, N, P, Y>,
Y: Tensor,{
// Required method
fn helmholtz_free_energy(
&self,
constitutive_model: &C,
nodal_coordinates: &ElementNodalCoordinates<N>,
state_variables: &ViscoplasticStateVariables<G, Y>,
) -> Result<Scalar, FiniteElementError>;
}Required Methods§
fn helmholtz_free_energy( &self, constitutive_model: &C, nodal_coordinates: &ElementNodalCoordinates<N>, state_variables: &ViscoplasticStateVariables<G, Y>, ) -> Result<Scalar, FiniteElementError>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.