ryujin 2.1.1 revision 04c248772b8df3a0cf47434aee70d95a0ae62bfc
limiter.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 "hyperbolic_system.h"
9
10#include <compile_time_options.h>
12#include <newton.h>
13#include <simd.h>
14
15namespace ryujin
16{
17 namespace Euler
18 {
19 template <typename ScalarNumber = double>
20 class LimiterParameters : public dealii::ParameterAcceptor
21 {
22 public:
23 LimiterParameters(const std::string &subsection = "/Limiter")
24 : ParameterAcceptor(subsection)
25 {
26 iterations_ = 2;
27 add_parameter(
28 "iterations", iterations_, "Number of limiter iterations");
29
30 if constexpr (std::is_same<ScalarNumber, double>::value)
31 newton_tolerance_ = 1.e-10;
32 else
33 newton_tolerance_ = 1.e-4;
34 add_parameter("newton tolerance",
35 newton_tolerance_,
36 "Tolerance for the quadratic newton stopping criterion");
37
38 newton_max_iterations_ = 2;
39 add_parameter("newton max iterations",
40 newton_max_iterations_,
41 "Maximal number of quadratic newton iterations performed "
42 "during limiting");
43
44 relaxation_factor_ = ScalarNumber(1.);
45 add_parameter("relaxation factor",
46 relaxation_factor_,
47 "Factor for scaling the relaxation window with r_i = "
48 "factor * (m_i/|Omega|)^(1.5/d).");
49 }
50
51 ACCESSOR_READ_ONLY(iterations);
52 ACCESSOR_READ_ONLY(newton_tolerance);
53 ACCESSOR_READ_ONLY(newton_max_iterations);
54 ACCESSOR_READ_ONLY(relaxation_factor);
55
56 private:
57 unsigned int iterations_;
58 ScalarNumber newton_tolerance_;
59 unsigned int newton_max_iterations_;
60 ScalarNumber relaxation_factor_;
61 };
62
63
94 template <int dim, typename Number = double>
95 class Limiter
96 {
97 public:
102
104
106
108
109 using state_type = typename View::state_type;
110
112
114
116
118
120
139
143 static constexpr unsigned int n_bounds = 3;
144
148 using Bounds = std::array<Number, n_bounds>;
149
153 Limiter(const HyperbolicSystem &hyperbolic_system,
154 const Parameters &parameters,
155 const PrecomputedVector &precomputed_values)
156 : hyperbolic_system(hyperbolic_system)
157 , parameters(parameters)
158 , precomputed_values(precomputed_values)
159 {
160 }
161
165 void reset(const unsigned int i,
166 const state_type &U_i,
167 const flux_contribution_type &flux_i);
168
173 void accumulate(const unsigned int *js,
174 const state_type &U_j,
175 const flux_contribution_type &flux_j,
176 const dealii::Tensor<1, dim, Number> &scaled_c_ij,
177 const Number beta_ij,
178 const state_type &affine_shift);
179
183 Bounds bounds(const Number hd_i) const;
184
185 //*}
188
203 std::tuple<Number, bool> limit(const Bounds &bounds,
204 const state_type &U,
205 const state_type &P,
206 const Number t_min = Number(0.),
207 const Number t_max = Number(1.));
208 //*}
213
220 static bool
221 is_in_invariant_domain(const HyperbolicSystem &hyperbolic_system,
222 const Bounds &bounds,
223 const state_type &U);
224
225 private:
227
229
230 const HyperbolicSystem &hyperbolic_system;
231 const Parameters &parameters;
232 const PrecomputedVector &precomputed_values;
233
234 state_type U_i;
235
236 Bounds bounds_;
237
238 Number rho_relaxation_numerator;
239 Number rho_relaxation_denominator;
240 Number s_interp_max;
241
243 };
244
245
246 /* Inline definitions */
247
248
249 template <int dim, typename Number>
250 DEAL_II_ALWAYS_INLINE inline void
251 Limiter<dim, Number>::reset(const unsigned int /*i*/,
252 const state_type &new_U_i,
253 const flux_contribution_type & /*new_flux_i*/)
254 {
255 U_i = new_U_i;
256
257 /* Bounds: */
258
259 auto &[rho_min, rho_max, s_min] = bounds_;
260
261 rho_min = Number(std::numeric_limits<ScalarNumber>::max());
262 rho_max = Number(0.);
263 s_min = Number(std::numeric_limits<ScalarNumber>::max());
264
265 /* Relaxation: */
266
267 rho_relaxation_numerator = Number(0.);
268 rho_relaxation_denominator = Number(0.);
269 s_interp_max = Number(0.);
270 }
271
272
273 template <int dim, typename Number>
274 DEAL_II_ALWAYS_INLINE inline void Limiter<dim, Number>::accumulate(
275 const unsigned int *js,
276 const state_type &U_j,
277 const flux_contribution_type & /*flux_j*/,
278 const dealii::Tensor<1, dim, Number> &scaled_c_ij,
279 const Number beta_ij,
280 const state_type &affine_shift)
281 {
282 // TODO: Currently we only apply the affine_shift to U_ij_bar (which
283 // then enters all bounds), but we do not modify s_interp and
284 // rho_relaxation. When actually adding a source term to the Euler
285 // equations verify that this does the right thing.
286 Assert(std::max(affine_shift.norm(), Number(0.)) == Number(0.),
287 dealii::ExcNotImplemented());
288
289 const auto view = hyperbolic_system.view<dim, Number>();
290
291 /* Bounds: */
292 auto &[rho_min, rho_max, s_min] = bounds_;
293
294 const auto rho_i = view.density(U_i);
295 const auto m_i = view.momentum(U_i);
296 const auto rho_j = view.density(U_j);
297 const auto m_j = view.momentum(U_j);
298 const auto rho_affine_shift = view.density(affine_shift);
299
300 /* bar state shifted by an affine shift: */
301 const auto rho_ij_bar =
302 ScalarNumber(0.5) * (rho_i + rho_j + (m_i - m_j) * scaled_c_ij) +
303 rho_affine_shift;
304
305 rho_min = std::min(rho_min, rho_ij_bar);
306 rho_max = std::max(rho_max, rho_ij_bar);
307
308 const auto &[s_j, eta_j] =
309 precomputed_values.template get_tensor<Number, precomputed_type>(js);
310 s_min = std::min(s_min, s_j);
311
312 /* Relaxation: */
313
314 rho_relaxation_numerator += beta_ij * (rho_i + rho_j);
315 rho_relaxation_denominator += std::abs(beta_ij);
316
317 const Number s_interp =
318 view.specific_entropy((U_i + U_j) * ScalarNumber(.5));
319 s_interp_max = std::max(s_interp_max, s_interp);
320 }
321
322
323 template <int dim, typename Number>
324 DEAL_II_ALWAYS_INLINE inline auto
325 Limiter<dim, Number>::bounds(const Number hd_i) const -> Bounds
326 {
327 auto relaxed_bounds = bounds_;
328 auto &[rho_min, rho_max, s_min] = relaxed_bounds;
329
330 /* Use r_i = factor * (m_i / |Omega|) ^ (1.5 / d): */
331
332 Number r_i = std::sqrt(hd_i); // in 3D: ^ 3/6
333 if constexpr (dim == 2) //
334 r_i = dealii::Utilities::fixed_power<3>(std::sqrt(r_i)); // in 2D: ^ 3/4
335 else if constexpr (dim == 1) //
336 r_i = dealii::Utilities::fixed_power<3>(r_i); // in 1D: ^ 3/2
337 r_i *= parameters.relaxation_factor();
338
339 constexpr ScalarNumber eps = std::numeric_limits<ScalarNumber>::epsilon();
340 const Number rho_relaxation =
341 std::abs(rho_relaxation_numerator) /
342 (std::abs(rho_relaxation_denominator) + Number(eps));
343
344 rho_min = std::max((Number(1.) - r_i) * rho_min,
345 rho_min - ScalarNumber(2.) * rho_relaxation);
346 rho_max = std::min((Number(1.) + r_i) * rho_max,
347 rho_max + ScalarNumber(2.) * rho_relaxation);
348
349 s_min = std::max((Number(1.) - r_i) * s_min,
350 Number(2.) * s_min - s_interp_max);
351
352 return relaxed_bounds;
353 }
354
355
356 template <int dim, typename Number>
357 DEAL_II_ALWAYS_INLINE inline bool
359 const HyperbolicSystem & /*hyperbolic_system*/,
360 const Bounds & /*bounds*/,
361 const state_type & /*U*/)
362 {
363 AssertThrow(false, dealii::ExcNotImplemented());
364 __builtin_trap();
365 return true;
366 }
367
368 } // namespace Euler
369} // namespace ryujin
typename get_value_type< Number >::type ScalarNumber
Vectors::MultiComponentVector< ScalarNumber, n_precomputed_values > PrecomputedVector
static constexpr unsigned int problem_dimension
dealii::Tensor< 1, problem_dimension, Number > state_type
std::array< Number, n_precomputed_values > precomputed_type
ACCESSOR_READ_ONLY(newton_max_iterations)
ACCESSOR_READ_ONLY(newton_tolerance)
ACCESSOR_READ_ONLY(relaxation_factor)
LimiterParameters(const std::string &subsection="/Limiter")
Definition: limiter.h:23
Limiter(const HyperbolicSystem &hyperbolic_system, const Parameters &parameters, const PrecomputedVector &precomputed_values)
Definition: limiter.h:153
void reset(const unsigned int i, const state_type &U_i, const flux_contribution_type &flux_i)
Definition: limiter.h:251
typename View::PrecomputedVector PrecomputedVector
Definition: limiter.h:115
static constexpr auto problem_dimension
Definition: limiter.h:107
void accumulate(const unsigned int *js, const state_type &U_j, const flux_contribution_type &flux_j, const dealii::Tensor< 1, dim, Number > &scaled_c_ij, const Number beta_ij, const state_type &affine_shift)
Definition: limiter.h:274
typename View::precomputed_type precomputed_type
Definition: limiter.h:113
typename View::ScalarNumber ScalarNumber
Definition: limiter.h:105
typename View::state_type state_type
Definition: limiter.h:109
LimiterParameters< ScalarNumber > Parameters
Definition: limiter.h:117
Bounds bounds(const Number hd_i) const
Definition: limiter.h:325
static constexpr unsigned int n_bounds
Definition: limiter.h:143
std::array< Number, n_bounds > Bounds
Definition: limiter.h:148
typename View::flux_contribution_type flux_contribution_type
Definition: limiter.h:111
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.))
static bool is_in_invariant_domain(const HyperbolicSystem &hyperbolic_system, const Bounds &bounds, const state_type &U)
Definition: limiter.h:358