RFFGen
 All Classes Namespaces Files Functions Typedefs Enumerations Groups
yieldSurface.hh
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /* */
3 /* This file is part of the C++-library RFFGen. */
4 /* Copyright 2015 Lars Lubkoll */
5 /* */
6 /* RFFGen is free software: you can redistribute it and/or modify */
7 /* it under the terms of the GNU General Public License as published by */
8 /* the Free Software Foundation, either version 3 of the License, or */
9 /* (at your option) any later version. */
10 /* */
11 /* RFFGen is distributed in the hope that it will be useful, */
12 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
13 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
14 /* GNU General Public License for more details. */
15 /* */
16 /* You should have received a copy of the GNU General Public License */
17 /* along with RFFGen. If not, see <http://www.gnu.org/licenses/>. */
18 /* */
19 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
20 
21 #ifndef RFFGEN_EXAMPLES_YIELD_SURFACE_HH
22 #define RFFGEN_EXAMPLES_YIELD_SURFACE_HH
23 
24 #include "../linearAlgebra.hh"
25 #include "../generate.hh"
26 #include "../finalize.hh"
27 
28 namespace RFFGen
29 {
31  template <class Matrix>
32  auto yieldSurface(double beta, double offset, Matrix sigma = LinearAlgebra::unitMatrix<Matrix>())
33  {
36  auto f = (beta/LinearAlgebra::dimension<Matrix>())*i1 + j2 - offset;
37  return finalize_scalar( f );
38  }
39 }
40 
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