ryujin 2.1.1 revision d0a94ad2ccc0c4c2e8c2485c52b06b90e2fc9853
limiter.template.h
Go to the documentation of this file.
1//
2// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
3// Copyright (C) 2020 - 2024 by the ryujin authors
4//
5
6#pragma once
7
8#include "limiter.h"
9
10namespace ryujin
11{
12 namespace Euler
13 {
14 template <int dim, typename Number>
15 std::tuple<Number, bool>
17 const state_type &U,
18 const state_type &P,
19 const Number t_min /* = Number(0.) */,
20 const Number t_max /* = Number(1.) */)
21 {
22 const auto view = hyperbolic_system.view<dim, Number>();
23
24 bool success = true;
25 Number t_r = t_max;
26
27 constexpr ScalarNumber eps = std::numeric_limits<ScalarNumber>::epsilon();
28 const auto small = view.vacuum_state_relaxation_small();
29 const auto large = view.vacuum_state_relaxation_large();
30 const ScalarNumber relax_small = ScalarNumber(1. + small * eps);
31 const ScalarNumber relax = ScalarNumber(1. + large * eps);
32
33 /*
34 * First limit the density rho.
35 *
36 * See [Guermond, Nazarov, Popov, Thomas] (4.8):
37 */
38
39 {
40 const auto &rho_U = view.density(U);
41 const auto &rho_P = view.density(P);
42
43 const auto &rho_min = std::get<0>(bounds);
44 const auto &rho_max = std::get<1>(bounds);
45
46 /*
47 * Verify that rho_U is within bounds. This property might be
48 * violated for relative CFL numbers larger than 1.
49 */
50 const auto test_min = view.filter_vacuum_density(
51 std::max(Number(0.), rho_U - relax * rho_max));
52 const auto test_max = view.filter_vacuum_density(
53 std::max(Number(0.), rho_min - relax * rho_U));
54 if (!(test_min == Number(0.) && test_max == Number(0.))) {
55#ifdef DEBUG_OUTPUT
56 std::cout << std::fixed << std::setprecision(16);
57 std::cout << "Bounds violation: low-order density (critical)!"
58 << "\n\t\trho min: " << rho_min
59 << "\n\t\trho min (delta): "
60 << negative_part(rho_U - rho_min)
61 << "\n\t\trho: " << rho_U
62 << "\n\t\trho max (delta): "
63 << positive_part(rho_U - rho_max)
64 << "\n\t\trho max: " << rho_max << "\n"
65 << std::endl;
66#endif
67 success = false;
68 }
69
70 const Number denominator =
71 ScalarNumber(1.) / (std::abs(rho_P) + eps * rho_max);
72
73 constexpr auto lt = dealii::SIMDComparison::less_than;
74
75 t_r = dealii::compare_and_apply_mask<lt>( //
76 rho_max,
77 rho_U + t_r * rho_P,
78 /*
79 * rho_P is positive.
80 *
81 * Note: Do not take an absolute value here. If we are out of
82 * bounds we have to ensure that t_r is set to t_min.
83 */
84 (rho_max - rho_U) * denominator,
85 t_r);
86
87 t_r = dealii::compare_and_apply_mask<lt>( //
88 rho_U + t_r * rho_P,
89 rho_min,
90 /*
91 * rho_P is negative.
92 *
93 * Note: Do not take an absolute value here. If we are out of
94 * bounds we have to ensure that t_r is set to t_min.
95 */
96 (rho_U - rho_min) * denominator,
97 t_r);
98
99 /*
100 * Ensure that t_min <= t <= t_max. This might not be the case if
101 * rho_U is outside the interval [rho_min, rho_max]. Furthermore,
102 * the quotient we take above is prone to numerical cancellation in
103 * particular in the second pass of the limiter when rho_P might be
104 * small.
105 */
106 t_r = std::min(t_r, t_max);
107 t_r = std::max(t_r, t_min);
108
109#ifdef CHECK_BOUNDS
110 /*
111 * Verify that the new state is within bounds:
112 */
113 const auto rho_new = view.density(U + t_r * P);
114 const auto test_new_min = view.filter_vacuum_density(
115 std::max(Number(0.), rho_new - relax * rho_max));
116 const auto test_new_max = view.filter_vacuum_density(
117 std::max(Number(0.), rho_min - relax * rho_new));
118 if (!(test_new_min == Number(0.) && test_new_max == Number(0.))) {
119#ifdef DEBUG_OUTPUT
120 std::cout << std::fixed << std::setprecision(16);
121 std::cout << "Bounds violation: high-order density!"
122 << "\n\t\trho min: " << rho_min
123 << "\n\t\trho min (delta): "
124 << negative_part(rho_new - rho_min)
125 << "\n\t\trho: " << rho_new
126 << "\n\t\trho max (delta): "
127 << positive_part(rho_new - rho_max)
128 << "\n\t\trho max: " << rho_max << "\n"
129 << std::endl;
130#endif
131 success = false;
132 }
133#endif
134 }
135
136 /*
137 * Then limit the specific entropy:
138 *
139 * See [Guermond, Nazarov, Popov, Thomas], Section 4.6 + Section 5.1:
140 */
141
142 Number t_l = t_min; // good state
143
144 const ScalarNumber gamma = view.gamma();
145 const ScalarNumber gp1 = gamma + ScalarNumber(1.);
146
147 {
148 /*
149 * Prepare a quadratic Newton method:
150 *
151 * Given initial limiter values t_l and t_r with psi(t_l) > 0 and
152 * psi(t_r) < 0 we try to find t^\ast with psi(t^\ast) \approx 0.
153 *
154 * Here, psi is a 3-convex function obtained by scaling the specific
155 * entropy s:
156 *
157 * psi = \rho ^ {\gamma + 1} s
158 *
159 * (s in turn was defined as s =\varepsilon \rho ^{-\gamma}, where
160 * \varepsilon = (\rho e) is the internal energy.)
161 */
162
163 const auto &s_min = std::get<2>(bounds);
164
165 for (unsigned int n = 0; n < parameters.newton_max_iterations(); ++n) {
166
167 const auto U_r = U + t_r * P;
168 const auto rho_r = view.density(U_r);
169 const auto rho_r_gamma = ryujin::pow(rho_r, gamma);
170 const auto rho_e_r = view.internal_energy(U_r);
171
172 auto psi_r =
173 relax_small * rho_r * rho_e_r - s_min * rho_r * rho_r_gamma;
174
175#ifndef CHECK_BOUNDS
176 /*
177 * If psi_r > 0 the right state is fine, force returning t_r by
178 * setting t_l = t_r:
179 */
180 t_l = dealii::compare_and_apply_mask<
181 dealii::SIMDComparison::greater_than>(
182 psi_r, Number(0.), t_r, t_l);
183
184 /*
185 * If we have set t_l = t_r everywhere then all states state U_r
186 * with t_r obey the specific entropy inequality and we can
187 * break.
188 *
189 * This is a very important optimization: Only for 1 in (25 to
190 * 50) cases do we actually need to limit on the specific entropy
191 * because one of the right states failed. So we can skip
192 * constructing the left state U_l, which is expensive.
193 *
194 * This implies unfortunately that we might not accurately report
195 * whether the low_order update U itself obeyed bounds because
196 * U_r = U + t_r * P pushed us back into bounds. We thus skip
197 * this shortcut if `CHECK_BOUNDS` is set.
198 */
199 if (t_l == t_r)
200 break;
201#endif
202
203#ifdef DEBUG_OUTPUT_LIMITER
204 if (n == 0) {
205 std::cout << std::endl;
206 std::cout << std::fixed << std::setprecision(16);
207 std::cout << "t_l: (start) " << t_l << std::endl;
208 std::cout << "t_r: (start) " << t_r << std::endl;
209 }
210#endif
211
212 const auto U_l = U + t_l * P;
213 const auto rho_l = view.density(U_l);
214 const auto rho_l_gamma = ryujin::pow(rho_l, gamma);
215 const auto rho_e_l = view.internal_energy(U_l);
216
217 auto psi_l =
218 relax_small * rho_l * rho_e_l - s_min * rho_l * rho_l_gamma;
219
220 /*
221 * Verify that the left state is within bounds. This property might
222 * be violated for relative CFL numbers larger than 1.
223 */
224 const auto lower_bound =
225 (ScalarNumber(1.) - relax) * s_min * rho_l * rho_l_gamma;
226 if (n == 0 &&
227 !(std::min(Number(0.), psi_l - lower_bound) == Number(0.))) {
228#ifdef DEBUG_OUTPUT
229 std::cout << std::fixed << std::setprecision(16);
230 std::cout
231 << "Bounds violation: low-order specific entropy (critical)!\n";
232 std::cout << "\t\tPsi left: 0 <= " << psi_l << "\n" << std::endl;
233#endif
234 success = false;
235 }
236
237#ifdef CHECK_BOUNDS
238 /*
239 * If psi_r > 0 the right state is fine, force returning t_r by
240 * setting t_l = t_r:
241 */
242 t_l = dealii::compare_and_apply_mask<
243 dealii::SIMDComparison::greater_than>(
244 psi_r, Number(0.), t_r, t_l);
245#endif
246
247 /*
248 * Break if the window between t_l and t_r is within the prescribed
249 * tolerance:
250 */
251 const Number tolerance(parameters.newton_tolerance());
252 if (std::max(Number(0.), t_r - t_l - tolerance) == Number(0.))
253 break;
254
255 /* We got unlucky and have to perform a Newton step: */
256
257 const auto drho = view.density(P);
258 const auto drho_e_l = view.internal_energy_derivative(U_l) * P;
259 const auto drho_e_r = view.internal_energy_derivative(U_r) * P;
260 const auto dpsi_l =
261 rho_l * drho_e_l + (rho_e_l - gp1 * s_min * rho_l_gamma) * drho;
262 const auto dpsi_r =
263 rho_r * drho_e_r + (rho_e_r - gp1 * s_min * rho_r_gamma) * drho;
264
266 t_l, t_r, psi_l, psi_r, dpsi_l, dpsi_r, Number(-1.));
267
268#ifdef DEBUG_OUTPUT_LIMITER
269 std::cout << "psi_l: " << psi_l << std::endl;
270 std::cout << "psi_r: " << psi_r << std::endl;
271 std::cout << "dpsi_l: " << dpsi_l << std::endl;
272 std::cout << "dpsi_r: " << dpsi_r << std::endl;
273 std::cout << "t_l: ( " << n << " ) " << t_l << std::endl;
274 std::cout << "t_r: ( " << n << " ) " << t_r << std::endl;
275#endif
276 }
277
278#ifdef CHECK_BOUNDS
279 /*
280 * Verify that the new state is within bounds:
281 */
282 {
283 const auto U_new = U + t_l * P;
284 const auto rho_new = view.density(U_new);
285 const auto rho_new_gamma = ryujin::pow(rho_new, gamma);
286 const auto rho_e_new = view.internal_energy(U_new);
287
288 auto psi_new = relax_small * rho_new * rho_e_new -
289 s_min * rho_new * rho_new_gamma;
290
291 const auto lower_bound =
292 (ScalarNumber(1.) - relax) * s_min * rho_new * rho_new_gamma;
293
294 const bool e_valid = std::min(Number(0.), rho_e_new) == Number(0.);
295 const bool psi_valid =
296 std::min(Number(0.), psi_new - lower_bound) == Number(0.);
297
298 if (!e_valid || !psi_valid) {
299#ifdef DEBUG_OUTPUT
300 std::cout << std::fixed << std::setprecision(16);
301 std::cout << "Bounds violation: high-order specific entropy!\n";
302 std::cout << "\t\trho e: 0 <= " << rho_e_new << "\n";
303 std::cout << "\t\tPsi: 0 <= " << psi_new << "\n" << std::endl;
304#endif
305 success = false;
306 }
307 }
308#endif
309 }
310
311 return {t_l, success};
312 }
313
314 } // namespace Euler
315} // namespace ryujin
typename View::ScalarNumber ScalarNumber
Definition: limiter.h:132
typename View::state_type state_type
Definition: limiter.h:111
std::array< Number, n_bounds > Bounds
Definition: limiter.h:166
std::tuple< Number, bool > limit(const Bounds &bounds, const state_type &U, const state_type &P, const Number t_min=Number(0.), const Number t_max=Number(1.))
DEAL_II_ALWAYS_INLINE void quadratic_newton_step(Number &p_1, Number &p_2, const Number phi_p_1, const Number phi_p_2, const Number dphi_p_1, const Number dphi_p_2, const Number sign=Number(1.0))
Definition: newton.h:39
T pow(const T x, const T b)
DEAL_II_ALWAYS_INLINE Number negative_part(const Number number)
Definition: simd.h:124
DEAL_II_ALWAYS_INLINE Number positive_part(const Number number)
Definition: simd.h:112