NEML2 1.4.0
Loading...
Searching...
No Matches
Interpolation.h
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#pragma once
26
27#include "neml2/models/NonlinearParameter.h"
28
29namespace neml2
30{
47template <typename T>
49{
50public:
52
54
55protected:
57 const Scalar & _X;
58
60 const T & _Y;
61
64};
65
66template <typename T>
69{
70 // This is the only way of getting tensor type in a static method like this...
71 // Trim 6 chars to remove 'neml2::'
72 auto tensor_type = utils::demangle(typeid(T).name()).substr(7);
73
75 options.doc() = "Interpolate a " + tensor_type +
76 " as a function of the given argument. See neml2::Interpolation for rules on "
77 "shapes of the interpolant and the argument.";
78
79 options.set<VariableName>("argument");
80 options.set("argument").doc() = "Argument used to query the interpolant";
81
82 options.set<CrossRef<Scalar>>("abscissa");
83 options.set("abscissa").doc() = "Scalar defining the abscissa values of the interpolant";
84
85 options.set<CrossRef<T>>("ordinate");
86 options.set("ordinate").doc() = tensor_type + " defining the ordinate values of the interpolant";
87
88 return options;
89}
90
91template <typename T>
93 : NonlinearParameter<T>(options),
94 _X(this->template declare_parameter<Scalar>("X", "abscissa")),
95 _Y(this->template declare_parameter<T>("Y", "ordinate")),
96 _x(this->template declare_input_variable<Scalar>("argument"))
97{
98}
99} // namespace neml2
The wrapper (decorator) for cross-referencing unresolved values at parse time.
Definition CrossRef.h:52
The base class for interpolated nonlinear parameter.
Definition Interpolation.h:49
const Scalar & _X
The abscissa values of the interpolant.
Definition Interpolation.h:57
const Variable< Scalar > & _x
Argument of interpolation.
Definition Interpolation.h:63
const T & _Y
The ordinate values of the interpolant.
Definition Interpolation.h:60
static OptionSet expected_options()
Definition Interpolation.h:68
Interpolation(const OptionSet &options)
Definition Interpolation.h:92
The accessor containing all the information needed to access an item in a LabeledAxis.
Definition LabeledAxisAccessor.h:44
const torch::TensorOptions & options() const
This model's tensor options.
Definition Model.h:116
The base class for nonlinear parameters.
Definition NonlinearParameter.h:51
static OptionSet expected_options()
Definition NonlinearParameter.cxx:31
A custom map-like data structure. The keys are strings, and the values can be nonhomogeneously typed.
Definition OptionSet.h:59
const std::string & doc() const
A readonly reference to the option set's docstring.
Definition OptionSet.h:91
T & set(const std::string &)
Definition OptionSet.h:436
The (logical) scalar.
Definition Scalar.h:38
std::string demangle(const char *name)
Definition parser_utils.cxx:46
Definition CrossRef.cxx:32