version 0.4.1
physicshelper.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#include <dune/common/float_cmp.hh>
12
13#include <Eigen/Core>
14namespace Ikarus {
15
19{
20 double emodul;
21 double nu;
22};
23
26{
27 double emodul;
28 double mu;
29};
30
33{
34 double emodul;
35 double K;
36};
37
40{
41 double emodul;
42 double lambda;
43};
44
47{
48 double K;
49 double lambda;
50};
51
54{
55 double lambda;
56 double mu;
57};
58
59namespace Concepts {
65 template <typename MP>
66 concept MPTuple =
67 std::is_same_v<MP, YoungsModulusAndPoissonsRatio> or std::is_same_v<MP, YoungsModulusAndBulkModulus> or
68 std::is_same_v<MP, YoungsModulusAndLamesFirstParameter> or
69 std::is_same_v<MP, BulkModulusAndLamesFirstParameter> or std::is_same_v<MP, LamesFirstParameterAndShearModulus> or
70 std::is_same_v<MP, YoungsModulusAndShearModulus>;
71} // namespace Concepts
77template <Concepts::MPTuple ValuePair>
79{
80 constexpr double toLamesFirstParameter() {
81 if constexpr (std::is_same_v<ValuePair, YoungsModulusAndPoissonsRatio>) {
82 const auto& E = vp_.emodul;
83 const auto& nu = vp_.nu;
84 return Dune::FloatCmp::eq(nu, 0.5) ? std::numeric_limits<double>::infinity()
85 : E * nu / ((1.0 + nu) * (1.0 - 2.0 * nu));
86 } else if constexpr (std::is_same_v<ValuePair, YoungsModulusAndShearModulus>) {
87 const auto& E = vp_.emodul;
88 const auto& mu = vp_.mu;
89 return mu * (E - 2.0 * mu) / (3.0 * mu - E);
90 } else if constexpr (std::is_same_v<ValuePair, YoungsModulusAndBulkModulus>) {
91 const auto& E = vp_.emodul;
92 const auto& K = vp_.K;
93 return 3.0 * K * (3.0 * K - E) / (9.0 * K - E);
94 } else if constexpr (requires { vp_.lambda; })
95 return vp_.lambda;
96 else
97 assert(false && "Your LameParameter request is not implemented");
98 }
99
100 constexpr double toBulkModulus() {
101 if constexpr (std::is_same_v<ValuePair, YoungsModulusAndPoissonsRatio>) {
102 const auto& E = vp_.emodul;
103 const auto& nu = vp_.nu;
104 return E / (3.0 * (1.0 - 2.0 * nu));
105 } else if constexpr (std::is_same_v<ValuePair, YoungsModulusAndShearModulus>) {
106 const auto& E = vp_.emodul;
107 const auto& mu = vp_.mu;
108 return E * mu / (3.0 * (3.0 * mu - E));
109 } else if constexpr (std::is_same_v<ValuePair, YoungsModulusAndLamesFirstParameter>) {
110 const auto& E = vp_.emodul;
111 const auto& lambda = vp_.lambda;
112 return (E + 3.0 * lambda + calcR(vp_)) / 6.0;
113 } else if constexpr (std::is_same_v<ValuePair, LamesFirstParameterAndShearModulus>) {
114 const auto& lambda = vp_.lambda;
115 const auto& mu = vp_.mu;
116 return lambda + 2.0 * mu / 3.0;
117 } else if constexpr (requires { vp_.K; })
118 return vp_.K;
119 else
120 assert(false && "Your LameParameter request is not implemented");
121 }
122
123 constexpr double toShearModulus() {
124 if constexpr (std::is_same_v<ValuePair, YoungsModulusAndPoissonsRatio>) {
125 const auto& E = vp_.emodul;
126 const auto& nu = vp_.nu;
127 return E / (2.0 * (1.0 + nu));
128 } else if constexpr (std::is_same_v<ValuePair, YoungsModulusAndBulkModulus>) {
129 const auto& E = vp_.emodul;
130 const auto& K = vp_.K;
131 return 3.0 * K * E / (9.0 * K - E);
132 } else if constexpr (std::is_same_v<ValuePair, YoungsModulusAndLamesFirstParameter>) {
133 const auto& E = vp_.emodul;
134 const auto& lambda = vp_.lambda;
135 return (E - 3.0 * lambda + calcR(vp_)) / 4.0;
136 } else if constexpr (std::is_same_v<ValuePair, BulkModulusAndLamesFirstParameter>) {
137 const auto& K = vp_.K;
138 const auto& lambda = vp_.lambda;
139 return 3.0 * (K - lambda) / 2.0;
140 } else if constexpr (requires { vp_.mu; })
141 return vp_.mu;
142 else
143 assert(false && "Your LameParameter request is not implemented");
144 }
145
146 constexpr double toPWaveModulus() {
147 if constexpr (std::is_same_v<ValuePair, YoungsModulusAndPoissonsRatio>) {
148 const auto& E = vp_.emodul;
149 const auto& nu = vp_.nu;
150 return E * (1.0 - nu) / ((1.0 + nu) * (1.0 - 2.0 * nu));
151 } else if constexpr (std::is_same_v<ValuePair, YoungsModulusAndShearModulus>) {
152 const auto& E = vp_.emodul;
153 const auto& mu = vp_.mu;
154 return mu * (4.0 * mu - E) / (3.0 * mu - E);
155 } else if constexpr (std::is_same_v<ValuePair, YoungsModulusAndBulkModulus>) {
156 const auto& E = vp_.emodul;
157 const auto& K = vp_.K;
158 return 3.0 * K * (3.0 * K + E) / (9.0 * K - E);
159 } else if constexpr (std::is_same_v<ValuePair, YoungsModulusAndLamesFirstParameter>) {
160 const auto& E = vp_.emodul;
161 const auto& lambda = vp_.lambda;
162 return (E - lambda + calcR(vp_)) / 2.0;
163 } else if constexpr (std::is_same_v<ValuePair, BulkModulusAndLamesFirstParameter>) {
164 const auto& K = vp_.K;
165 const auto& lambda = vp_.lambda;
166 return 3.0 * K - 2.0 * lambda;
167 } else if constexpr (std::is_same_v<ValuePair, LamesFirstParameterAndShearModulus>) {
168 const auto& lambda = vp_.lambda;
169 const auto& mu = vp_.mu;
170 return lambda + 2.0 * mu;
171 } else
172 assert(false && "Your LameParameter request is not implemented");
173 }
174
175 constexpr double toPoissonsRatio() {
176 if constexpr (std::is_same_v<ValuePair, YoungsModulusAndShearModulus>) {
177 const auto& E = vp_.emodul;
178 const auto& mu = vp_.mu;
179 return E / (2.0 * mu) - 1.0;
180 } else if constexpr (std::is_same_v<ValuePair, YoungsModulusAndBulkModulus>) {
181 const auto& E = vp_.emodul;
182 const auto& K = vp_.K;
183 return (3.0 * K - E) / (6.0 * K);
184 } else if constexpr (std::is_same_v<ValuePair, YoungsModulusAndLamesFirstParameter>) {
185 const auto& E = vp_.emodul;
186 const auto& lambda = vp_.lambda;
187 return 2.0 * lambda / (E + lambda + calcR(vp_));
188 } else if constexpr (std::is_same_v<ValuePair, BulkModulusAndLamesFirstParameter>) {
189 const auto& K = vp_.K;
190 const auto& lambda = vp_.lambda;
191 return lambda / (3 * K - lambda);
192 } else if constexpr (std::is_same_v<ValuePair, LamesFirstParameterAndShearModulus>) {
193 const auto& lambda = vp_.lambda;
194 const auto& mu = vp_.mu;
195 return lambda / (2.0 * (lambda + mu));
196 } else if constexpr (requires { vp_.nu; })
197 return vp_.nu;
198 else
199 assert(false && "Your LameParameter request is not implemented");
200 }
201
202 constexpr double toYoungsModulus() {
203 if constexpr (std::is_same_v<ValuePair, BulkModulusAndLamesFirstParameter>) {
204 return 9.0 * vp_.K * (vp_.K - vp_.lambda) / (3.0 * vp_.K - vp_.lambda);
205 } else if constexpr (std::is_same_v<ValuePair, LamesFirstParameterAndShearModulus>) {
206 const auto& lambda = vp_.lambda;
207 const auto& mu = vp_.mu;
208 return mu * (3.0 * lambda + 2.0 * mu) / (lambda + mu);
209 } else if constexpr (requires { vp_.emodul; })
210 return vp_.emodul;
211 else
212 assert(false && "Your LameParameter request is not implemented");
213 }
214
215private:
217 const YoungsModulusAndPoissonsRatio& valuePair);
219 const YoungsModulusAndShearModulus& valuePair);
220
222 const YoungsModulusAndBulkModulus& valuePair);
223
225 const LamesFirstParameterAndShearModulus& valuePair);
226
228 const BulkModulusAndLamesFirstParameter& valuePair);
229
231 const YoungsModulusAndLamesFirstParameter& valuePair);
232
233 ConvertLameConstants(ValuePair&& valuePair)
234 : vp_(valuePair) {}
235 ConvertLameConstants(const ValuePair& valuePair)
236 : vp_(valuePair) {}
237
238 double calcR(const YoungsModulusAndLamesFirstParameter& valuePair) {
239 const auto& E = valuePair.emodul;
240 const auto& lambda = valuePair.lambda;
241 return std::sqrt(E * E + 9 * lambda * lambda + 2 * E * lambda);
242 }
243 ValuePair vp_;
244};
246 const YoungsModulusAndPoissonsRatio& valuePair) {
247 return {valuePair};
248}
250 const YoungsModulusAndShearModulus& valuePair) {
251 return {valuePair};
252}
254 const YoungsModulusAndBulkModulus& valuePair) {
255 return {valuePair};
256}
258 const LamesFirstParameterAndShearModulus& valuePair) {
259 return {valuePair};
260}
262 const BulkModulusAndLamesFirstParameter& valuePair) {
263 return {valuePair};
264}
266 const YoungsModulusAndLamesFirstParameter& valuePair) {
267 return {valuePair};
268}
269
277 auto lambda = convertLameConstants(matParameter).toLamesFirstParameter();
278 auto mu = convertLameConstants(matParameter).toShearModulus();
279
280 return LamesFirstParameterAndShearModulus{.lambda = lambda, .mu = mu};
281}
282
290 auto emod = convertLameConstants(matParameter).toYoungsModulus();
291 auto nu = convertLameConstants(matParameter).toPoissonsRatio();
292
293 return YoungsModulusAndPoissonsRatio{.emodul = emod, .nu = nu};
294}
295
296} // namespace Ikarus
Definition: assemblermanipulatorbuildingblocks.hh:22
auto toLamesFirstParameterAndShearModulus(const YoungsModulusAndPoissonsRatio &matParameter)
Converts Young's modulus and Poisson's ratio to Lame's first parameter and shear modulus.
Definition: physicshelper.hh:276
auto toYoungsModulusAndPoissonsRatio(const LamesFirstParameterAndShearModulus &matParameter)
Converts Lame's first parameter and shear modulus to Young's modulus and Poisson's ratio.
Definition: physicshelper.hh:289
ConvertLameConstants< YoungsModulusAndPoissonsRatio > convertLameConstants(const YoungsModulusAndPoissonsRatio &valuePair)
Definition: physicshelper.hh:245
see https://en.wikipedia.org/wiki/Lam%C3%A9_parameters Structure representing Young's modulus and she...
Definition: physicshelper.hh:19
double emodul
Definition: physicshelper.hh:20
double nu
Definition: physicshelper.hh:21
Structure representing Young's modulus and bulk modulus.
Definition: physicshelper.hh:26
double mu
Definition: physicshelper.hh:28
double emodul
Definition: physicshelper.hh:27
Structure representing Young's modulus and Lame's first parameter.
Definition: physicshelper.hh:33
double emodul
Definition: physicshelper.hh:34
double K
Definition: physicshelper.hh:35
Structure representing bulk modulus and Lame's first parameter.
Definition: physicshelper.hh:40
double lambda
Definition: physicshelper.hh:42
double emodul
Definition: physicshelper.hh:41
Structure representing Lame's first parameter and shear modulus.
Definition: physicshelper.hh:47
double K
Definition: physicshelper.hh:48
double lambda
Definition: physicshelper.hh:49
Definition: physicshelper.hh:54
double lambda
Definition: physicshelper.hh:55
double mu
Definition: physicshelper.hh:56
Conversion utility for Lame's constants.
Definition: physicshelper.hh:79
constexpr double toBulkModulus()
Definition: physicshelper.hh:100
constexpr double toLamesFirstParameter()
Definition: physicshelper.hh:80
friend ConvertLameConstants< YoungsModulusAndPoissonsRatio > convertLameConstants(const YoungsModulusAndPoissonsRatio &valuePair)
Definition: physicshelper.hh:245
constexpr double toPoissonsRatio()
Definition: physicshelper.hh:175
constexpr double toPWaveModulus()
Definition: physicshelper.hh:146
constexpr double toYoungsModulus()
Definition: physicshelper.hh:202
constexpr double toShearModulus()
Definition: physicshelper.hh:123
Concept for checking if a type is a valid material parameter tuple.
Definition: physicshelper.hh:66