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
16
17namespace Ikarus::EAS {
18namespace Impl {
19 template <typename GEO, int myDim, typename ESS>
20 struct EASType;
21 template <typename GEO>
22 struct EASType<GEO, 3, EAS::LinearStrain>
23 {
24 using type = std::variant<E0<GEO>, E9<GEO>, E21<GEO>>;
25 };
26 template <typename GEO>
27 struct EASType<GEO, 2, EAS::LinearStrain>
28 {
29 using type = std::variant<E0<GEO>, E4<GEO>, E5<GEO>, E7<GEO>, E11<GEO>>;
30 };
31 template <typename GEO, int myDim>
32 struct EASType<GEO, myDim, EAS::GreenLagrangeStrain>
33 {
34 using type = EASType<GEO, myDim, EAS::LinearStrain>::type;
35 };
36 template <typename GEO>
37 struct EASType<GEO, 2, EAS::DisplacementGradient>
38 {
39 using type = std::variant<H0<GEO>, H4<GEO>>;
40 };
41 template <typename GEO>
42 struct EASType<GEO, 3, EAS::DisplacementGradient>
43 {
44 using type = std::variant<H0<GEO>, H9<GEO>>;
45 };
46 template <typename GEO, int myDim>
47 struct EASType<GEO, myDim, EAS::DisplacementGradientTransposed>
48 {
49 using type = EASType<GEO, myDim, EAS::DisplacementGradient>::type;
50 };
51} // namespace Impl
52
57template <typename ES, typename GEO>
59{
60 static constexpr int myDim = GEO::mydimension;
61 using Variant = Impl::EASType<GEO, myDim, ES>::type;
62 static_assert((myDim == 2) or (myDim == 3), "EAS variants are only available for 2D and 3D elements.");
63
69 template <typename F>
70 void operator()(F&& f) const {
71 std::visit([&]<typename EAST>(const EAST& easFunction) { f(easFunction); }, var_);
72 }
73
78 auto numberOfEASParameters() const {
79 return std::visit([]<typename EAST>(const EAST&) -> int { return EAST::enhancedStrainSize; }, var_);
80 }
81
87 bool isDisplacmentBased() const { return numberOfEASParameters() == 0; }
88
90 numberOfEASParameters_ = numberOfEASParameters;
91 if (geometry_)
92 createEASType();
93 }
94 void bind(const GEO& geometry) {
95 geometry_ = std::make_optional<GEO>(geometry);
96 createEASType();
97 }
98
99private:
100 void createEASType() {
101 const std::string& errorMessage = "The given EAS parameters are not available for enhancing " + ES::name() +
102 " strain measure for the " + std::to_string(myDim) + "D case.";
103
104 if constexpr (std::same_as<ES, EAS::LinearStrain> or std::same_as<ES, EAS::GreenLagrangeStrain>) {
105 if (numberOfEASParameters_ == 0) {
106 var_ = E0(geometry_.value());
107 return;
108 }
109 if constexpr (myDim == 2) {
110 switch (numberOfEASParameters_) {
111 case 4:
112 var_ = E4(geometry_.value());
113 break;
114 case 5:
115 var_ = E5(geometry_.value());
116 break;
117 case 7:
118 var_ = E7(geometry_.value());
119 break;
120 case 11:
121 var_ = E11(geometry_.value());
122 break;
123 default:
124 DUNE_THROW(Dune::NotImplemented, errorMessage);
125 }
126 } else if constexpr (myDim == 3) {
127 switch (numberOfEASParameters_) {
128 case 9:
129 var_ = E9(geometry_.value());
130 break;
131 case 21:
132 var_ = E21(geometry_.value());
133 break;
134 default:
135 DUNE_THROW(Dune::NotImplemented, errorMessage);
136 }
137 }
138 }
139 if constexpr (std::same_as<ES, EAS::DisplacementGradient> or
140 std::same_as<ES, EAS::DisplacementGradientTransposed>) {
141 if (numberOfEASParameters_ == 0) {
142 var_ = H0(geometry_.value());
143 return;
144 }
145 if constexpr (myDim == 2) {
146 switch (numberOfEASParameters_) {
147 case 4:
148 var_ = H4(geometry_.value());
149 break;
150 default:
151 DUNE_THROW(Dune::NotImplemented, errorMessage);
152 }
153 } else if constexpr (myDim == 3) {
154 switch (numberOfEASParameters_) {
155 case 9:
156 var_ = H9(geometry_.value());
157 break;
158 default:
159 DUNE_THROW(Dune::NotImplemented, errorMessage);
160 }
161 }
162 }
163 }
164 std::optional<GEO> geometry_;
165 Variant var_;
166 int numberOfEASParameters_;
167};
168} // 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: easfunctions/displacementgradient.hh:21
Wrapper around the EAS variant, contains helper functions.
Definition: easvariants.hh:59
void setEASType(int numberOfEASParameters)
Definition: easvariants.hh:89
static constexpr int myDim
Definition: easvariants.hh:60
auto numberOfEASParameters() const
A helper function to get the number of EAS parameters.
Definition: easvariants.hh:78
Impl::EASType< GEO, myDim, ES >::type Variant
Definition: easvariants.hh:61
void operator()(F &&f) const
Executes a function F on the variant, if enhancedStrainSize is not zero.
Definition: easvariants.hh:70
bool isDisplacmentBased() const
A helper function to identify if the formulation is purely displacement-based, i.e....
Definition: easvariants.hh:87
void bind(const GEO &geometry)
Definition: easvariants.hh:94
Dummy struct for displacement-based EAS elements, i.e. 0 enhanced modes.
Definition: linearandglstrains.hh:46
Definition of the types of EAS formulations for 2D and 3D linear solid elements, where the displaceme...