Skip to content

Commit

Permalink
calc_volume_integral! for all meshes supported by fv_kernel!
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielDoehring committed Jul 18, 2024
1 parent 91eac3c commit bf75bac
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/solvers/dgsem_tree/dg_1d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ end

# TODO: Taal dimension agnostic
function calc_volume_integral!(du, u,
mesh::TreeMesh{1},
mesh::Union{TreeMesh{1}, StructuredMesh{1}},
nonconservative_terms, equations,
volume_integral::VolumeIntegralPureLGLFiniteVolume,
dg::DGSEM, cache)
Expand Down
4 changes: 3 additions & 1 deletion src/solvers/dgsem_tree/dg_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,9 @@ end

# TODO: Taal dimension agnostic
function calc_volume_integral!(du, u,
mesh::TreeMesh{2},
mesh::Union{TreeMesh{2}, StructuredMesh{2},
UnstructuredMesh2D, P4estMesh{2},
T8codeMesh{2}},
nonconservative_terms, equations,
volume_integral::VolumeIntegralPureLGLFiniteVolume,
dg::DGSEM, cache)
Expand Down
3 changes: 2 additions & 1 deletion src/solvers/dgsem_tree/dg_3d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,8 @@ end

# TODO: Taal dimension agnostic
function calc_volume_integral!(du, u,
mesh::TreeMesh{3},
mesh::Union{TreeMesh{3}, StructuredMesh{3}, P4estMesh{3},
T8codeMesh{3}},
nonconservative_terms, equations,
volume_integral::VolumeIntegralPureLGLFiniteVolume,
dg::DGSEM, cache)
Expand Down
24 changes: 24 additions & 0 deletions test/test_structured_1d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,30 @@ end
@test (@allocated Trixi.rhs!(du_ode, u_ode, semi, t)) < 1000
end
end

@trixi_testset "elixir_euler_convergence_pure_fv.jl" begin
@test_trixi_include(joinpath(pkgdir(Trixi, "examples", "tree_1d_dgsem"),
"elixir_euler_convergence_pure_fv.jl"),
mesh=StructuredMesh(16, (0.0,), (2.0,)),
l2=[
0.019355699748523896,
0.022326984561234497,
0.02523665947241734,
],
linf=[
0.02895961127645519,
0.03293442484199227,
0.04246098278632804,
])
# Ensure that we do not have excessive memory allocations
# (e.g., from type instabilities)
let
t = sol.t[end]
u_ode = sol.u[end]
du_ode = similar(u_ode)
@test (@allocated Trixi.rhs!(du_ode, u_ode, semi, t)) < 1000
end
end
end

# Clean up afterwards: delete Trixi.jl output directory
Expand Down

0 comments on commit bf75bac

Please sign in to comment.