NEML2 1.4.0
Loading...
Searching...
No Matches
KocksMeckingFlowSwitch.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/KocksMeckingFlowSwitch.h"
26
27namespace neml2
28{
29register_NEML2_object(KocksMeckingFlowSwitch);
30
33{
35 options.doc() = "Switches between rate independent and rate dependent flow rules based on the "
36 "value of the Kocks-Mecking normalized activation energy. For activation "
37 "energies less than the threshold use the rate independent flow rule, for values "
38 "greater than the threshold use the rate dependent flow rule. This version uses "
39 "a soft switch between the models, based on a tanh sigmoid function.";
40
41 options.set<CrossRef<Scalar>>("g0");
42 options.set("g0").doc() = "Critical value of activation energy";
43
44 options.set<VariableName>("activation_energy") = VariableName("forces", "g");
45 options.set("activation_energy").doc() = "The input name of the activation energy";
46
47 options.set<Real>("sharpness") = 1.0;
48 options.set("sharpness").doc() = "A steepness parameter that controls the tanh mixing of the "
49 "models. Higher values gives a sharper transition.";
50
51 options.set<VariableName>("rate_independent_flow_rate") =
52 VariableName("state", "internal", "ri_rate");
53 options.set("rate_independent_flow_rate").doc() = "Input name of the rate independent flow rate";
54 options.set<VariableName>("rate_dependent_flow_rate") =
55 VariableName("state", "internal", "rd_rate");
56 options.set("rate_dependent_flow_rate").doc() = "Input name of the rate dependent flow rate";
57
58 options.set<VariableName>("flow_rate") = VariableName("state", "internal", "gamma_rate");
59 options.set("flow_rate").doc() = "Output name for the mixed flow rate";
60 return options;
61}
62
64 : Model(options),
65 _g0(declare_parameter<Scalar>("g0", "g0")),
66 _g(declare_input_variable<Scalar>("activation_energy")),
67 _sharp(options.get<Real>("sharpness")),
68 _ri_flow(declare_input_variable<Scalar>("rate_independent_flow_rate")),
69 _rd_flow(declare_input_variable<Scalar>("rate_dependent_flow_rate")),
70 _gamma_dot(declare_output_variable<Scalar>("flow_rate"))
71{
72}
73
74void
76{
77 neml_assert(!d2out_din2, "Second derivatives not implemented");
78
79 auto sig = (math::tanh(_sharp * (_g - _g0)) + 1.0) / 2.0;
80
81 if (out)
82 {
83 _gamma_dot = sig * _rd_flow + (1.0 - sig) * _ri_flow;
84 }
85 if (dout_din)
86 {
88 _gamma_dot.d(_ri_flow) = 1.0 - sig;
89 auto partial = 0.5 * _sharp * math::pow(1.0 / math::cosh(_sharp * (_g - _g0)), 2.0);
90 auto deriv = partial * (_rd_flow - _ri_flow);
91
93 if (const auto g0 = nl_param("g0"))
94 _gamma_dot.d(*g0) = -deriv;
95 }
96}
97
98} // namespace neml2
The wrapper (decorator) for cross-referencing unresolved values at parse time.
Definition CrossRef.h:52
Definition KocksMeckingFlowSwitch.h:32
const Variable< Scalar > & _rd_flow
The rate dependent flow rate.
Definition KocksMeckingFlowSwitch.h:54
const Variable< Scalar > & _ri_flow
The rate independent flow rate.
Definition KocksMeckingFlowSwitch.h:51
const Real _sharp
The steepness parameter.
Definition KocksMeckingFlowSwitch.h:48
const Scalar & _g0
The critical activation energy value.
Definition KocksMeckingFlowSwitch.h:42
KocksMeckingFlowSwitch(const OptionSet &options)
Definition KocksMeckingFlowSwitch.cxx:63
Variable< Scalar > & _gamma_dot
Plastic flow rate.
Definition KocksMeckingFlowSwitch.h:57
static OptionSet expected_options()
Definition KocksMeckingFlowSwitch.cxx:32
const Variable< Scalar > & _g
The KM activation energy.
Definition KocksMeckingFlowSwitch.h:45
void set_value(bool out, bool dout_din, bool d2out_din2) override
The map between input -> output, and optionally its derivatives.
Definition KocksMeckingFlowSwitch.cxx:75
The accessor containing all the information needed to access an item in a LabeledAxis.
Definition LabeledAxisAccessor.h:44
The base class for all constitutive models.
Definition Model.h:53
const torch::TensorOptions & options() const
This model's tensor options.
Definition Model.h:116
static OptionSet expected_options()
Definition Model.cxx:32
A custom map-like data structure. The keys are strings, and the values can be nonhomogeneously typed.
Definition OptionSet.h:59
const VariableBase * nl_param(const std::string &) const
Query the existence of a nonlinear parameter.
Definition ParameterStore.cxx:56
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 tanh(const Derived &a)
Definition BatchTensorBase.h:387
Derived cosh(const Derived &a)
Definition BatchTensorBase.h:369
Derived pow(const Derived &a, const Real &n)
Definition BatchTensorBase.h:332
Definition CrossRef.cxx:32
double Real
Definition types.h:31
LabeledAxisAccessor VariableName
Definition Variable.h:35
void neml_assert(bool assertion, Args &&... args)
Definition error.h:73