From ca9948139b94b2022a0eb721602292b3e685e43a Mon Sep 17 00:00:00 2001 From: Jorge Gonzalez Date: Tue, 20 Oct 2020 17:50:57 +0200 Subject: [PATCH] Dynamic schedule for collision loop to balance the uneven number of collisions in each cell. No success with balancing particle loops (push and weighting). --- src/modules/moduleSolver.f95 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/moduleSolver.f95 b/src/modules/moduleSolver.f95 index 59ed245..7566bb1 100644 --- a/src/modules/moduleSolver.f95 +++ b/src/modules/moduleSolver.f95 @@ -65,7 +65,7 @@ MODULE moduleSolver INTEGER:: e - !$OMP DO + !$OMP DO SCHEDULE(DYNAMIC) DO e=1, mesh%numVols CALL mesh%vols(e)%obj%collision() END DO