Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielDoehring committed Nov 17, 2023
1 parent 794e0a9 commit a176f3f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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))

###############################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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))

###############################################################################
Expand Down

0 comments on commit a176f3f

Please sign in to comment.