From 8818164ee93781355a88da4bc40bea0ee179a16d Mon Sep 17 00:00:00 2001 From: allen Date: Fri, 15 Sep 2000 10:28:37 +0000 Subject: 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 --- param.ccl | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'param.ccl') 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 -- cgit v1.2.3