aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorreisswig <reisswig@40f6ab95-0e4f-0410-8daa-ee8d7420be1d>2007-11-02 11:27:19 +0000
committerreisswig <reisswig@40f6ab95-0e4f-0410-8daa-ee8d7420be1d>2007-11-02 11:27:19 +0000
commit2f2deabf0520a66da257ba83fb599ddfb872ef5e (patch)
tree5f338c2b3ea8443601ea1265c30935aaadc5ffc1 /schedule.ccl
parent921333dfb7a1a886159e648a75aef070cbe8497c (diff)
- introduced auto-res feature
- introduced two new attributes that store with which reflevel a surface will intersect or is fully contained git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SphericalSurface/trunk@28 40f6ab95-0e4f-0410-8daa-ee8d7420be1d
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl21
1 files changed, 19 insertions, 2 deletions
diff --git a/schedule.ccl b/schedule.ccl
index b3f5386..034bdd9 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -6,14 +6,17 @@ STORAGE: sf_valid
STORAGE: sf_info
STORAGE: sf_radius sf_origin
STORAGE: sf_coordinate_descriptors
+STORAGE: sf_coordinate_estimators
STORAGE: sf_shape_descriptors
-
+STORAGE: sf_minreflevel
+STORAGE: sf_maxreflevel
SCHEDULE SphericalSurface_Setup AT basegrid
{
LANG: C
- OPTIONS: global
+ #OPTIONS: global
+ OPTIONS: local
} "Calculate surface coordinate descriptors"
@@ -35,3 +38,17 @@ SCHEDULE SphericalSurface_Set AT poststep BEFORE SphericalSurface_HasBeenSet
LANG: C
OPTIONS: global
} "Set surface radii"
+
+
+SCHEDULE SphericalSurface_Set AT basegrid AFTER SphericalSurface_Setup
+{
+ LANG: C
+ OPTIONS: local
+} "Set surface radii to be used for initial setup in other thorns"
+
+
+SCHEDULE SphericalSurface_SetupRes AT basegrid BEFORE SphericalSurface_Setup AFTER CartGrid3D_SetCoordinates
+{
+ LANG: C
+ OPTIONS: local
+} "Set surface resolution automatically"