aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authordiener <diener@2a26948c-0e4f-0410-aee8-f1d3e353619c>2003-01-23 16:56:16 +0000
committerdiener <diener@2a26948c-0e4f-0410-aee8-f1d3e353619c>2003-01-23 16:56:16 +0000
commitc051ea5a424e578271c17b90f769167eaac0ed36 (patch)
tree85f0b10bfe200f70a8f04f93872c49dbd9dd4c5d /schedule.ccl
parent6feaa907f43a57823a41f27a6727faeb29169cf4 (diff)
First pass at finding points on the level set surface, just to test
feasibility of the algorithm. Now it needs to be parallelized using grid-arrays instead of using local arrays and generelized to more than full mode. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/EHFinder/trunk@77 2a26948c-0e4f-0410-aee8-f1d3e353619c
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl9
1 files changed, 8 insertions, 1 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 7cc65ad..8cf7384 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -68,13 +68,20 @@ schedule EHFinder_Init at CCTK_POSTINITIAL
SYNC: level_set
} "Setup the initial surface"
-schedule EHFinder_Integrate at CCTK_ANALYSIS
+schedule EHFinder_Integrate at CCTK_ANALYSIS after EHFinder_FindSurface
{
LANG: Fortran
STORAGE: eh_area
TRIGGER: eh_area
} "Calculate integrals"
+schedule EHFinder_FindSurface at CCTK_ANALYSIS
+{
+ LANG: Fortran
+ STORAGE: eh_area
+ TRIGGER: eh_area
+} "Find Surface"
+
# Read in the data used in reconstructing the 4-metric if necessary
if (CCTK_Equals(eh_metric_type,"numerical"))