aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorallen <allen@5633253d-7678-4964-a54d-f87795f8ee59>2003-06-07 17:21:18 +0000
committerallen <allen@5633253d-7678-4964-a54d-f87795f8ee59>2003-06-07 17:21:18 +0000
commit93c0743acfc174d1455e6325deefd513fb4e5c6d (patch)
tree335cd38fcc3c7681a8b1566b8b2e8312946ac3e7 /param.ccl
parent10701d221b2e4ffc413c7ec50bdc35aa5efab4c1 (diff)
Added different bits of documentation, added code for a parameter
which wasn't being used (and changed its name but since it wasn't implemented hopefully noone was using outtimestep_every). Removed two scheduled routines which were not doing anything. Fixes Cactus/1377, Cactus/1378, Cactus/1384, Cactus/1379. Does not fix Cactus/1385 yet. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Time/trunk@55 5633253d-7678-4964-a54d-f87795f8ee59
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl14
1 files changed, 7 insertions, 7 deletions
diff --git a/param.ccl b/param.ccl
index 2f9e89f..d9c1616 100644
--- a/param.ccl
+++ b/param.ccl
@@ -11,9 +11,9 @@ restricted:
KEYWORD timestep_method "Method for calculating timestep"
{
"given" :: "Use given timestep"
- "courant_static" :: "Courant condition at BASEGRID"
- "courant_speed" :: "Courant condition at PRESTEP (using wavespeed)"
- "courant_time" :: "Courant condition at PRESTEP (using min time)"
+ "courant_static" :: "Courant condition at BASEGRID (using dtfac)"
+ "courant_speed" :: "Courant condition at POSTSTEP (using wavespeed and courant_fac)"
+ "courant_time" :: "Courant condition at POSTSTEP (using min time and courant_fac)"
} "courant_static"
BOOLEAN timestep_outonly "Don't set a dynamic timestep, just output what it would be"
@@ -39,11 +39,11 @@ REAL courant_fac "The courant timestep condition dt = courant_fac*max(delta_spac
*:0 :: "For negative timestep"
} 0.9
-INT outtimestep_every "How often to output courant timestep"
+INT timestep_outevery "How often to output courant timestep"
{
- 0:* :: "Zero means no output"
-} 0
+ 1:* :: "Zero means no output"
+} 1
-BOOLEAN verbose "Give information about timestep setting"
+BOOLEAN verbose "Give selective information about timestep setting"
{
} "no" \ No newline at end of file