25template <auto stressIndexPair,
typename MImpl>
26struct VanishingStress;
28template <auto strainIndexPair,
typename MImpl>
29struct VanishingStrain;
40template <
typename MAT,
typename S>
42 if constexpr (Concepts::EigenVector6<S> or Concepts::EigenMatrix33<S>)
45 return S::RowsAtCompileTime == MAT::freeStrains;
56template <
typename MAT,
typename S>
86 static constexpr bool isReduced = traits::isSpecializationNonTypeAndTypes<VanishingStress, MaterialImpl>::value or
87 traits::isSpecializationNonTypeAndTypes<VanishingStrain, MaterialImpl>::value;
110 [[nodiscard]]
constexpr static std::string
name() {
return MI::nameImpl(); }
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);
143 if constexpr (MaterialImpl::energyAcceptsVoigt)
146 return impl().storedEnergyImpl(E);
148 return impl().storedEnergyImpl(E);
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)
167 return toVoigt(stressesMaybeTransformInputToVoigt<false>(E),
false);
169 return stressesMaybeTransformInputToVoigt<voigt>(E);
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)
188 return toVoigt(tangentModuliMaybeTransformInputToVoigt<false>(E));
190 return tangentModuliMaybeTransformInputToVoigt<voigt>(E);
201 template <
typename STO>
203 return impl().template rebind<STO>();
207 template <
bool voigt = true,
typename Derived>
208 auto stressesMaybeTransformInputToVoigt(
const Eigen::MatrixBase<Derived>& E)
const {
210 if constexpr (MaterialImpl::stressAcceptsVoigt)
211 return impl().template stressesImpl<voigt>(E);
213 return impl().template stressesImpl<voigt>(
fromVoigt(E.derived()));
215 return impl().template stressesImpl<voigt>(E.derived());
218 template <
bool voigt = true,
typename Derived>
219 auto tangentModuliMaybeTransformInputToVoigt(
const Eigen::MatrixBase<Derived>& E)
const {
220 if constexpr (Concepts::EigenVector<Derived>) {
221 if constexpr (MaterialImpl::moduliAcceptsVoigt)
222 return impl().template tangentModuliImpl<voigt>(E);
224 return impl().template tangentModuliImpl<voigt>(
fromVoigt(E.derived()));
226 return impl().template tangentModuliImpl<voigt>(E.derived());
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