pub trait HyperelasticIVElements<const G: usize, V, const D: usize>where
Self: ElasticIVElements<G, V, D>,
V: Tensor,{
// Required method
fn helmholtz_free_energy(
&self,
nodal_coordinates: &NodalCoordinates<D>,
internal_variables: &InternalVariablesField<G, V>,
) -> Result<Quantity<Energy>, ElementModelError>;
}Required Methods§
fn helmholtz_free_energy( &self, nodal_coordinates: &NodalCoordinates<D>, internal_variables: &InternalVariablesField<G, V>, ) -> Result<Quantity<Energy>, ElementModelError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".