aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorschnetter <schnetter@eec4d7dc-71c2-46d6-addf-10296150bf52>2004-05-28 15:59:40 +0000
committerschnetter <schnetter@eec4d7dc-71c2-46d6-addf-10296150bf52>2004-05-28 15:59:40 +0000
commit448b2720f5fe8dfb4bf4f3277c14d03e76adab8e (patch)
tree7a75c2ffd42299f58e705c2c566ee1b2679b7849 /schedule.ccl
parentf135f728a85148b83723f40e99c468719cd7ba44 (diff)
Provide symmetry interpolation.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/Cartoon2D/trunk@84 eec4d7dc-71c2-46d6-addf-10296150bf52
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl10
1 files changed, 9 insertions, 1 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 2902d30..f0f19a4 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -3,6 +3,12 @@
if (cartoon_active)
{
+ schedule Cartoon2D_CheckTensorTypes at PARAMCHECK
+ {
+ LANG: C
+ OPTIONS: meta
+ } "Check tensor type definitions for consistency"
+
if (allow_grid_resize)
{
schedule Cartoon2D_SetGrid at CCTK_RECOVER_PARAMETERS
@@ -14,16 +20,18 @@ if (cartoon_active)
schedule Cartoon2D_RegisterSymmetries in SymmetryRegister
{
LANG: C
+ OPTIONS: global
} "Register symmetry boundaries"
schedule Cartoon2D_CheckParameters at CCTK_PARAMCHECK
{
LANG: C
+ OPTIONS: meta
} "Check Cartoon2D parameters"
# Apply cartoon boundary conditions after physical boundaries:
schedule Cartoon_ApplyBoundaries in BoundaryConditions after Boundary_ApplyPhysicalBCs
{
LANG: C
- } "Execute Cartoon boundary conditions"
+ } "Apply Cartoon boundary conditions"
}