19 template <
typename GEO,
int myDim,
typename ESS>
21 template <
typename GEO>
22 struct EASType<GEO, 3, EAS::LinearStrain>
24 using type = std::variant<E0<GEO>, E9<GEO>, E21<GEO>>;
26 template <
typename GEO>
27 struct EASType<GEO, 2, EAS::LinearStrain>
29 using type = std::variant<E0<GEO>, E4<GEO>, E5<GEO>, E7<GEO>, E11<GEO>>;
31 template <
typename GEO,
int myDim>
32 struct EASType<GEO, myDim, EAS::GreenLagrangeStrain>
34 using type = EASType<GEO, myDim, EAS::LinearStrain>::type;
36 template <
typename GEO>
37 struct EASType<GEO, 2, EAS::DisplacementGradient>
39 using type = std::variant<H0<GEO>, H4<GEO>>;
41 template <
typename GEO>
42 struct EASType<GEO, 3, EAS::DisplacementGradient>
44 using type = std::variant<H0<GEO>, H9<GEO>>;
46 template <
typename GEO,
int myDim>
47 struct EASType<GEO, myDim, EAS::DisplacementGradientTransposed>
49 using type = EASType<GEO, myDim, EAS::DisplacementGradient>::type;
57template <
typename ES,
typename GEO>
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.");
71 std::visit([&]<
typename EAST>(
const EAST& easFunction) { f(easFunction); }, var_);
79 return std::visit([]<
typename EAST>(
const EAST&) ->
int {
return EAST::enhancedStrainSize; }, var_);
94 void bind(
const GEO& geometry) {
95 geometry_ = std::make_optional<GEO>(geometry);
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.";
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());
109 if constexpr (
myDim == 2) {
110 switch (numberOfEASParameters_) {
112 var_ = E4(geometry_.value());
115 var_ = E5(geometry_.value());
118 var_ = E7(geometry_.value());
121 var_ = E11(geometry_.value());
124 DUNE_THROW(Dune::NotImplemented, errorMessage);
126 }
else if constexpr (
myDim == 3) {
127 switch (numberOfEASParameters_) {
129 var_ = E9(geometry_.value());
132 var_ = E21(geometry_.value());
135 DUNE_THROW(Dune::NotImplemented, errorMessage);
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());
145 if constexpr (
myDim == 2) {
146 switch (numberOfEASParameters_) {
148 var_ = H4(geometry_.value());
151 DUNE_THROW(Dune::NotImplemented, errorMessage);
153 }
else if constexpr (
myDim == 3) {
154 switch (numberOfEASParameters_) {
156 var_ = H9(geometry_.value());
159 DUNE_THROW(Dune::NotImplemented, errorMessage);
164 std::optional<GEO> geometry_;
166 int numberOfEASParameters_;
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...