version 0.4.1
finiteelements/mechanics/materials/interface.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
18
19namespace Ikarus::Materials {
20
21#ifndef DOXYGEN
22template <class MImpl>
23struct Material;
24
25template <auto stressIndexPair, typename MImpl>
26struct VanishingStress;
27
28template <auto strainIndexPair, typename MImpl>
29struct VanishingStrain;
30#endif
31
40template <typename MAT, typename S>
41consteval bool hasCorrectSize() {
42 if constexpr (Concepts::EigenVector6<S> or Concepts::EigenMatrix33<S>)
43 return true;
44 if constexpr (MAT::isReduced and Concepts::EigenVector<S>) {
45 return S::RowsAtCompileTime == MAT::freeStrains;
46 } else
47 return false;
48}
49
56template <typename MAT, typename S>
57concept CorrectStrainSize = hasCorrectSize<MAT, S>();
58
78template <class MI>
80{
81 using MaterialImpl = MI;
82
86 static constexpr bool isReduced = traits::isSpecializationNonTypeAndTypes<VanishingStress, MaterialImpl>::value or
87 traits::isSpecializationNonTypeAndTypes<VanishingStrain, MaterialImpl>::value;
88
89 static constexpr bool isLinear = MI::strainTag == StrainTags::linear;
90
96 constexpr const MaterialImpl& impl() const { return static_cast<const MaterialImpl&>(*this); }
97
103 constexpr MaterialImpl& impl() { return static_cast<MaterialImpl&>(*this); }
104
110 [[nodiscard]] constexpr static std::string name() { return MI::nameImpl(); }
111
116 [[nodiscard]] auto materialParameters() const { return impl().materialParametersImpl(); }
117
124 static constexpr double derivativeFactor = MI::derivativeFactorImpl;
125
136 template <StrainTags tag, typename Derived>
138 [[nodiscard]] auto storedEnergy(const Eigen::MatrixBase<Derived>& Eraw) const {
139 decltype(auto) Ev = enlargeIfReduced<Material>(Eraw);
140 decltype(auto) E = transformStrain<tag, MaterialImpl::strainTag>(Ev);
141
142 if constexpr (Concepts::EigenVector<Derived>) { // receiving vector means voigt notation
143 if constexpr (MaterialImpl::energyAcceptsVoigt)
144 return impl().storedEnergyImpl(toVoigt(E));
145 else
146 return impl().storedEnergyImpl(E);
147 } else
148 return impl().storedEnergyImpl(E);
149 }
150
160 template <StrainTags tag, bool voigt = true, typename Derived>
162 [[nodiscard]] auto stresses(const Eigen::MatrixBase<Derived>& Eraw) const {
163 decltype(auto) Ev = enlargeIfReduced<Material>(Eraw);
164 decltype(auto) E = transformStrain<tag, MaterialImpl::strainTag>(Ev);
165 if constexpr (voigt and MaterialImpl::stressToVoigt == false)
166 // user requests a Voigt shaped return but material is not able to. Therefore, we transform it here.
167 return toVoigt(stressesMaybeTransformInputToVoigt<false>(E), false);
168 else
169 return stressesMaybeTransformInputToVoigt<voigt>(E);
170 }
171
181 template <StrainTags tag, bool voigt = true, typename Derived>
183 [[nodiscard]] auto tangentModuli(const Eigen::MatrixBase<Derived>& Eraw) const {
184 decltype(auto) Ev = enlargeIfReduced<Material>(Eraw);
185 decltype(auto) E = transformStrain<tag, MaterialImpl::strainTag>(Ev);
186 if constexpr (voigt and MaterialImpl::moduliToVoigt == false)
187 // user request a Voigt shaped return but material is not able to. Therefore, we transform it here.
188 return toVoigt(tangentModuliMaybeTransformInputToVoigt<false>(E));
189 else
190 return tangentModuliMaybeTransformInputToVoigt<voigt>(E);
191 }
192
201 template <typename STO>
202 auto rebind() const {
203 return impl().template rebind<STO>();
204 }
205
206private:
207 template <bool voigt = true, typename Derived>
208 auto stressesMaybeTransformInputToVoigt(const Eigen::MatrixBase<Derived>& E) const {
209 if constexpr (Concepts::EigenVector<Derived>) { // receiving vector means Voigt notation
210 if constexpr (MaterialImpl::stressAcceptsVoigt)
211 return impl().template stressesImpl<voigt>(E);
212 else // material is not able to accept Voigt shaped Input. Therefore, we transform it before.
213 return impl().template stressesImpl<voigt>(fromVoigt(E.derived()));
214 } else
215 return impl().template stressesImpl<voigt>(E.derived());
216 }
217
218 template <bool voigt = true, typename Derived>
219 auto tangentModuliMaybeTransformInputToVoigt(const Eigen::MatrixBase<Derived>& E) const {
220 if constexpr (Concepts::EigenVector<Derived>) { // receiving vector means voigt notation
221 if constexpr (MaterialImpl::moduliAcceptsVoigt)
222 return impl().template tangentModuliImpl<voigt>(E);
223 else
224 return impl().template tangentModuliImpl<voigt>(fromVoigt(E.derived()));
225 } else
226 return impl().template tangentModuliImpl<voigt>(E.derived());
227 }
228};
229
230} // namespace Ikarus::Materials
Contains stl-like type traits.
Helper for the autodiff library.
Material property functions and conversion utilities.
Definition of several material related enums.
Implementation of strain-related functions.
auto fromVoigt(const Eigen::Matrix< ST, size, 1, Options, maxSize, 1 > &EVoigt, bool isStrain=true)
Converts a vector given in Voigt notation to a matrix.
Definition: tensorutils.hh:296
constexpr Eigen::Index toVoigt(Eigen::Index i, Eigen::Index j) noexcept
Converts 2D indices to Voigt notation index.
Definition: tensorutils.hh:182
Definition: arrudaboyce.hh:27
consteval bool hasCorrectSize()
Template function for checking if the strain size is correct.
Definition: finiteelements/mechanics/materials/interface.hh:41
Interface classf or materials.
Definition: finiteelements/mechanics/materials/interface.hh:80
static constexpr std::string name()
Get the name of the implemented material.
Definition: finiteelements/mechanics/materials/interface.hh:110
auto materialParameters() const
Returns the material parameters stored in the implemented material.
Definition: finiteelements/mechanics/materials/interface.hh:116
constexpr const MaterialImpl & impl() const
Const accessor to the underlying material (CRTP).
Definition: finiteelements/mechanics/materials/interface.hh:96
auto rebind() const
Rebind material to a different scalar type.
Definition: finiteelements/mechanics/materials/interface.hh:202
MI MaterialImpl
Type of material implementation.
Definition: finiteelements/mechanics/materials/interface.hh:81
auto tangentModuli(const Eigen::MatrixBase< Derived > &Eraw) const
Get the tangentModuli of the material.
Definition: finiteelements/mechanics/materials/interface.hh:183
auto stresses(const Eigen::MatrixBase< Derived > &Eraw) const
Get the stresses of the material.
Definition: finiteelements/mechanics/materials/interface.hh:162
auto storedEnergy(const Eigen::MatrixBase< Derived > &Eraw) const
Return the stored potential energy of the material.
Definition: finiteelements/mechanics/materials/interface.hh:138
static constexpr bool isLinear
Definition: finiteelements/mechanics/materials/interface.hh:89
constexpr MaterialImpl & impl()
Accessor to the underlying material (CRTP).
Definition: finiteelements/mechanics/materials/interface.hh:103
static constexpr double derivativeFactor
This factor denotes the differences between the returned stresses and moduli and the passed strain.
Definition: finiteelements/mechanics/materials/interface.hh:124
static constexpr bool isReduced
Static constant for determining if the material has vanishing stress or strain components (is reduced...
Definition: finiteelements/mechanics/materials/interface.hh:86
Template concept for ensuring correct strain size.
Definition: finiteelements/mechanics/materials/interface.hh:57
Concept defining the requirements for Eigen vectors.
Definition: utils/concepts.hh:362
Several concepts.