aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorschnetter <schnetter@d576a68a-b34a-40ae-82fc-004fa1a9d16f>2010-01-23 22:01:40 +0000
committerschnetter <schnetter@d576a68a-b34a-40ae-82fc-004fa1a9d16f>2010-01-23 22:01:40 +0000
commit8237c71e945513806341c0b59485abce2a7f3a55 (patch)
treebbaa760debbcb8e6cce68521b2fb6c881e861919 /param.ccl
parent1a75f97707101285753c33c4e619c09a30b0ed97 (diff)
Add parameters to let the user activate arbitrary numbers of time
levels in ADMBase. Add parameters to choose the prolongation type of the ADMBase variables. This is useful to disable prolongation, e.g. if only a single time level is active. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinBase/ADMBase/trunk@51 d576a68a-b34a-40ae-82fc-004fa1a9d16f
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl33
1 files changed, 33 insertions, 0 deletions
diff --git a/param.ccl b/param.ccl
index 4e34d41..1693654 100644
--- a/param.ccl
+++ b/param.ccl
@@ -65,3 +65,36 @@ KEYWORD metric_type "The semantics of the metric variables (physical, static con
{
"physical" :: "metric and extrinsic curvature are the physical ones"
} "physical"
+
+KEYWORD lapse_prolongation_type "The kind of boundary prolongation for the lapse"
+{
+ "Lagrange" :: "standard prolongation (requires several time levels)"
+ "none" :: "no prolongation (use this if you do not have enough time levels active)"
+} "Lagrange"
+
+KEYWORD shift_prolongation_type "The kind of boundary prolongation for the shift"
+{
+ "Lagrange" :: "standard prolongation (requires several time levels)"
+ "none" :: "no prolongation (use this if you do not have enough time levels active)"
+} "Lagrange"
+
+KEYWORD metric_prolongation_type "The kind of boundary prolongation for the metric and extrinsic curvature"
+{
+ "Lagrange" :: "standard prolongation (requires several time levels)"
+ "none" :: "no prolongation (use this if you do not have enough time levels active)"
+} "Lagrange"
+
+INT lapse_timelevels "Number of time levels for the lapse"
+{
+ 0:3 :: ""
+} 1
+
+INT shift_timelevels "Number of time levels for the shift"
+{
+ 0:3 :: ""
+} 1
+
+INT metric_timelevels "Number of time levels for the metric and extrinsic curvature"
+{
+ 0:3 :: ""
+} 1