version 0.4.1
feresulttypes.hh
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2021-2024 The Ikarus Developers mueller@ibb.uni-stuttgart.de
2// SPDX-License-Identifier: LGPL-3.0-or-later
3
4#pragma once
5
6#include <type_traits>
7
8#include <Eigen/Core>
9
11
18namespace Ikarus {
19namespace Impl {
20
21 template <bool strainlike = false>
22 struct VectorizeWithVoigt
23 {
24 template <typename Derived>
25 static auto transform(const Eigen::DenseBase<Derived>& mat) {
26 return toVoigt(mat.derived(), strainlike);
27 }
28 };
29
30 struct VectorizeGeneric
31 {
32 template <typename Derived>
33 static auto transform(const Eigen::DenseBase<Derived>& mat) {
34 return mat.derived().reshaped().eval();
35 }
36 };
37
38 template <bool strainlike = false>
39 struct MatricizeWithVoigt
40 {
41 template <typename Derived, int RowsAtCompileTime, int ColsAtCompileTime>
42 static auto transform(const Eigen::DenseBase<Derived>& vec, int rows = RowsAtCompileTime,
43 int cols = ColsAtCompileTime) {
44 assert(rows == RowsAtCompileTime && cols == ColsAtCompileTime &&
45 "Only the fixed size values work for voigt matrices and vectors");
46 static_assert(RowsAtCompileTime != Eigen::Dynamic and ColsAtCompileTime != Eigen::Dynamic,
47 "Voigt notation only available for fixed size vectors and matrices");
48 return fromVoigt(vec.derived(), strainlike);
49 }
50 };
51
52 struct MatricizeGeneric
53 {
54 template <typename Derived, int RowsAtCompileTime, int ColsAtCompileTime>
55 static auto transform(const Eigen::DenseBase<Derived>& vec, int rows = RowsAtCompileTime,
56 int cols = ColsAtCompileTime) {
57 return vec.derived().reshaped(Eigen::fix<RowsAtCompileTime>(rows), Eigen::fix<ColsAtCompileTime>(cols)).eval();
58 }
59 };
60
61} // namespace Impl
62
63namespace ResultTypes {
64#define REGISTER_RESULTTYPE_IMPL(resultTypeName, rowsExpr, colsExpr, MaxRowsExpr, MaxColsExpr, VectorizeStruct, \
65 MatricizeStruct) \
66 template <typename ScalarType, int gridDim, int worldDim> \
67 struct resultTypeName \
68 { \
69 friend std::string toString(resultTypeName) { return #resultTypeName; } \
70 \
71 using type = Eigen::Matrix<ScalarType, rowsExpr, colsExpr, 0, MaxRowsExpr, MaxColsExpr>; \
72 using Vectorizer = VectorizeStruct; \
73 using Matricizer = MatricizeStruct; \
74 \
75 template <typename ScalarType_, int gridDim_, int worldDim_> \
76 using Rebind = resultTypeName<ScalarType_, gridDim_, worldDim_>; \
77 }
78
86#define REGISTER_SIMPLE_SYMMETRIC_RESULTTYPE(resultTypeName, rowsExpr, colsExpr, strainlike) \
87 REGISTER_RESULTTYPE_IMPL(resultTypeName, rowsExpr, colsExpr, rowsExpr, colsExpr, \
88 Ikarus::Impl::VectorizeWithVoigt<strainlike>, Ikarus::Impl::MatricizeWithVoigt<strainlike>)
89
97#define REGISTER_RESULTTYPE(resultTypeName, rowsExpr, colsExpr) \
98 REGISTER_RESULTTYPE_IMPL(resultTypeName, rowsExpr, colsExpr, Ikarus::Impl::VectorizeGeneric, \
99 Ikarus::Impl::MatricizeGeneric)
109#define REGISTER_RESERVED_RESULTTYPE(resultTypeName, rowsExpr, colsExpr, MaxRowsExpr, MaxColsExpr) \
110 REGISTER_RESULTTYPE_IMPL(resultTypeName, rowsExpr, colsExpr, MaxRowsExpr, MaxColsExpr, \
111 Ikarus::Impl::VectorizeGeneric, Ikarus::Impl::MatricizeGeneric)
119#define REGISTER_SIMPLE_RESULTTYPE(resultTypeName, rowsExpr, colsExpr) \
120 REGISTER_RESERVED_RESULTTYPE(resultTypeName, rowsExpr, colsExpr, rowsExpr, colsExpr)
121
124
125 REGISTER_SIMPLE_SYMMETRIC_RESULTTYPE(linearStress, worldDim, worldDim, false);
126 REGISTER_SIMPLE_SYMMETRIC_RESULTTYPE(PK2Stress, worldDim, worldDim, false);
127 REGISTER_SIMPLE_SYMMETRIC_RESULTTYPE(cauchyStress, worldDim, worldDim, false);
128
129 REGISTER_SIMPLE_RESULTTYPE(director, worldDim, 1);
130 REGISTER_SIMPLE_RESULTTYPE(magnetization, worldDim, 1);
131 REGISTER_SIMPLE_RESULTTYPE(gradientNormOfMagnetization, 1, 1);
132 REGISTER_SIMPLE_RESULTTYPE(vectorPotential, worldDim, 1);
133 REGISTER_SIMPLE_RESULTTYPE(divergenceOfVectorPotential, 1, 1);
134
135 REGISTER_SIMPLE_RESULTTYPE(BField, worldDim, 1);
136 REGISTER_SIMPLE_RESULTTYPE(HField, worldDim, 1);
137
138 REGISTER_SIMPLE_RESULTTYPE(customType, Eigen::Dynamic, Eigen::Dynamic);
139} // namespace ResultTypes
140
141enum class ResultShape
142{
143 Vector,
144 Matrix
145};
146
153template <typename RT, ResultShape storedResultShape = ResultShape::Vector>
154struct ResultWrapper : RT
155{
156private:
157 using ResultTypeValueType = typename RT::type;
158 static constexpr Eigen::Index rowsAtCompileTime = ResultTypeValueType::RowsAtCompileTime;
159 static constexpr Eigen::Index colsAtCompileTime = ResultTypeValueType::ColsAtCompileTime;
160 static constexpr bool storedValueIsVector = storedResultShape == ResultShape::Vector;
161
162public:
163 using VecType = std::invoke_result_t<decltype(&RT::Vectorizer::template transform<ResultTypeValueType>),
164 const ResultTypeValueType&>;
165 using MatType =
166 std::invoke_result_t<decltype(&RT::Matricizer::template transform<VecType, rowsAtCompileTime, colsAtCompileTime>),
167 const VecType&, int, int>;
168 using StoredType = std::conditional_t<storedValueIsVector, VecType, MatType>;
169 using ResultType = RT;
170
175 auto asVec() const {
176 if constexpr (storedValueIsVector)
177 return value_;
178 else
179 return RT::Vectorizer::transform(value_);
180 }
181
188 auto asMat(Eigen::Index rows = rowsAtCompileTime, Eigen::Index cols = colsAtCompileTime) const {
189 if constexpr (storedValueIsVector) {
190 if constexpr (rowsAtCompileTime == Eigen::Dynamic)
191 assert(rows != rowsAtCompileTime &&
192 "For dynamic size result types you have to pass rows by hand, since it is not clear how the result "
193 "should be reshaped");
194 if constexpr (colsAtCompileTime == Eigen::Dynamic)
195 assert(cols != colsAtCompileTime &&
196 "For dynamic size result types you have to pass cols by hand, since it is not clear how the result "
197 "should be reshaped");
198 return RT::Matricizer::template transform<VecType, rowsAtCompileTime, colsAtCompileTime>(value_, rows, cols);
199 } else
200 return value_;
201 }
202 explicit ResultWrapper() = default;
203 explicit ResultWrapper(StoredType&& value) { this->value_ = std::move(value); }
204 explicit ResultWrapper(const StoredType& value) { this->value_ = value; }
206 this->value_ = value;
207 return *this;
208 }
210 this->value_ = std::move(value);
211 return *this;
212 }
213
214private:
215 StoredType value_{};
216};
217
218namespace Impl {
219 template <template <typename, int, int> class RT>
220 using DummyRT = RT<double, 1, 1>;
221}
222
228template <template <typename, int, int> class RT>
229auto makeRT() {
230 return Impl::DummyRT<RT>{};
231}
232
238template <template <typename, int, int> class RT>
239auto toString() {
240 return toString(Impl::DummyRT<RT>{});
241}
242
248template <template <typename, int, int> class RT1, template <typename, int, int> class RT2>
249constexpr bool isSameResultType = std::is_same_v<Impl::DummyRT<RT1>, Impl::DummyRT<RT2>>;
250
251} // namespace Ikarus
Helper for the Eigen::Tensor types.
auto fromVoigt(const Eigen::Vector< ST, size > &EVoigt, bool isStrain=true)
Converts a vector given in Voigt notation to a matrix.
Definition: tensorutils.hh:256
constexpr Eigen::Index toVoigt(Eigen::Index i, Eigen::Index j) noexcept
Converts 2D indices to Voigt notation index.
Definition: tensorutils.hh:166
Definition: simpleassemblers.hh:22
constexpr std::string toString(ScalarAffordances _e)
Definition: ferequirements.hh:37
auto makeRT()
Creates a dummy resultType which can be stored in a variable.
Definition: feresulttypes.hh:229
constexpr bool isSameResultType
Meta variable to test whether two ResultType templates are the same.
Definition: feresulttypes.hh:249
ResultShape
Definition: feresulttypes.hh:142
REGISTER_SIMPLE_SYMMETRIC_RESULTTYPE(linearStress, worldDim, worldDim, false)
REGISTER_SIMPLE_RESULTTYPE(director, worldDim, 1)
Container that is used for FE Results. It gives access to the stored value, but can also be used to a...
Definition: feresulttypes.hh:155
std::conditional_t< storedValueIsVector, VecType, MatType > StoredType
Definition: feresulttypes.hh:168
std::invoke_result_t< decltype(&RT::Matricizer::template transform< VecType, rowsAtCompileTime, colsAtCompileTime >), const VecType &, int, int > MatType
Definition: feresulttypes.hh:167
ResultWrapper(StoredType &&value)
Definition: feresulttypes.hh:203
ResultWrapper & operator=(StoredType &&value)
Definition: feresulttypes.hh:209
std::invoke_result_t< decltype(&RT::Vectorizer::template transform< ResultTypeValueType >), const ResultTypeValueType & > VecType
Definition: feresulttypes.hh:164
ResultWrapper & operator=(const StoredType &value)
Definition: feresulttypes.hh:205
auto asVec() const
Returns the stored value as Vector.
Definition: feresulttypes.hh:175
ResultWrapper(const StoredType &value)
Definition: feresulttypes.hh:204
auto asMat(Eigen::Index rows=rowsAtCompileTime, Eigen::Index cols=colsAtCompileTime) const
Returns the stored value as Matrix (if possible)
Definition: feresulttypes.hh:188
RT ResultType
Definition: feresulttypes.hh:169