12#include <dune/common/tuplevector.hh>
30template <
typename PreFE,
template <
typename,
typename>
class... Skills>
48 template <
template <
typename,
typename>
class Skill>
56 consteval static auto computeSupportedResultTypes() {
57 if constexpr (
requires {
typename T::SupportedResultTypes; })
58 return typename T::SupportedResultTypes();
70 template <
bool,
typename =
void>
86 static constexpr bool requirementDetected =
87 Dune::Std::is_detected_v<std::common_type_t,
89 static_assert(requirementDetected or
sizeof...(Skills) == 0,
"The skills must have a common fe requirement type.");
97 template <
typename ES>
98 static constexpr bool hasEAS = hasSkill<EnhancedAssumedStrainsPre<ES>::template Skill>();
115 return self.template calculateScalarImpl<double>(req, affordance);
126 typename Traits::template VectorType<> force) {
127 self.template calculateVectorImpl<double>(req, affordance, force);
138 typename Traits::template MatrixType<> K) {
139 self.template calculateMatrixImpl<double>(req, affordance, K);
152 template <
template <
typename,
int,
int>
class RT>
154 m.template calculateAtImpl<RT>(req, local, Dune::PriorityTag<10>());
157 return this->
template calculateAtImpl<RT>(req, local, Dune::PriorityTag<10>());
161 template <
typename Sk>
163 if constexpr (
requires { this->Sk::bindImpl(); })
167 static constexpr bool implementsCalculateScalarImpl =
169 const std::optional<std::reference_wrapper<const Eigen::VectorX<double>>>& dx) {
188 template <
typename ScalarType =
double>
189 requires implementsCalculateScalarImpl
192 const std::optional<std::reference_wrapper<
const Eigen::VectorX<ScalarType>>>& dx = std::nullopt)
const {
194 par, affordance, dx) +
195 ... + ScalarType{0});
199 static constexpr bool implementsCalculateVectorImpl =
201 typename Traits::template VectorType<double> force,
202 const std::optional<std::reference_wrapper<const Eigen::VectorX<double>>>& dx) {
216 template <
typename ScalarType>
217 requires implementsCalculateVectorImpl
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,
227 static constexpr bool implementsCalculateMatrixImpl =
229 typename Traits::template MatrixType<double> K,
230 const std::optional<std::reference_wrapper<const Eigen::VectorX<double>>>& dx) {
244 template <
typename ScalarType>
245 requires implementsCalculateMatrixImpl
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,
255 template <
typename Sk>
257 const std::remove_reference_t<
typename Traits::template VectorType<>>& correction) {
258 if constexpr (
requires { Sk::updateStateImpl(par, correction); })
259 Sk::updateStateImpl(par, correction);
273 const std::remove_reference_t<
typename Traits::template VectorType<>>& correction) {
274 (invokeUpdateState<
Skills<
PreFE,
typename PreFE::template
FE<
Skills...>>>(par, correction), ...);
278 template <
typename Sk,
typename BC,
typename MT>
279 auto invokeSubscribeTo(BC& bc) {
282#if defined(__clang__)
283 if constexpr (
requires { this->Sk::template subscribeToImpl<MT>(bc); }) {
285 if constexpr (
requires { Sk::template subscribeToImpl<MT>(bc); }) {
287 Sk::template subscribeToImpl<MT>(bc);
300 template <
typename MT,
typename BC>
314 const auto&
underlying()
const {
return static_cast<const typename PreFE::template
FE<
Skills...
>&>(*this); }
328template <
typename... ARGS>
331 using Args = std::tuple<ARGS...>;
342template <
typename...
Args>
356template <
typename... Args1,
typename... Args2>
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
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