https://mooseframework.inl.gov
Loading...
Searching...
No Matches
SolidMechanicsHardeningPowerRule.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
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
20{
21public:
23
25
26 virtual Real value(Real intnl) const override;
27
28 virtual Real derivative(Real intnl) const override;
29
30 virtual std::string modelName() const override;
31
32private:
34 const Real _value_0;
35
37 const Real _epsilon0;
38
40 const Real _exponent;
41};
const InputParameters & parameters() const
Power-Rule Hardening defined by: assuming p = internal_parameter, then value = value_0 * (p / epsilon...
const Real _value_0
The value = value_0 * (p / epsilon0 + 1)^{exponent})
const Real _exponent
The value = value_0 * (p / epsilon0 + 1)^{exponent})
virtual Real derivative(Real intnl) const override
virtual Real value(Real intnl) const override
const Real _epsilon0
The value = value_0 * (p / epsilon0 + 1)^{exponent})
virtual std::string modelName() const override