aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorschnetter <schnetter@90eea020-d82d-4da5-bf6e-4ee79ff7632f>2003-11-05 19:58:30 +0000
committerschnetter <schnetter@90eea020-d82d-4da5-bf6e-4ee79ff7632f>2003-11-05 19:58:30 +0000
commit5a10b056bae14fb944fdbdf5a025594d1c089fad (patch)
treef387b8da32e604d3355283090c69c64d04bb0d93 /schedule.ccl
parent0f2754e46324c85096ca808d56cd50c7c9f1a916 (diff)
Schedule boundary conditions at postrestrict.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyC/trunk@93 90eea020-d82d-4da5-bf6e-4ee79ff7632f
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl12
1 files changed, 12 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
index bb18e8f..ae86396 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -11,6 +11,7 @@ schedule WaveToyC_Startup at STARTUP
schedule WaveToyC_InitSymBound at BASEGRID
{
LANG: C
+ OPTIONS: global
} "Schedule symmetries"
schedule WaveToyC_Evolution as WaveToy_Evolution at EVOL
@@ -22,8 +23,19 @@ schedule WaveToyC_Evolution as WaveToy_Evolution at EVOL
schedule WaveToyC_Boundaries as WaveToy_Boundaries at EVOL AFTER WaveToy_Evolution
{
LANG: C
+ # TODO: split this into local and level mode routines
} "Boundaries of 3D wave equation"
schedule GROUP ApplyBCs as WaveToyC_ApplyBCs at EVOL after WaveToy_Boundaries
{
} "Apply boundary conditions"
+
+schedule WaveToyC_Boundaries as WaveToy_Boundaries at POSTRESTRICT
+{
+ LANG: C
+ # TODO: split this into local and level mode routines
+} "Boundaries of 3D wave equation"
+
+schedule GROUP ApplyBCs as WaveToyC_ApplyBCs at POSTRESTRICT after WaveToy_Boundaries
+{
+} "Apply boundary conditions"