pub trait FirstOrderRoot {
// Required method
fn root(
&self,
applied_load: AppliedLoad,
solver: impl FirstOrderRootFinding<FirstPiolaKirchhoffStress, FirstPiolaKirchhoffTangentStiffness, DeformationGradient>,
) -> Result<DeformationGradient, OptimizeError>;
}
Expand description
First-order root-finding methods for elastic constitutive models.
Required Methods§
Sourcefn root(
&self,
applied_load: AppliedLoad,
solver: impl FirstOrderRootFinding<FirstPiolaKirchhoffStress, FirstPiolaKirchhoffTangentStiffness, DeformationGradient>,
) -> Result<DeformationGradient, OptimizeError>
fn root( &self, applied_load: AppliedLoad, solver: impl FirstOrderRootFinding<FirstPiolaKirchhoffStress, FirstPiolaKirchhoffTangentStiffness, DeformationGradient>, ) -> Result<DeformationGradient, OptimizeError>
Solve for the unknown components of the deformation gradient under an applied load.
\mathbf{P}(\mathbf{F}) - \boldsymbol{\lambda} - \mathbf{P}_0 = \mathbf{0}
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.