aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authordiener <diener@2a26948c-0e4f-0410-aee8-f1d3e353619c>2002-04-19 09:31:51 +0000
committerdiener <diener@2a26948c-0e4f-0410-aee8-f1d3e353619c>2002-04-19 09:31:51 +0000
commitb6d8e0e0f643fc908435ccc955690edcdab1e272 (patch)
tree744037f4f470a2d89d0a238d91c39a8cd7c60d48 /schedule.ccl
parentc049541c04620a927261fe2bed99654fdccee0e6 (diff)
Routines for setting up evolution with MoL, for initializing the level set
function and evolving it. Have to add re-parametrization of the level set function before it can be used. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/EHFinder/trunk@3 2a26948c-0e4f-0410-aee8-f1d3e353619c
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl26
1 files changed, 26 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
index d3b44f6..39eae35 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,2 +1,28 @@
# Schedule definitions for thorn EHFinder
# $Header$
+
+STORAGE: level_set
+STORAGE: slevel_set
+STORAGE: dlevel_set
+
+schedule EHFinder_Init at CCTK_POSTINITIAL
+{
+ LANG: Fortran
+ SYNC: level_set
+} "Setup the initial surface"
+
+schedule EHFinder_MoLRegister in MoL_Register
+{
+ LANG: Fortran
+} "Register evolution variables"
+
+schedule EHFinder_Sources in MoL_CalcRHS
+{
+ LANG: Fortran
+} "Calculate the source terms"
+
+schedule GROUP EHFinder_PostStep in MoL_PostStep
+{
+ LANG: Fortran
+ SYNC: level_set
+} "Schedule syncing of level set"