25#include "neml2/models/solid_mechanics/crystal_plasticity/ResolvedShear.h"
26#include "neml2/models/crystallography/CrystalGeometry.h"
28#include "neml2/tensors/tensors.h"
29#include "neml2/tensors/list_tensors.h"
40 options.doc() =
"Calculates the resolved shears as \\f$ \\tau_i = \\sigma : Q "
41 "\\operatorname{sym}\\left(d_i \\otimes n_i \\right) Q^T \\f$ where \\f$ \\tau_i "
42 "\\f$ is the resolved shear on slip system i, \\f$ \\sigma \\f$ is the Cauchy "
43 "stress \\f$ Q \\f$ is the orientation matrix, \\f$ d_i \\f$ is the slip "
44 "direction, and \\f$ n_i \\f$ is the slip system normal.";
48 options.set(
"resolved_shears").doc() =
"The name of the resolved shears";
51 options.set(
"stress").doc() =
"The name of the Cauchy stress tensor";
54 options.set(
"orientation").doc() =
"The name of the orientation matrix";
56 options.set<std::string>(
"crystal_geometry_name") =
"crystal_geometry";
57 options.set(
"crystal_geometry_name").doc() =
58 "The name of the data object with the crystallographic information";
64 _crystal_geometry(register_data<crystallography::CrystalGeometry>(
65 options.get<std::
string>(
"crystal_geometry_name"))),
66 _rss(declare_output_variable_list<
Scalar>(_crystal_geometry.nslip(),
"resolved_shears")),
67 _S(declare_input_variable<
SR2>(
"stress")),
68 _R(declare_input_variable<
R2>(
"orientation"))
88 .
inner(
SR2(
_S).batch_unsqueeze(-1).batch_unsqueeze(-1).batch_unsqueeze(-1)),
Derived list_unsqueeze() const
Unsqueeze on the special list batch dimension.
Definition BatchTensorBase.cxx:275
Definition BatchTensor.h:32
The wrapper (decorator) for cross-referencing unresolved values at parse time.
Definition CrossRef.h:52
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
TorchSize batch_dim() const
This model's batch dim.
Definition Model.h:110
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
A basic R2.
Definition R2.h:42
Calculate the resolved shears.
Definition ResolvedShear.h:38
const Variable< R2 > & _R
Orientation.
Definition ResolvedShear.h:58
const Variable< SR2 > & _S
Stress.
Definition ResolvedShear.h:55
Variable< BatchTensor > & _rss
Resolved shear stresses.
Definition ResolvedShear.h:52
const crystallography::CrystalGeometry & _crystal_geometry
Crystal geometry class with slip geometry.
Definition ResolvedShear.h:49
ResolvedShear(const OptionSet &options)
Definition ResolvedShear.cxx:62
static OptionSet expected_options()
Definition ResolvedShear.cxx:36
void set_value(bool out, bool dout_din, bool d2out_din2) override
Set the resolved shears and associated derivatives.
Definition ResolvedShear.cxx:73
The (logical) symmetric second order tensor.
Definition SR2.h:46
Scalar inner(const SR2 &other) const
Double contraction ij,ij.
Definition SR2.cxx:186
The (logical) scalar.
Definition Scalar.h:38
Definition CrossRef.cxx:32
void neml_assert_dbg(bool assertion, Args &&... args)
Definition error.h:85
LabeledAxisAccessor VariableName
Definition Variable.h:35