From a176f3f98139b54120dcaa74f2370b1aab7bfaa3 Mon Sep 17 00:00:00 2001 From: Daniel_Doehring Date: Fri, 17 Nov 2023 15:12:05 +0100 Subject: [PATCH] fmt --- .../elixir_shallowwater_well_balanced_nonperiodic.jl | 4 +++- .../unstructured_2d_dgsem/elixir_shallowwater_dirichlet.jl | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/examples/tree_1d_dgsem/elixir_shallowwater_well_balanced_nonperiodic.jl b/examples/tree_1d_dgsem/elixir_shallowwater_well_balanced_nonperiodic.jl index bf59d0b7a9c..78bdc57e548 100644 --- a/examples/tree_1d_dgsem/elixir_shallowwater_well_balanced_nonperiodic.jl +++ b/examples/tree_1d_dgsem/elixir_shallowwater_well_balanced_nonperiodic.jl @@ -26,7 +26,9 @@ boundary_condition = BoundaryConditionDirichlet(initial_condition) # Get the DG approximation space volume_flux = (flux_wintermeyer_etal, flux_nonconservative_wintermeyer_etal) -solver = DGSEM(polydeg = 4, surface_flux = (FluxHLL(min_max_speed_naive), flux_nonconservative_fjordholm_etal), +solver = DGSEM(polydeg = 4, + surface_flux = (FluxHLL(min_max_speed_naive), + flux_nonconservative_fjordholm_etal), volume_integral = VolumeIntegralFluxDifferencing(volume_flux)) ############################################################################### diff --git a/examples/unstructured_2d_dgsem/elixir_shallowwater_dirichlet.jl b/examples/unstructured_2d_dgsem/elixir_shallowwater_dirichlet.jl index 5777853506f..f5151c9e093 100644 --- a/examples/unstructured_2d_dgsem/elixir_shallowwater_dirichlet.jl +++ b/examples/unstructured_2d_dgsem/elixir_shallowwater_dirichlet.jl @@ -31,7 +31,9 @@ boundary_condition = Dict(:OuterCircle => boundary_condition_constant) # Get the DG approximation space volume_flux = (flux_wintermeyer_etal, flux_nonconservative_wintermeyer_etal) -solver = DGSEM(polydeg = 4, surface_flux = (FluxHLL(min_max_speed_naive), flux_nonconservative_fjordholm_etal), +solver = DGSEM(polydeg = 4, + surface_flux = (FluxHLL(min_max_speed_naive), + flux_nonconservative_fjordholm_etal), volume_integral = VolumeIntegralFluxDifferencing(volume_flux)) ###############################################################################