aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-10-10 00:57:51 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-10-10 00:57:51 +0000
commit7f7f784a5c10f6aad5da9f7b7c458d330a0312e3 (patch)
treeed52993ebcb0423e43d1bb0af466333932720eff /param.ccl
parent19046ac5972435e7b3b98222fb69704a0e828730 (diff)
add support for outputting te change in the horizon position from
one Newton iteration to the next, Delta_h, at each Newton iteration (for help debugging convergence problems) also move parameters for "should we output {h,H,Delta_h} from struct IO_info to struct solver_info also make the instructions on setting environment variables in make.configuration.defn even more verbose... git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@820 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl18
1 files changed, 13 insertions, 5 deletions
diff --git a/param.ccl b/param.ccl
index 9a00a45..befc0b3 100644
--- a/param.ccl
+++ b/param.ccl
@@ -214,9 +214,11 @@ boolean output_initial_guess \
{
} "false"
-# if this is used, the file names are the usual ones with ".it%d" appended
-boolean output_h_and_H_at_each_Newton_iteration \
- "should we output h and H at each Newton iteration (for debugging)?"
+# for debugging failure to converge, we can optionally output
+# h, H, and delta_h at each Newton iteration
+# (the file names are the usual ones with ".it%d" appended)
+boolean debugging_output_at_each_Newton_iteration \
+ "should we output {h, H, delta_h} at each Newton iteration?"
{
} "false"
@@ -264,14 +266,20 @@ string HDF5_file_name_extension "extension for HDF5 data files"
string h_base_file_name \
"base file name for horizon shape h input/output file(s)"
{
-.* :: "any string"
+.+ :: "any nonempty string"
} "h.dat"
string H_of_h_base_file_name "base file name for H(h) output file(s)"
{
-.* :: "any string"
+.+ :: "any nonempty string"
} "H.dat"
+string Delta_h_base_file_name \
+ "base file name for horizon-shape-update Delta_h output file(s)"
+{
+.+ :: "any nonempty string"
+} "Delta_h.dat"
+
string Jacobian_base_file_name "base file name for Jacobian output file(s)"
{
.+ :: "any valid file name"