version 0.4.1
mueslismall.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
12#if ENABLE_MUESLI
13
14 #include <muesli/muesli.h>
15
16 #include <Eigen/Eigen>
17
21
22namespace Ikarus::Materials {
23
30template <typename SM = muesli::elasticIsotropicMaterial>
31requires(std::is_base_of_v<muesli::smallStrainMaterial, SM>)
32struct SmallStrain : public Material<SmallStrain<SM>>
33{
34 using MaterialModel = SM;
35 using ScalarType = double;
36 static constexpr int dim = 3;
37 using StrainMatrix = Eigen::Matrix<ScalarType, dim, dim>;
38 using StressMatrix = StrainMatrix;
39 using MaterialTensor = Eigen::TensorFixedSize<ScalarType, Eigen::Sizes<dim, dim, dim, dim>>;
40 using MaterialParameters = muesli::materialProperties;
41
42 static constexpr auto strainTag = StrainTags::linear;
43 static constexpr auto stressTag = StressTags::linear;
44 static constexpr auto tangentModuliTag = TangentModuliTags::Material;
45 static constexpr bool energyAcceptsVoigt = false;
46 static constexpr bool stressToVoigt = false;
47 static constexpr bool stressAcceptsVoigt = false;
48 static constexpr bool moduliToVoigt = false;
49 static constexpr bool moduliAcceptsVoigt = false;
50 static constexpr double derivativeFactorImpl = 1;
51
52 [[nodiscard]] constexpr static std::string nameImpl() noexcept { return "SmallStrain: " + materialName<SM>(); }
53
58 template <Concepts::MPTuple MPT>
59 requires(std::same_as<MaterialModel, muesli::elasticIsotropicMaterial>)
60 explicit SmallStrain(const MPT& mpt)
61 : materialParameter_{propertiesFromIkarusMaterialParameters(mpt)},
62 material_{Dune::className<SM>(), materialParameter_},
63 mp_{material_.createMaterialPoint()} {}
64
69 explicit SmallStrain(const MaterialParameters& mpt)
70 : materialParameter_{mpt},
71 material_{Dune::className<SM>(), mpt},
72 mp_{material_.createMaterialPoint()} {}
73
77 MaterialParameters materialParametersImpl() const { return materialParameter_; }
78
85 template <typename Derived>
86 ScalarType storedEnergyImpl(const Eigen::MatrixBase<Derived>& E) const {
87 static_assert(Concepts::EigenMatrixOrVoigtNotation3<Derived>);
88 if constexpr (!Concepts::EigenVector<Derived>) {
89 updateState(E);
90 return mp_->storedEnergy();
91 } else
92 static_assert(!Concepts::EigenVector<Derived>,
93 "MuesliSmallStrain energy can only be called with a matrix and not a vector in Voigt notation");
94 }
95
103 template <bool voigt, typename Derived>
104 auto stressesImpl(const Eigen::MatrixBase<Derived>& E) const {
105 static_assert(Concepts::EigenMatrixOrVoigtNotation3<Derived>);
106 if constexpr (!voigt) {
107 if constexpr (!Concepts::EigenVector<Derived>) {
108 updateState(E);
109 istensor stress;
110 mp_->stress(stress);
111 return toEigenMatrix(stress);
112 } else
113 static_assert(!Concepts::EigenVector<Derived>,
114 "MuesliSmallStrain can only be called with a matrix and not a vector in Voigt notation");
115 } else
116 static_assert(voigt == false, "MuesliSmallStrain does not support returning stresses in Voigt notation");
117 }
118
126 template <bool voigt, typename Derived>
127 auto tangentModuliImpl(const Eigen::MatrixBase<Derived>& E) const {
128 static_assert(Concepts::EigenMatrixOrVoigtNotation3<Derived>);
129 if constexpr (!voigt) {
130 if constexpr (!Concepts::EigenVector<Derived>) {
131 updateState(E);
132 itensor4 tangentModuli;
133 mp_->tangentTensor(tangentModuli);
134 return toEigenTensor(tangentModuli);
135 } else
136 static_assert(!Concepts::EigenVector<Derived>,
137 "MuesliSmallStrain can only be called with a matrix and not a vector in Voigt notation");
138 } else
139 static_assert(voigt == false, "MuesliSmallStrain does not support returning tangent moduli in Voigt notation");
140 }
141
146 auto& material() const { return material_; }
147
152 auto& materialPoint() const { return mp_; }
153
154 SmallStrain(const SmallStrain& other)
155 : materialParameter_{other.materialParameter_},
156 material_{Dune::className<SM>(), materialParameter_},
157 mp_{material_.createMaterialPoint()} {}
158
159private:
160 MaterialParameters materialParameter_;
161 MaterialModel material_;
162 std::unique_ptr<muesli::smallStrainMP> mp_;
163
164 template <typename Derived>
165 void updateState(const Eigen::MatrixBase<Derived>& E) const {
166 mp_->updateCurrentState(0.0, toistensor(E.derived()));
167 }
168};
169
170} // namespace Ikarus::Materials
171
172#else
173 #error Muesli materials depends on the Muesli library, which is not included
174#endif
Helper for the Eigen::Tensor types.
Definition: arrudaboyce.hh:27
Definition: utils/dirichletvalues.hh:30
Contains the Material interface class and related template functions for material properties.