@@ -8,8 +8,8 @@ equations = CompressibleEulerEquations2D(gamma)
88"""
99 initial_condition_sedov_blast_wave(x, t, equations::CompressibleEulerEquations2D)
1010
11- The Sedov blast wave setup based on Flash
12- - https://flash.rochester.edu/site/flashcode/user_support/flash_ug_devel/node187.html#SECTION010114000000000000000
11+ The Sedov blast wave setup based on example 35.1.4 from Flash
12+ - https://flash.rochester.edu/site/flashcode/user_support/flash4_ug_4p8.pdf
1313"""
1414function initial_condition_sedov_blast_wave (x, t, equations:: CompressibleEulerEquations2D )
1515 # Set up polar coordinates
@@ -18,7 +18,7 @@ function initial_condition_sedov_blast_wave(x, t, equations::CompressibleEulerEq
1818 y_norm = x[2 ] - inicenter[2 ]
1919 r = sqrt (x_norm^ 2 + y_norm^ 2 )
2020
21- # Setup based on https://flash.rochester.edu/site/flashcode/user_support/flash_ug_devel/node187.html#SECTION010114000000000000000
21+ # Setup based on example 35.1.4 in https://flash.rochester.edu/site/flashcode/user_support/flash4_ug_4p8.pdf
2222 r0 = 0.21875 # = 3.5 * smallest dx (for domain length=4 and max-ref=6)
2323 # r0 = 0.5 # = more reasonable setup
2424 E = 1.0
@@ -47,7 +47,7 @@ boundary_conditions = (x_neg = boundary_condition,
4747# In the `StepsizeCallback`, though, the less diffusive `max_abs_speeds` is employed which is consistent with `max_abs_speed`.
4848# Thus, we exchanged in PR#2458 the default wave speed used in the LLF flux to `max_abs_speed`.
4949# To ensure that every example still runs we specify explicitly `FluxLaxFriedrichs(max_abs_speed_naive)`.
50- # We remark, however, that the now default `max_abs_speed` is in general recommended due to compliance with the
50+ # We remark, however, that the now default `max_abs_speed` is in general recommended due to compliance with the
5151# `StepsizeCallback` (CFL-Condition) and less diffusion.
5252surface_flux = FluxLaxFriedrichs (max_abs_speed_naive)
5353volume_flux = flux_ranocha
0 commit comments