Skip to main content

HyperelasticViscoplasticElement

Trait HyperelasticViscoplasticElement 

Source
pub trait HyperelasticViscoplasticElement<C, const G: usize, Y>{
    // Required method
    fn helmholtz_free_energy(
        &self,
        constitutive_model: &C,
        nodal_coordinates: &Self::Coordinates,
        state_variables: &ViscoplasticStateVariables<G, Y>,
    ) -> Result<Quantity<Energy>, Self::Error>;
}

Required Methods§

Source

fn helmholtz_free_energy( &self, constitutive_model: &C, nodal_coordinates: &Self::Coordinates, state_variables: &ViscoplasticStateVariables<G, Y>, ) -> Result<Quantity<Energy>, Self::Error>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<C, Y> HyperelasticViscoplasticElement<C, 1, Y> for conspire::domain::vem::block::element::Element

Source§

impl<C, const G: usize, const N: usize, const O: usize, Y> HyperelasticViscoplasticElement<C, G, Y> for conspire::domain::fem::block::element::Element<3, G, N, O>