version 0.4.1
mixin.hh
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2021-2025 The Ikarus Developers mueller@ibb.uni-stuttgart.de
2// SPDX-License-Identifier: LGPL-3.0-or-later
3
10#pragma once
11
12#include <dune/common/tuplevector.hh>
13
19
20namespace Ikarus {
30template <typename PreFE, template <typename, typename> class... Skills>
31struct FEMixin : public Listener, Skills<PreFE, typename PreFE::template FE<Skills...>>...
32{
38 explicit FEMixin(typename Skills<PreFE, typename PreFE::template FE<Skills...>>::Pre&&... skillsArgs)
39 : Skills<PreFE, typename PreFE::template FE<Skills...>>(
40 std::forward<typename Skills<PreFE, typename PreFE::template FE<Skills...>>::Pre>(skillsArgs))... {}
41
48 template <template <typename, typename> class Skill>
49 static consteval bool hasSkill() {
50 return Ikarus::traits::hasType<Skill<PreFE, typename PreFE::template FE<Skills...>>,
51 std::tuple<Skills<PreFE, typename PreFE::template FE<Skills...>>...>>::value;
52 }
53
54private:
55 template <typename T>
56 consteval static auto computeSupportedResultTypes() {
57 if constexpr (requires { typename T::SupportedResultTypes; })
58 return typename T::SupportedResultTypes();
59 else
60 return std::tuple();
61 }
62
63public:
68 decltype(std::tuple_cat(computeSupportedResultTypes<Skills<PreFE, typename PreFE::template FE<Skills...>>>()...));
69
70 template <bool, typename = void>
72
73 template <typename T>
74 struct RequirementType<false, T>
75 {
77 };
78
79 template <typename T>
80 struct RequirementType<true, T>
81 {
82 using type = std::common_type_t<typename Skills<PreFE, typename PreFE::template FE<Skills...>>::Requirement...>;
83 };
84
85private:
86 static constexpr bool requirementDetected =
87 Dune::Std::is_detected_v<std::common_type_t,
88 typename Skills<PreFE, typename PreFE::template FE<Skills...>>::Requirement...>;
89 static_assert(requirementDetected or sizeof...(Skills) == 0, "The skills must have a common fe requirement type.");
90
91public:
94 using LocalView = typename Traits::LocalView;
95 static constexpr int worldDim = Traits::worlddim;
96
97 template <typename ES>
98 static constexpr bool hasEAS = hasSkill<EnhancedAssumedStrainsPre<ES>::template Skill>();
99
105 static auto createRequirement() { return Requirement(); }
106
114 friend auto calculateScalar(const FEMixin& self, const Requirement& req, ScalarAffordance affordance) {
115 return self.template calculateScalarImpl<double>(req, affordance);
116 }
117
125 friend void calculateVector(const FEMixin& self, const Requirement& req, VectorAffordance affordance,
126 typename Traits::template VectorType<> force) {
127 self.template calculateVectorImpl<double>(req, affordance, force);
128 }
129
137 friend void calculateMatrix(const FEMixin& self, const Requirement& req, MatrixAffordance affordance,
138 typename Traits::template MatrixType<> K) {
139 self.template calculateMatrixImpl<double>(req, affordance, K);
140 }
141
142 using Skills<PreFE, typename PreFE::template FE<Skills...>>::calculateAtImpl...;
143
152 template <template <typename, int, int> class RT>
153 requires requires(FEMixin m, const Requirement& req, const Dune::FieldVector<double, Traits::mydim>& local) {
154 m.template calculateAtImpl<RT>(req, local, Dune::PriorityTag<10>());
155 }
157 return this->template calculateAtImpl<RT>(req, local, Dune::PriorityTag<10>());
158 }
159
160private:
161 template <typename Sk>
162 auto invokeBind() {
163 if constexpr (requires { this->Sk::bindImpl(); })
164 Sk::bindImpl();
165 }
166
167 static constexpr bool implementsCalculateScalarImpl =
168 (requires(FEMixin m, const Requirement& par, ScalarAffordance affordance,
169 const std::optional<std::reference_wrapper<const Eigen::VectorX<double>>>& dx) {
170 m.Skills<PreFE, typename PreFE::template FE<Skills...>>::calculateScalarImpl(par, affordance, dx);
171 } ||
172 ...);
173
174public:
178 void bind() { (invokeBind<Skills<PreFE, typename PreFE::template FE<Skills...>>>(), ...); }
179
188 template <typename ScalarType = double>
189 requires implementsCalculateScalarImpl
191 const Requirement& par, ScalarAffordance affordance,
192 const std::optional<std::reference_wrapper<const Eigen::VectorX<ScalarType>>>& dx = std::nullopt) const {
193 return (Skills<PreFE, typename PreFE::template FE<Skills...>>::template calculateScalarImpl<ScalarType>(
194 par, affordance, dx) +
195 ... + ScalarType{0});
196 }
197
198private:
199 static constexpr bool implementsCalculateVectorImpl =
200 (requires(FEMixin m, const Requirement& par, VectorAffordance affordance,
201 typename Traits::template VectorType<double> force,
202 const std::optional<std::reference_wrapper<const Eigen::VectorX<double>>>& dx) {
203 m.Skills<PreFE, typename PreFE::template FE<Skills...>>::calculateVectorImpl(par, affordance, force, dx);
204 } ||
205 ...);
206
207public:
216 template <typename ScalarType>
217 requires implementsCalculateVectorImpl
219 const Requirement& par, VectorAffordance affordance, typename Traits::template VectorType<ScalarType> force,
220 const std::optional<std::reference_wrapper<const Eigen::VectorX<ScalarType>>>& dx = std::nullopt) const {
221 (Skills<PreFE, typename PreFE::template FE<Skills...>>::template calculateVectorImpl<ScalarType>(par, affordance,
222 force, dx),
223 ...);
224 }
225
226private:
227 static constexpr bool implementsCalculateMatrixImpl =
228 (requires(FEMixin m, const Requirement& par, MatrixAffordance affordance,
229 typename Traits::template MatrixType<double> K,
230 const std::optional<std::reference_wrapper<const Eigen::VectorX<double>>>& dx) {
231 m.Skills<PreFE, typename PreFE::template FE<Skills...>>::calculateMatrixImpl(par, affordance, K, dx);
232 } ||
233 ...);
234
235public:
244 template <typename ScalarType>
245 requires implementsCalculateMatrixImpl
247 const Requirement& par, MatrixAffordance affordance, typename Traits::template MatrixType<ScalarType> K,
248 const std::optional<std::reference_wrapper<const Eigen::VectorX<ScalarType>>>& dx = std::nullopt) const {
249 (Skills<PreFE, typename PreFE::template FE<Skills...>>::template calculateMatrixImpl<ScalarType>(par, affordance, K,
250 dx),
251 ...);
252 }
253
254private:
255 template <typename Sk>
256 auto invokeUpdateState(const Requirement& par,
257 const std::remove_reference_t<typename Traits::template VectorType<>>& correction) {
258 if constexpr (requires { Sk::updateStateImpl(par, correction); })
259 Sk::updateStateImpl(par, correction);
260 }
261
262public:
272 void updateState(const Requirement& par,
273 const std::remove_reference_t<typename Traits::template VectorType<>>& correction) {
274 (invokeUpdateState<Skills<PreFE, typename PreFE::template FE<Skills...>>>(par, correction), ...);
275 }
276
277private:
278 template <typename Sk, typename BC, typename MT>
279 auto invokeSubscribeTo(BC& bc) {
280 // For Clang-16: we need the this-> otherwise the code in the if clause will never be called. For Gcc-12.2: with
281 // the this-> it throws a compiler error in certain cases
282#if defined(__clang__)
283 if constexpr (requires { this->Sk::template subscribeToImpl<MT>(bc); }) {
284#else
285 if constexpr (requires { Sk::template subscribeToImpl<MT>(bc); }) {
286#endif
287 Sk::template subscribeToImpl<MT>(bc);
288 }
289 }
290
291public:
300 template <typename MT, typename BC>
301 auto subscribeTo(BC& bc) {
302 (invokeSubscribeTo<Skills<PreFE, typename PreFE::template FE<Skills...>>, traits::MaybeDereferencedType<BC>, MT>(
304 ...);
305 return *this;
306 }
307
308protected:
314 const auto& underlying() const { return static_cast<const typename PreFE::template FE<Skills...>&>(*this); }
320 auto& underlying() { return static_cast<typename PreFE::template FE<Skills...>&>(*this); }
321};
322
328template <typename... ARGS>
329struct Skills
330{
331 using Args = std::tuple<ARGS...>;
333};
334
342template <typename... Args>
343auto skills(const Args&... args) {
344 return Skills<std::remove_cvref_t<Args>...>{std::forward_as_tuple(std::remove_cvref_t<Args>(args)...)};
345}
346
356template <typename... Args1, typename... Args2>
357auto merge(const Skills<Args1...>& sk1, const Skills<Args2...>& sk2) {
358 return Skills<std::remove_cvref_t<Args1>..., std::remove_cvref_t<Args2>...>{std::tuple_cat(sk1.args, sk2.args)};
359}
360
361} // namespace Ikarus
Helper for dune-functions.
Enums for observer messages.
Implementation of the observer design pattern with broadcasters.
FETraits template structure for finite element traits.
Definition of the EAS class.
Definition: assemblermanipulatorbuildingblocks.hh:22
MatrixAffordance
A strongly typed enum class representing the matrix affordance.
Definition: ferequirements.hh:64
auto merge(const Skills< Args1... > &sk1, const Skills< Args2... > &sk2)
Function to merge two Skills instances.
Definition: mixin.hh:357
VectorAffordance
A strongly typed enum class representing the vector affordance.
Definition: ferequirements.hh:49
auto skills(const Args &... args)
Function to create a Skills instance with the given skills.
Definition: mixin.hh:343
ScalarAffordance
A strongly typed enum class representing the scalar affordance.
Definition: ferequirements.hh:38
decltype(auto) maybeDeref(T &t)
if T is a pointer type, return the dereferenced value, otherwise return the value itself.
Definition: functionhelper.hh:118
typename MaybeDereference< T >::type MaybeDereferencedType
Definition: utils/concepts.hh:686
FE class is a base class for all finite elements.
Definition: febase.hh:79
PreFE struct acts as a convenient wrapper for the FE class to access different type traits.
Definition: febase.hh:33
FETraits< BH, useEigenRef, useFlat > Traits
Definition: febase.hh:38
Class representing the requirements for finite element calculations.
Definition: ferequirements.hh:223
Traits for handling finite elements.
Definition: fetraits.hh:25
typename Basis::LocalView LocalView
Type of the local view.
Definition: fetraits.hh:42
static constexpr int worlddim
Dimension of the world space.
Definition: fetraits.hh:60
CRTP mixin class for finite elements with additional skills.
Definition: mixin.hh:32
auto subscribeTo(BC &bc)
Subscribes the elements to listen to functions provided from the skills emitted by the given broadcas...
Definition: mixin.hh:301
static auto createRequirement()
Create a Requirement object.
Definition: mixin.hh:105
auto calculateScalarImpl(const Requirement &par, ScalarAffordance affordance, const std::optional< std::reference_wrapper< const Eigen::VectorX< ScalarType > > > &dx=std::nullopt) const
Calculate the scalar value in each skill and joins them by +.
Definition: mixin.hh:190
FEMixin(typename Skills< PreFE, typename PreFE::template FE< Skills... > >::Pre &&... skillsArgs)
Constructor for the FEMixin class.
Definition: mixin.hh:38
friend void calculateVector(const FEMixin &self, const Requirement &req, VectorAffordance affordance, typename Traits::template VectorType<> force)
Calculate the vector associated with the given Requirement.
Definition: mixin.hh:125
static constexpr int worldDim
Definition: mixin.hh:95
auto calculateAt(const Requirement &req, const Dune::FieldVector< double, Traits::mydim > &local) const
Calculate the element values at a specific location for a given ResultType.
Definition: mixin.hh:156
void updateState(const Requirement &par, const std::remove_reference_t< typename Traits::template VectorType<> > &correction)
Call all updateStateImpl functions if the skill implements it.
Definition: mixin.hh:272
friend auto calculateScalar(const FEMixin &self, const Requirement &req, ScalarAffordance affordance)
Calculate the scalar value associated with the given Requirement.
Definition: mixin.hh:114
void calculateVectorImpl(const Requirement &par, VectorAffordance affordance, typename Traits::template VectorType< ScalarType > force, const std::optional< std::reference_wrapper< const Eigen::VectorX< ScalarType > > > &dx=std::nullopt) const
Calculate the vector for each skill.
Definition: mixin.hh:218
static constexpr bool hasEAS
Definition: mixin.hh:98
void calculateMatrixImpl(const Requirement &par, MatrixAffordance affordance, typename Traits::template MatrixType< ScalarType > K, const std::optional< std::reference_wrapper< const Eigen::VectorX< ScalarType > > > &dx=std::nullopt) const
Calculate the matrix for each skill.
Definition: mixin.hh:246
RequirementType< requirementDetected >::type Requirement
Definition: mixin.hh:93
auto & underlying()
Get a reference to the underlying finite element object.
Definition: mixin.hh:320
friend void calculateMatrix(const FEMixin &self, const Requirement &req, MatrixAffordance affordance, typename Traits::template MatrixType<> K)
Calculate the matrix associated with the given Requirement.
Definition: mixin.hh:137
const auto & underlying() const
Get a reference to the underlying finite element object.
Definition: mixin.hh:314
static consteval bool hasSkill()
Checks if the mixin class has a specific skill.
Definition: mixin.hh:49
void bind()
Call all bind functions if the skill implements it.
Definition: mixin.hh:178
decltype(std::tuple_cat(computeSupportedResultTypes< Skills< PreFE, typename PreFE::template FE< Skills... > > >()...)) SupportedResultTypes
Type alias for the supported result types by the mixin.
Definition: mixin.hh:68
typename Traits::LocalView LocalView
Definition: mixin.hh:94
Definition: mixin.hh:71
std::common_type_t< typename Skills< PreFE, typename PreFE::template FE< Skills... > >::Requirement... > type
Definition: mixin.hh:82
Struct representing a collection of skills.
Definition: mixin.hh:330
std::tuple< ARGS... > Args
Definition: mixin.hh:331
Args args
Definition: mixin.hh:332
Definition: utils/dirichletvalues.hh:32
Definition: listener.hh:27
Type trait to check if a specified type is present in a tuple.
Definition: traits.hh:88