18 template <
typename GEO,
int myDim,
typename ESS>
20 template <
typename GEO>
21 struct EASType<GEO, 3, EAS::LinearStrain>
23 using type = std::variant<E0<GEO>, E9<GEO>, E21<GEO>>;
25 template <
typename GEO>
26 struct EASType<GEO, 2, EAS::LinearStrain>
28 using type = std::variant<E0<GEO>, E4<GEO>, E5<GEO>, E7<GEO>, E11<GEO>>;
30 template <
typename GEO,
int myDim>
31 struct EASType<GEO, myDim, EAS::GreenLagrangeStrain>
33 using type = EASType<GEO, myDim, EAS::LinearStrain>::type;
41template <
typename ES,
typename GEO>
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.");
55 std::visit([&]<
typename EAST>(
const EAST& easFunction) { f(easFunction); }, var_);
63 return std::visit([]<
typename EAST>(
const EAST&) ->
int {
return EAST::enhancedStrainSize; }, var_);
78 void bind(
const GEO& geometry) {
79 geometry_ = std::make_optional<GEO>(geometry);
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.";
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());
93 if constexpr (
myDim == 2) {
94 switch (numberOfEASParameters_) {
96 var_ = E4(geometry_.value());
99 var_ = E5(geometry_.value());
102 var_ = E7(geometry_.value());
105 var_ = E11(geometry_.value());
108 DUNE_THROW(Dune::NotImplemented, errorMessage);
110 }
else if constexpr (
myDim == 3) {
111 switch (numberOfEASParameters_) {
113 var_ = E9(geometry_.value());
116 var_ = E21(geometry_.value());
119 DUNE_THROW(Dune::NotImplemented, errorMessage);
124 std::optional<GEO> geometry_;
126 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: 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