NEML2 1.4.0
Loading...
Searching...
No Matches
PerzynaPlasticFlowRate.cxx
1// Copyright 2023, UChicago Argonne, LLC
2// All Rights Reserved
3// Software Name: NEML2 -- the New Engineering material Model Library, version 2
4// By: Argonne National Laboratory
5// OPEN SOURCE LICENSE (MIT)
6//
7// Permission is hereby granted, free of charge, to any person obtaining a copy
8// of this software and associated documentation files (the "Software"), to deal
9// in the Software without restriction, including without limitation the rights
10// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11// copies of the Software, and to permit persons to whom the Software is
12// furnished to do so, subject to the following conditions:
13//
14// The above copyright notice and this permission notice shall be included in
15// all copies or substantial portions of the Software.
16//
17// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23// THE SOFTWARE.
24
25#include "neml2/models/solid_mechanics/PerzynaPlasticFlowRate.h"
26
27namespace neml2
28{
29register_NEML2_object(PerzynaPlasticFlowRate);
30
33{
35 options.doc() =
36 "Perzyna's viscous approximation of the consistent yield envelope (with a power "
37 "law), i.e. \\f$ \\dot{\\gamma} = \\left( \\frac{\\left< f \\right>}{\\eta} \\right)^n \\f$, "
38 "where \\f$ f \\f$ is the yield function, \\f$ \\eta \\f$ is the reference stress, and \\f$ "
39 "n \\f$ is the power-law exponent.";
40
41 options.set<CrossRef<Scalar>>("reference_stress");
42 options.set("reference_stress").doc() = "Reference stress";
43
44 options.set<CrossRef<Scalar>>("exponent");
45 options.set("exponent").doc() = "Power-law exponent";
46
47 return options;
48}
49
51 : PlasticFlowRate(options),
52 _eta(declare_parameter<Scalar>("eta", "reference_stress")),
53 _n(declare_parameter<Scalar>("n", "exponent"))
54{
55}
56
57void
59{
60 // Compute the Perzyna approximation of the yield surface
61 auto Hf = math::heaviside(Scalar(_f));
62 auto f_abs = math::abs(Scalar(_f));
64 auto gamma_dot = gamma_dot_m * Hf;
65
66 if (out)
68
69 if (dout_din || d2out_din2)
70 {
72
73 if (dout_din)
75
76 if (d2out_din2)
77 _gamma_dot.d(_f, _f) = (1 - 1 / f_abs) * dgamma_dot_df;
78 }
79}
80} // namespace neml2
The wrapper (decorator) for cross-referencing unresolved values at parse time.
Definition CrossRef.h:52
const torch::TensorOptions & options() const
This model's tensor options.
Definition Model.h:116
A custom map-like data structure. The keys are strings, and the values can be nonhomogeneously typed.
Definition OptionSet.h:59
Definition PerzynaPlasticFlowRate.h:32
const Scalar & _eta
Reference stress.
Definition PerzynaPlasticFlowRate.h:42
const Scalar & _n
Power-law exponent.
Definition PerzynaPlasticFlowRate.h:45
PerzynaPlasticFlowRate(const OptionSet &options)
Definition PerzynaPlasticFlowRate.cxx:50
static OptionSet expected_options()
Definition PerzynaPlasticFlowRate.cxx:32
void set_value(bool out, bool dout_din, bool d2out_din2) override
The map between input -> output, and optionally its derivatives.
Definition PerzynaPlasticFlowRate.cxx:58
Definition PlasticFlowRate.h:32
const Variable< Scalar > & _f
Plastic yield function.
Definition PlasticFlowRate.h:40
Variable< Scalar > & _gamma_dot
Plastic flow rate.
Definition PlasticFlowRate.h:43
static OptionSet expected_options()
Definition PlasticFlowRate.cxx:30
The (logical) scalar.
Definition Scalar.h:38
Derivative d(const VariableBase &x)
Create a wrapper representing the derivative dy/dx.
Definition Variable.cxx:102
Derived heaviside(const Derived &a)
Definition BatchTensorBase.h:412
Derived abs(const Derived &a)
Definition BatchTensorBase.h:457
Derived pow(const Derived &a, const Real &n)
Definition BatchTensorBase.h:332
Definition CrossRef.cxx:32