aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorgoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2000-09-20 09:11:47 +0000
committergoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2000-09-20 09:11:47 +0000
commit6b1dd294583ff99e3c8a160e9c3c10ca0751b566 (patch)
tree6f05c46c113a842e8466482394cf1fc369d23c3e /param.ccl
parent8c06471068be650adc06b3bbaa7a8e2bab6d2002 (diff)
Added parameters and control logic for run until iteration or simulation time
or expression. Added parameter and logic for single stepping. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@57 1faa4e14-9dd3-4be0-9f0e-ffe519881164
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl40
1 files changed, 40 insertions, 0 deletions
diff --git a/param.ccl b/param.ccl
index 444cdd3..7b0266d 100644
--- a/param.ccl
+++ b/param.ccl
@@ -68,3 +68,43 @@ BOOLEAN terminate "Kill the simulation ?" STEERABLE = ALWAYS
{
} "no"
+###################################################################
+# Dynamic control
+
+
+BOOLEAN single_step "Do one step then pause ?" STEERABLE = ALWAYS
+{
+} "no"
+
+# Interate until
+
+BOOLEAN until_it_active "Use until_it parameter ?" STEERABLE = ALWAYS
+{
+} "no"
+
+INT until_it "Pause at this iteration" STEERABLE = ALWAYS
+{
+ : :: "Any iteration"
+} -1
+
+# Run until
+
+BOOLEAN until_time_active "Use until_time parameter ?" STEERABLE = ALWAYS
+{
+} "no"
+
+REAL until_time "Pause after this simulation time" STEERABLE = ALWAYS
+{
+ : :: "Any time"
+} -1
+
+# Run until expression
+
+BOOLEAN until_expression_active "Use until_expression parameter ?" STEERABLE = ALWAYS
+{
+} "no"
+
+STRING until_expression "Pause if this expression evaluates to true." STEERABLE = ALWAYS
+{
+ ".*" :: "Any expression"
+} ""