aboutsummaryrefslogtreecommitdiff
path: root/param.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 /param.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 'param.ccl')
-rw-r--r--param.ccl15
1 files changed, 7 insertions, 8 deletions
diff --git a/param.ccl b/param.ccl
index 79ce823..30fa3ff 100644
--- a/param.ccl
+++ b/param.ccl
@@ -3,19 +3,18 @@
restricted:
-KEYWORD courant_method "Method for calculating timestep"
+KEYWORD timestep_method "Method for calculating timestep"
{
- "none" :: "Use given timestep"
- "standard" :: "Courant condition at BASEGRID"
- "courant" :: "Courant condition at PRESTEP (using wavespeed)"
+ "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)"
-} "standard"
+} "courant_static"
-BOOLEAN courant_outonly "Only output courant timestep?"
+BOOLEAN timestep_outonly "Don't set a dynamic timestep, just output what it would be"
{
} "no"
-
private:
REAL timestep "Absolute value for timestep"
@@ -33,7 +32,7 @@ REAL courant_fac "The courant timestep condition dt = courant_fac*max(delta_spac
0:* :: "Probably only makes sense to be bigger than zero"
} 0.9
-INT outcourant_every "How often to output courant timestep"
+INT outtimestep_every "How often to output courant timestep"
{
0:* :: "Zero means no output"
} 0 \ No newline at end of file