aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl16
1 files changed, 14 insertions, 2 deletions
diff --git a/schedule.ccl b/schedule.ccl
index c856ecf..1b687c0 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -25,7 +25,13 @@ if (constraints_persist)
LANG: Fortran
} "Evaluate ADM constraints for use in other routines"
- schedule GROUP ApplyBCs as ADMConstraints_ApplyBCs at CCTK_POSTSTEP after ADMConstraints
+ schedule ADMConstraints_Boundaries at CCTK_POSTSTEP after ADMConstraints
+ {
+ LANG: Fortran
+ OPTIONS: LEVEL
+ } "Apply boundary conditions to the ADM constraints"
+
+ schedule GROUP ApplyBCs as ADMConstraints_ApplyBCs at CCTK_POSTSTEP after ADMConstraints_Boundaries
{
SYNC: hamiltonian, normalized_hamiltonian, momentum
} "Apply (symmetry) boundary conditions"
@@ -44,7 +50,13 @@ else
LANG: Fortran
} "Evaluate ADM constraints"
- schedule GROUP ApplyBCs as ADMConstraints_ApplyBCs in ADMConstraintsGroup after ADMConstraints
+ schedule ADMConstraints_Boundaries in ADMConstraintsGroup after ADMConstraints
+ {
+ LANG: Fortran
+ OPTIONS: LEVEL
+ } "Apply boundary conditions to the ADM constraints"
+
+ schedule GROUP ApplyBCs as ADMConstraints_ApplyBCs in ADMConstraintsGroup after ADMConstraints_Boundaries
{
} "Apply (symmetry) boundary conditions"
}