25#include "neml2/models/solid_mechanics/Elasticity.h"
33 options.doc() =
"Relate elastic strain to stress";
36 options.set(
"strain").doc() =
"Elastic strain";
39 options.set(
"stress").doc() =
"Stress";
41 options.set<
bool>(
"compliance") =
false;
42 options.set(
"compliance").doc() =
43 "Whether the model defines the compliance relationship, i.e., mapping from stress to elastic "
44 "strain. When set to false (default), the model maps elastic strain to stress.";
46 options.set<
bool>(
"rate_form") =
false;
47 options.set(
"rate_form").doc() =
48 "Whether the model defines the stress-strain relationship in rate form. When set to true, "
49 "the model maps elastic strain *rate* to stress *rate*.";
56 _compliance(options.get<
bool>(
"compliance")),
57 _rate_form(options.get<
bool>(
"rate_form")),
58 _strain(options.get<
VariableName>(
"strain").with_suffix(_rate_form ?
"_rate" :
"")),
59 _stress(options.get<
VariableName>(
"stress").with_suffix(_rate_form ?
"_rate" :
"")),
60 _from(declare_input_variable<
SR2>(_compliance ? _stress : _strain)),
61 _to(declare_output_variable<
SR2>(_compliance ? _strain : _stress))
The wrapper (decorator) for cross-referencing unresolved values at parse time.
Definition CrossRef.h:52
static OptionSet expected_options()
Definition Elasticity.cxx:30
Elasticity(const OptionSet &options)
Definition Elasticity.cxx:54
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
The (logical) symmetric second order tensor.
Definition SR2.h:46
Definition CrossRef.cxx:32
LabeledAxisAccessor VariableName
Definition Variable.h:35