Skip to content

Commit

Permalink
Compatibility with Trixi.jl v0.9.9+ (Remove unused surface_integral
Browse files Browse the repository at this point in the history
… from calls to `prolong2mortars!`) (#59)

* no longer pass surface_integral into prolong2mortars

* bump compat for Trixi from 0.9 to 0.9.9

* fix spelling
  • Loading branch information
tristanmontoya authored Jan 3, 2025
1 parent f3a3c56 commit e7c1de7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ Static = "0.8, 1"
StaticArrayInterface = "1.5.1"
StaticArrays = "1"
StrideArrays = "0.1.28"
Trixi = "0.9"
Trixi = "0.9.9"
julia = "1.9"
2 changes: 1 addition & 1 deletion src/meshes/p4est_icosahedron_quads.jl
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ end
# / -------->ξ | └------->ξ \
# /__________________|___________________\
#
# Each of those quadrilaterlas is subdivided into trees_per_face_dimension^2 trees.
# Each of those quadrilaterals is subdivided into trees_per_face_dimension^2 trees.
#
# We use the following numbering for the 12 vertices of the icosahedron
# Fig 3:
Expand Down
3 changes: 1 addition & 2 deletions src/solvers/dgsem_p4est/dg_2d_manifold_in_3d_cartesian.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ function Trixi.rhs!(du, u, t,

# Prolong solution to mortars
Trixi.@trixi_timeit Trixi.timer() "prolong2mortars" begin
Trixi.prolong2mortars!(cache, u, mesh, equations,
dg.mortar, dg.surface_integral, dg)
Trixi.prolong2mortars!(cache, u, mesh, equations, dg.mortar, dg)
end

# Calculate mortar fluxes
Expand Down

0 comments on commit e7c1de7

Please sign in to comment.