Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
f4c7310
enabled MPI for 2D parabolic system on P4est mesh (from present main)
Mar 26, 2026
e4d8dc4
Merge branch 'main' into MPI_P4est_Parabolic2D_clean
TJP-Karpowski Mar 26, 2026
5f77917
adapted naming: viscous -> parabolic
Mar 26, 2026
68f47a9
Merge branch 'main' into MPI_P4est_Parabolic2D_clean
TJP-Karpowski Apr 1, 2026
714f7da
Merge branch 'main' into MPI_P4est_Parabolic2D_clean
TJP-Karpowski Apr 2, 2026
e8d34a8
added assertion to ensure no mortars are present
Apr 2, 2026
206eea3
cleanup style
Apr 2, 2026
7098b59
Merge branch 'main' into MPI_P4est_Parabolic2D_clean
TJP-Karpowski Apr 3, 2026
606174f
increased allocation limit (checked similar allocations in MPI as hyp…
Apr 3, 2026
db05d73
Merge branch 'main' into MPI_P4est_Parabolic2D_clean
TJP-Karpowski Apr 7, 2026
4a02f54
Apply suggestions from code review
TJP-Karpowski Apr 8, 2026
7b36fdc
added comments to clarify sign-flip
Apr 8, 2026
cb9f519
extended comment on orientation_factor
Apr 8, 2026
0da652e
renamed surface integral MPI accumulate
Apr 8, 2026
808c21e
Merge branch 'main' into MPI_P4est_Parabolic2D_clean
ranocha Apr 8, 2026
68208b0
Apply suggestions from code review
TJP-Karpowski Apr 8, 2026
71dd53d
removed unnecessary function
Apr 8, 2026
91772d6
moved mpi send to end
Apr 8, 2026
7c1638f
Apply suggestions from code review
TJP-Karpowski Apr 9, 2026
444fc42
formatting applied
Apr 9, 2026
2b16052
Merge branch 'main' into MPI_P4est_Parabolic2D_clean
TJP-Karpowski Apr 10, 2026
9c26cd8
Merge branch 'main' into MPI_P4est_Parabolic2D_clean
TJP-Karpowski Apr 11, 2026
3abb598
Merge branch 'main' into MPI_P4est_Parabolic2D_clean
sloede Apr 17, 2026
b4df801
added name to Authors
Apr 18, 2026
d8a3f13
Merge branch 'main' into MPI_P4est_Parabolic2D_clean
ranocha Apr 19, 2026
cc6d70f
Apply suggestions from code review
DanielDoehring Apr 20, 2026
4bff172
Update src/solvers/dgsem_p4est/dg_2d_parabolic_parallel.jl
DanielDoehring Apr 20, 2026
9ea1af9
Merge branch 'main' into MPI_P4est_Parabolic2D_clean
ranocha Apr 20, 2026
e95d55f
Merge branch 'main' into MPI_P4est_Parabolic2D_clean
ranocha Apr 20, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ are listed in alphabetical order:
* Gregor Gassner
* Lucas Gemein
* Sven Goldberg
* T. Jeremy P. Karpowski
* Joshua Lampert
* Tristan Montoya
* Julia Odenthal
Expand Down
6 changes: 6 additions & 0 deletions src/callbacks_step/analysis_surface_integral_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,9 @@ function analyze(surface_variable::AnalysisSurfaceIntegral, du, u, t,
j_node += j_node_step
end
end
if mpi_isparallel()
surface_integral = MPI.Allreduce!(Ref(surface_integral), +, mpi_comm())[]
end
return surface_integral
end

Expand Down Expand Up @@ -320,6 +323,9 @@ function analyze(surface_variable::AnalysisSurfaceIntegral{Variable}, du, u, t,
j_node += j_node_step
end
end
if mpi_isparallel()
surface_integral = MPI.Allreduce!(Ref(surface_integral), +, mpi_comm())[]
end
return surface_integral
end
end # muladd
Loading
Loading