www.mooseframework.org
TensorMechanicsHardeningCutExponential.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  TensorMechanicsHardeningCutExponential(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 
50  Real _rate;
51 };
TensorMechanicsHardeningCutExponential::derivative
virtual Real derivative(Real intnl) const override
Definition: TensorMechanicsHardeningCutExponential.C:56
validParams< TensorMechanicsHardeningCutExponential >
InputParameters validParams< TensorMechanicsHardeningCutExponential >()
TensorMechanicsHardeningCutExponential::modelName
virtual std::string modelName() const override
Definition: TensorMechanicsHardeningCutExponential.C:66
TensorMechanicsHardeningCutExponential::_val_res
Real _val_res
The value = _val_res + (val_0 - val_res)*exp(-rate*(internal_parameter - _intnl_0)),...
Definition: TensorMechanicsHardeningCutExponential.h:44
TensorMechanicsHardeningCutExponential
CutExponential hardening The value = _val_res + (val_0 - val_res)*exp(-rate*(internal_parameter - _in...
Definition: TensorMechanicsHardeningCutExponential.h:26
TensorMechanicsHardeningCutExponential::TensorMechanicsHardeningCutExponential
TensorMechanicsHardeningCutExponential(const InputParameters &parameters)
Definition: TensorMechanicsHardeningCutExponential.C:35
TensorMechanicsHardeningCutExponential::validParams
static InputParameters validParams()
Definition: TensorMechanicsHardeningCutExponential.C:17
TensorMechanicsHardeningCutExponential::value
virtual Real value(Real intnl) const override
Definition: TensorMechanicsHardeningCutExponential.C:46
TensorMechanicsHardeningCutExponential::_val_0
Real _val_0
The value = _val_res + (val_0 - val_res)*exp(-rate*(internal_parameter - _intnl_0)),...
Definition: TensorMechanicsHardeningCutExponential.h:41
TensorMechanicsHardeningCutExponential::_intnl_0
Real _intnl_0
The value = _val_res + (val_0 - val_res)*exp(-rate*(internal_parameter - _intnl_0)),...
Definition: TensorMechanicsHardeningCutExponential.h:47
TensorMechanicsHardeningCutExponential::_rate
Real _rate
The value = _val_res + (val_0 - val_res)*exp(-rate*(internal_parameter - _intnl_0)),...
Definition: TensorMechanicsHardeningCutExponential.h:50
TensorMechanicsHardeningModel.h
TensorMechanicsHardeningModel
Hardening Model base class.
Definition: TensorMechanicsHardeningModel.h:27