21 #ifndef RFFGEN_EXAMPLES_YIELD_SURFACE_HH
22 #define RFFGEN_EXAMPLES_YIELD_SURFACE_HH
24 #include "../linearAlgebra.hh"
25 #include "../generate.hh"
26 #include "../finalize.hh"
31 template <
class Matrix>
32 auto yieldSurface(
double beta,
double offset, Matrix sigma = LinearAlgebra::unitMatrix<Matrix>())
36 auto f = (beta/LinearAlgebra::dimension<Matrix>())*i1 + j2 - offset;
41 #endif // RFFGEN_EXAMPLES_YIELD_SURFACE_HH
Chain of functions and of type F resp. G (F and G must satisfy the requirements of Concepts::Funct...
Definition: chain.hh:61
auto finalize_scalar(const F &f)
Finish function definition.
Definition: finalize.hh:316
Trace< Matrix > FirstPrincipalInvariant
First principal invariant for .
Definition: principalInvariants.hh:107
auto yieldSurface(double beta, double offset, Matrix sigma=LinearAlgebra::unitMatrix< Matrix >())
Yield surface , where is the first principal and is the second deviatoric invariant.
Definition: yieldSurface.hh:32