www.mooseframework.org
TensorMechanicsHardeningCubic.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
13 
15 
16 template <>
18 
27 {
28 public:
29  static InputParameters validParams();
30 
31  TensorMechanicsHardeningCubic(const InputParameters & parameters);
32 
33  virtual Real value(Real intnl) const override;
34 
35  virtual Real derivative(Real intnl) const override;
36 
37  virtual std::string modelName() const override;
38 
39 private:
41  Real _val_0;
42 
44  Real _val_res;
45 
47  Real _intnl_0;
48 
51 
54 
56  Real _alpha;
57 
59  Real _beta;
60 };
TensorMechanicsHardeningCubic::_val_0
Real _val_0
value is cubic between _val_0 at internal_parameter=_intnl_0, at _val_res at internal_parameter=_intn...
Definition: TensorMechanicsHardeningCubic.h:41
validParams< TensorMechanicsHardeningCubic >
InputParameters validParams< TensorMechanicsHardeningCubic >()
TensorMechanicsHardeningCubic::_alpha
Real _alpha
convenience parameter for cubic
Definition: TensorMechanicsHardeningCubic.h:56
TensorMechanicsHardeningCubic::derivative
virtual Real derivative(Real intnl) const override
Definition: TensorMechanicsHardeningCubic.C:68
TensorMechanicsHardeningCubic::_val_res
Real _val_res
value is cubic between _val_0 at internal_parameter=_intnl_0, at _val_res at internal_parameter=_intn...
Definition: TensorMechanicsHardeningCubic.h:44
TensorMechanicsHardeningCubic::_intnl_limit
Real _intnl_limit
value is cubic between _val_0 at internal_parameter=_intnl_0, at _val_res at internal_parameter=_intn...
Definition: TensorMechanicsHardeningCubic.h:50
TensorMechanicsHardeningCubic::modelName
virtual std::string modelName() const override
Definition: TensorMechanicsHardeningCubic.C:80
TensorMechanicsHardeningCubic::value
virtual Real value(Real intnl) const override
Definition: TensorMechanicsHardeningCubic.C:55
TensorMechanicsHardeningCubic::TensorMechanicsHardeningCubic
TensorMechanicsHardeningCubic(const InputParameters &parameters)
Definition: TensorMechanicsHardeningCubic.C:40
TensorMechanicsHardeningCubic::validParams
static InputParameters validParams()
Definition: TensorMechanicsHardeningCubic.C:18
TensorMechanicsHardeningCubic
Cubic hardening value = _val_0 for p <= _intnl_0 value = _val_res for p >= _intnl_limit value = cubic...
Definition: TensorMechanicsHardeningCubic.h:26
TensorMechanicsHardeningCubic::_beta
Real _beta
convenience parameter for cubic
Definition: TensorMechanicsHardeningCubic.h:59
TensorMechanicsHardeningCubic::_intnl_0
Real _intnl_0
value is cubic between _val_0 at internal_parameter=_intnl_0, at _val_res at internal_parameter=_intn...
Definition: TensorMechanicsHardeningCubic.h:47
TensorMechanicsHardeningCubic::_half_intnl_limit
Real _half_intnl_limit
convenience parameter for cubic
Definition: TensorMechanicsHardeningCubic.h:53
TensorMechanicsHardeningModel.h
TensorMechanicsHardeningModel
Hardening Model base class.
Definition: TensorMechanicsHardeningModel.h:27