11#include <dune/common/float_cmp.hh>
65 template <
typename MP>
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>;
77template <Concepts::MPTuple ValuePair>
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; })
97 assert(
false &&
"Your LameParameter request is not implemented");
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; })
120 assert(
false &&
"Your LameParameter request is not implemented");
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; })
143 assert(
false &&
"Your LameParameter request is not implemented");
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;
172 assert(
false &&
"Your LameParameter request is not implemented");
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; })
199 assert(
false &&
"Your LameParameter request is not implemented");
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; })
212 assert(
false &&
"Your LameParameter request is not implemented");
235 ConvertLameConstants(
const ValuePair& valuePair)
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);
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