aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--schedule.ccl9
1 files changed, 7 insertions, 2 deletions
diff --git a/schedule.ccl b/schedule.ccl
index d70c45a..403fcf7 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -6,7 +6,7 @@ STORAGE: speedvars, couranttemps
schedule Time_Initialise at CCTK_BASEGRID before (Time_Simple, Time_Given)
{
LANG: C
- OPTIONS: level
+ OPTIONS: global
} "Initialise Time variables"
if (CCTK_Equals (timestep_method, "courant_static"))
@@ -14,7 +14,7 @@ if (CCTK_Equals (timestep_method, "courant_static"))
schedule Time_Simple at CCTK_BASEGRID after SpatialCoordinates
{
LANG: C
- OPTIONS: level
+ OPTIONS: singlemap
} "Set timestep based on Courant condition (courant_static)"
}
else if (CCTK_Equals (timestep_method, "courant_speed"))
@@ -22,11 +22,13 @@ else if (CCTK_Equals (timestep_method, "courant_speed"))
schedule Time_Simple at CCTK_BASEGRID after SpatialCoordinates
{
LANG: C
+ OPTIONS: singlemap
} "Set timestep based on Courant condition (courant_speed)"
schedule Time_Courant at CCTK_POSTSTEP
{
LANG: C
+ OPTIONS: singlemap
} "Reset timestep each iteration"
}
else if (CCTK_Equals (timestep_method, "courant_time"))
@@ -35,11 +37,13 @@ else if (CCTK_Equals (timestep_method, "courant_time"))
schedule Time_Simple at CCTK_BASEGRID after SpatialCoordinates
{
LANG: C
+ OPTIONS: singlemap
} "Set timestep based on Courant condition (courant_time)"
schedule Time_Courant at CCTK_POSTSTEP
{
LANG: C
+ OPTIONS: singlemap
} "Reset timestep each iteration"
}
else
@@ -47,5 +51,6 @@ else
schedule Time_Given at CCTK_BASEGRID
{
LANG: C
+ OPTIONS: global
} "Set fixed timestep"
}