aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknarf <knarf@b7a48df3-cbbf-4440-997f-b4b717c9f7fc>2009-12-08 19:16:04 +0000
committerknarf <knarf@b7a48df3-cbbf-4440-997f-b4b717c9f7fc>2009-12-08 19:16:04 +0000
commit201744cb760ad6b9c6e983b2c7105b68fdd87c94 (patch)
tree805eda6a88e8dae5e91bdd6fce29540386b83422
parentda720d300354e69ff6c6469f14b2ea8cd17cdbe3 (diff)
Ian Hinder: Schedule the computation of the constraints in CCTK_POSTREGRID and CCTK_POSTRESTRICT. Previously, the constraints would have contained undefined (or poison) values after regridding.
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/ADMConstraints/trunk@141 b7a48df3-cbbf-4440-997f-b4b717c9f7fc
-rw-r--r--schedule.ccl8
1 files changed, 8 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 2b44cd1..98df5fd 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -41,7 +41,15 @@ if (constraints_persist)
schedule GROUP ADMConstraintsGroup at CCTK_EVOL after MoL_Evolution
{
} "Evaluate ADM constraints, and perform symmetry boundary conditions"
+
+ schedule GROUP ADMConstraintsGroup at CCTK_POSTREGRID after MoL_PostStep
+ {
+ } "Evaluate ADM constraints, and perform symmetry boundary conditions"
+ schedule GROUP ADMConstraintsGroup at CCTK_POSTRESTRICT after MoL_PostStep
+ {
+ } "Evaluate ADM constraints, and perform symmetry boundary conditions"
+
schedule GROUP ADMConstraintsBoundariesGroup at CCTK_POSTREGRID after MoL_PostStep
{
} "Set ADM constraints on the boundary"