aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorallen <allen@5633253d-7678-4964-a54d-f87795f8ee59>2000-09-15 10:28:37 +0000
committerallen <allen@5633253d-7678-4964-a54d-f87795f8ee59>2000-09-15 10:28:37 +0000
commit8818164ee93781355a88da4bc40bea0ee179a16d (patch)
tree4130b28654785d16323edf31d6df812bcfa61363 /schedule.ccl
parenta69ca9960f5eed7aec267de705a2b8554fe5c450 (diff)
Changes to better parameter names after adding new fixed timestep choice.
THESE SHOULDNT AFFECT ANYONE UNLESS THEY ARE USING DYNAMIC COURANT TIMESTEPS THE DEFAULTS REMAIN THE SAME Main one is that courant_method->timestep_method git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Time/trunk@28 5633253d-7678-4964-a54d-f87795f8ee59
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl4
1 files changed, 2 insertions, 2 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 2399f7f..343bede 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,14 +1,14 @@
# Schedule definitions for thorn Time
# $Header$
-if (CCTK_Equals(courant_method,"standard"))
+if (CCTK_Equals(timestep_method,"courant_static"))
{
schedule Time_Simple at CCTK_BASEGRID after SpatialCoordinates
{
LANG: C
} "Set timestep based on Courant condition"
}
-else if (CCTK_Equals(courant_method,"courant") || CCTK_Equals(courant_method,"courant_time"))
+else if (CCTK_Equals(timestep_method,"courant_speed") || CCTK_Equals(timestep_method,"courant_time"))
{
schedule Time_Simple at CCTK_BASEGRID after SpatialCoordinates
{