aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authordiener <diener@2a26948c-0e4f-0410-aee8-f1d3e353619c>2003-05-26 07:48:15 +0000
committerdiener <diener@2a26948c-0e4f-0410-aee8-f1d3e353619c>2003-05-26 07:48:15 +0000
commita454628dc04978583a1189f51b62493418b9f48b (patch)
tree1466c2073d017910ac0fe5ca4c53ab0439c3d877 /param.ccl
parent5e661dafe7f659025d3417df36ba702ab183e825 (diff)
Changed to use the newest version of MoL. Used its support for evolving
grid arrays to introduce tracking of the generators of the horizon along with the horizon itself. Still needs some work on setting up the initial generators (now it only does one) but first it needs to be tested. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/EHFinder/trunk@108 2a26948c-0e4f-0410-aee8-f1d3e353619c
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl40
1 files changed, 37 insertions, 3 deletions
diff --git a/param.ccl b/param.ccl
index 0eefed4..f54d5e8 100644
--- a/param.ccl
+++ b/param.ccl
@@ -198,19 +198,28 @@ BOOLEAN use_user_center "Should the user prescribed center be used"
CCTK_REAL center_x "The x-coordinate of the center"
{
-*:* :: "Anything"
+ *:* :: "Anything"
} 0.0
CCTK_REAL center_y "The y-coordinate of the center"
{
-*:* :: "Anything"
+ *:* :: "Anything"
} 0.0
CCTK_REAL center_z "The z-coordinate of the center"
{
-*:* :: "Anything"
+ *:* :: "Anything"
} 0.0
+BOOLEAN evolve_generators "Should the generators be evolved"
+{
+} "no"
+
+CCTK_INT number_of_generators "How many generators should be evolved"
+{
+ 1:* :: "Postive please"
+} 1
+
shares: grid
USES KEYWORD domain
@@ -239,3 +248,28 @@ EXTENDS KEYWORD initial_shift
shares: spacemask
USES KEYWORD use_mask
+
+shares: MethodOfLines
+
+USES CCTK_INT MoL_Num_Evolved_Vars
+USES CCTK_INT MoL_Max_Evolved_Array_Size
+USES CCTK_INT MoL_Num_ArrayEvolved_Vars
+
+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
+
+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
+{
+ 1:* :: "The size of the generator grid arrays"
+} 1
+
+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"
+} 3
+
+