aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetIOBasic/param.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'Carpet/CarpetIOBasic/param.ccl')
-rw-r--r--Carpet/CarpetIOBasic/param.ccl61
1 files changed, 55 insertions, 6 deletions
diff --git a/Carpet/CarpetIOBasic/param.ccl b/Carpet/CarpetIOBasic/param.ccl
index e77339d19..8153424c6 100644
--- a/Carpet/CarpetIOBasic/param.ccl
+++ b/Carpet/CarpetIOBasic/param.ccl
@@ -1,8 +1,6 @@
# Parameter definitions for thorn CarpetIOBasic
-
-
-shares: IO
+SHARES: IO
USES KEYWORD out_criterion
USES CCTK_INT out_every
@@ -12,9 +10,7 @@ USES BOOLEAN strict_io_parameter_check
-private:
-
-
+PRIVATE:
CCTK_STRING outInfo_vars "Variables to output in scalar form" STEERABLE = ALWAYS
{
@@ -49,3 +45,56 @@ REAL outInfo_dt "How often to do scalar output, overrides out_dt" STEERABLE = AL
-1 :: "Disable output"
-2 :: "Default to IO::out_dt"
} -2
+
+
+
+# Output field widths and precisions
+
+INT iter_width "Field width for the current iteration" STEERABLE = ALWAYS
+{
+ 1:* :: ""
+} 9
+
+INT time_width "Field width for the simulation time" STEERABLE = ALWAYS
+{
+ 1:* :: ""
+} 9
+
+INT time_prec "Precision for the simulation time" STEERABLE = ALWAYS
+{
+ 0:* :: ""
+} 3
+
+
+
+INT int_width "Field width for integer values" STEERABLE = ALWAYS
+{
+ 1:* :: ""
+} 11
+
+INT real_width "Field width for real values" STEERABLE = ALWAYS
+{
+ 1:* :: ""
+} 13
+
+INT real_prec "Precision for real values" STEERABLE = ALWAYS
+{
+ 0:* :: ""
+} 8
+
+INT real_prec_sci "Precision for real values in scientific notation" STEERABLE = ALWAYS
+{
+ 0:* :: ""
+} 6
+
+
+
+REAL real_min "Lower bound for numbers that are displayed in fixed notation" STEERABLE = ALWAYS
+{
+ (0.0:* :: ""
+} 1.0e-8
+
+REAL real_max "Upper bound for numbers that are displayed in fixed notation" STEERABLE = ALWAYS
+{
+ (0.0:* :: ""
+} 1.0e+3