version 0.4.1
easvariants.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
15
16namespace Ikarus::EAS {
17namespace Impl {
18 template <typename GEO, int myDim, typename ESS>
19 struct EASType;
20 template <typename GEO>
21 struct EASType<GEO, 3, EAS::LinearStrain>
22 {
23 using type = std::variant<E0<GEO>, E9<GEO>, E21<GEO>>;
24 };
25 template <typename GEO>
26 struct EASType<GEO, 2, EAS::LinearStrain>
27 {
28 using type = std::variant<E0<GEO>, E4<GEO>, E5<GEO>, E7<GEO>, E11<GEO>>;
29 };
30 template <typename GEO, int myDim>
31 struct EASType<GEO, myDim, EAS::GreenLagrangeStrain>
32 {
33 using type = EASType<GEO, myDim, EAS::LinearStrain>::type;
34 };
35} // namespace Impl
36
41template <typename ES, typename GEO>
43{
44 static constexpr int myDim = GEO::mydimension;
45 using Variant = Impl::EASType<GEO, myDim, ES>::type;
46 static_assert((myDim == 2) or (myDim == 3), "EAS variants are only available for 2D and 3D elements.");
47
53 template <typename F>
54 void operator()(F&& f) const {
55 std::visit([&]<typename EAST>(const EAST& easFunction) { f(easFunction); }, var_);
56 }
57
62 auto numberOfEASParameters() const {
63 return std::visit([]<typename EAST>(const EAST&) -> int { return EAST::enhancedStrainSize; }, var_);
64 }
65
71 bool isDisplacmentBased() const { return numberOfEASParameters() == 0; }
72
74 numberOfEASParameters_ = numberOfEASParameters;
75 if (geometry_)
76 createEASType();
77 }
78 void bind(const GEO& geometry) {
79 geometry_ = std::make_optional<GEO>(geometry);
80 createEASType();
81 }
82
83private:
84 void createEASType() {
85 const std::string& errorMessage = "The given EAS parameters are not available for enhancing " + ES::name() +
86 " strain measure for the " + std::to_string(myDim) + "D case.";
87
88 if constexpr (std::same_as<ES, EAS::LinearStrain> or std::same_as<ES, EAS::GreenLagrangeStrain>) {
89 if (numberOfEASParameters_ == 0) {
90 var_ = E0(geometry_.value());
91 return;
92 }
93 if constexpr (myDim == 2) {
94 switch (numberOfEASParameters_) {
95 case 4:
96 var_ = E4(geometry_.value());
97 break;
98 case 5:
99 var_ = E5(geometry_.value());
100 break;
101 case 7:
102 var_ = E7(geometry_.value());
103 break;
104 case 11:
105 var_ = E11(geometry_.value());
106 break;
107 default:
108 DUNE_THROW(Dune::NotImplemented, errorMessage);
109 }
110 } else if constexpr (myDim == 3) {
111 switch (numberOfEASParameters_) {
112 case 9:
113 var_ = E9(geometry_.value());
114 break;
115 case 21:
116 var_ = E21(geometry_.value());
117 break;
118 default:
119 DUNE_THROW(Dune::NotImplemented, errorMessage);
120 }
121 }
122 }
123 }
124 std::optional<GEO> geometry_;
125 Variant var_;
126 int numberOfEASParameters_;
127};
128} // namespace Ikarus::EAS
Helper for the Eigen::Tensor types.
Definition of the types of EAS formulations for 2D and 3D linear solid elements, where linear and Gre...
Header file for various EAS functions.
Definition: greenlagrangestrain.hh:19
Wrapper around the EAS variant, contains helper functions.
Definition: easvariants.hh:43
void setEASType(int numberOfEASParameters)
Definition: easvariants.hh:73
static constexpr int myDim
Definition: easvariants.hh:44
auto numberOfEASParameters() const
A helper function to get the number of EAS parameters.
Definition: easvariants.hh:62
Impl::EASType< GEO, myDim, ES >::type Variant
Definition: easvariants.hh:45
void operator()(F &&f) const
Executes a function F on the variant, if enhancedStrainSize is not zero.
Definition: easvariants.hh:54
bool isDisplacmentBased() const
A helper function to identify if the formulation is purely displacement-based, i.e....
Definition: easvariants.hh:71
void bind(const GEO &geometry)
Definition: easvariants.hh:78
Dummy struct for displacement-based EAS elements, i.e. 0 enhanced modes.
Definition: linearandglstrains.hh:46