aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authordiener <diener@2a26948c-0e4f-0410-aee8-f1d3e353619c>2003-08-13 17:17:02 +0000
committerdiener <diener@2a26948c-0e4f-0410-aee8-f1d3e353619c>2003-08-13 17:17:02 +0000
commit448f54367d7d038c6f9b017bdcfecf0b15c63e15 (patch)
tree3723b68391f2f80601516995a098eca02c86c19f /param.ccl
parent460b8a2d7626982704182b21d62f77f37b1fa0c5 (diff)
Changed to using vector groups of the level set function and related
grid functions. More changes are needed to make everything work as before but all of the standard features seem to be working. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/EHFinder/trunk@128 2a26948c-0e4f-0410-aee8-f1d3e353619c
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl17
1 files changed, 10 insertions, 7 deletions
diff --git a/param.ccl b/param.ccl
index 8f62563..530cb71 100644
--- a/param.ccl
+++ b/param.ccl
@@ -3,6 +3,11 @@
private:
+INT eh_number_level_sets "How many level set functions should we evolve"
+{
+ 1: :: "Larger than or equal to one"
+} 1
+
KEYWORD eh_metric_type "Do we use numerical or analytic metric information"
{
"numerical" :: "Read in metric from numerical data"
@@ -25,14 +30,14 @@ BOOLEAN read_conformal_factor_once "Should the conformal factor only be read onc
{
} "yes"
-KEYWORD initial_f "Initial surface choice"
+KEYWORD initial_f[10] "Initial surface choice"
{
"sphere" :: "spherical surface"
"ellipsoid" :: "ellipsoidal surface"
"cassini" :: "ovaloid of cassini"
} "sphere"
-REAL initial_rad "Initial radius of surface"
+REAL initial_rad[10] "Initial radius of surface"
{
0.0: :: "Positive please"
} 1.0
@@ -126,7 +131,7 @@ KEYWORD upwind_type "Type of upwinding used in evolving the ehfinder equations"
"intrinsic" :: "Use the values of f itself to determine upwind direction"
"shift" :: "Use the shift to determine upwind direction"
"characteristic" :: "Use characteristic information"
-} "intrinsic"
+} "characteristic"
KEYWORD surface_direction "Should we track outward or inward moving surfaces"
{
@@ -311,7 +316,7 @@ restricted:
CCTK_INT EHFinder_MaxNumEvolvedVars "The maximum number of evolved variables used by EHFinder" ACCUMULATOR-BASE=MethodOfLines::MoL_Num_Evolved_Vars
{
- 1:1 :: "Only evolve the level set function"
+ 1:10 :: "Only evolve the level set functions"
} 1
CCTK_INT EHFinder_Max_Evolved_Array_Size "The maximum size of evolved grid arrays used by EHFinder" ACCUMULATOR-BASE=MethodOfLines::MoL_Max_Evolved_Array_Size
@@ -321,7 +326,5 @@ CCTK_INT EHFinder_Max_Evolved_Array_Size "The maximum size of evolved grid array
CCTK_INT EHFinder_Num_ArrayEvolved_Vars "The maximum number of evolved grid arrays used by EHFinder" ACCUMULATOR-BASE=MethodOfLines::MoL_Num_ArrayEvolved_Vars
{
- 0:3 :: "Should be exactly zero or three"
+ 0:30 :: "Should be exactly zero or a multiple of three"
} 3
-
-