25#include "neml2/models/solid_mechanics/PerzynaPlasticFlowRate.h"
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.";
42 options.set(
"reference_stress").doc() =
"Reference stress";
45 options.set(
"exponent").doc() =
"Power-law exponent";
52 _eta(declare_parameter<
Scalar>(
"eta",
"reference_stress")),
53 _n(declare_parameter<
Scalar>(
"n",
"exponent"))
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