25#include "neml2/models/solid_mechanics/KocksMeckingFlowSwitch.h"
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.";
42 options.set(
"g0").doc() =
"Critical value of activation energy";
45 options.set(
"activation_energy").doc() =
"The input name of the activation energy";
48 options.set(
"sharpness").doc() =
"A steepness parameter that controls the tanh mixing of the "
49 "models. Higher values gives a sharper transition.";
53 options.set(
"rate_independent_flow_rate").doc() =
"Input name of the rate independent flow rate";
56 options.set(
"rate_dependent_flow_rate").doc() =
"Input name of the rate dependent flow rate";
59 options.set(
"flow_rate").doc() =
"Output name for the mixed flow rate";
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"))
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:33
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:33
LabeledAxisAccessor VariableName
Definition Variable.h:35
void neml_assert(bool assertion, Args &&... args)
Definition error.h:73