aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorallen <allen@c78560ca-4b45-4335-b268-5f3340f3cb52>1999-11-02 10:04:06 +0000
committerallen <allen@c78560ca-4b45-4335-b268-5f3340f3cb52>1999-11-02 10:04:06 +0000
commitadcc184a3284cab075d3f5386763de9e05c03039 (patch)
tree4295da4ba885bec06cf654dba1f38cb03829bae6 /param.ccl
parent8a95f422744fd805afb1da4977b46593feb10655 (diff)
Added options needed by Cartoon
bitant_plane = "xy" "xz" "yz" (default "xy") no_originx = "yes" "no" (default "yes") no_originy = "yes" "no" (default "yes") no_originz = "yes" "no" (default "yes") The logic is that if no_origin = "yes" *and* no_origin? = "yes" then the coordinates will avoid the origin, so if you don't want one particular coordinate to avoid the origin you put e.g. no_originx = "no" At the moment this only works in bitant. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/CartGrid3D/trunk@77 c78560ca-4b45-4335-b268-5f3340f3cb52
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl21
1 files changed, 21 insertions, 0 deletions
diff --git a/param.ccl b/param.ccl
index 1935592..f99c696 100644
--- a/param.ccl
+++ b/param.ccl
@@ -8,6 +8,21 @@ BOOLEAN no_origin "Don't place grid points on the coordinate origin/axes"
: ::
} "yes"
+BOOLEAN no_originx "Don't place grid points on the x-coordinate origin/axes"
+{
+ : ::
+} "yes"
+
+BOOLEAN no_originy "Don't place grid points on the y-coordinate origin/axes"
+{
+ : ::
+} "yes"
+
+BOOLEAN no_originz "Don't place grid points on the z-coordinate origin/axes"
+{
+ : ::
+} "yes"
+
restricted:
@@ -77,3 +92,9 @@ KEYWORD domain "Domain type"
"full" :: "Use the full domain"
} "full"
+KEYWORD bitant_plane "Plane defining bitant domain"
+{
+ "xy" :: "xy-plane"
+ "xz" :: "xz-plane"
+ "yz" :: "yz-plane"
+} "xy" \ No newline at end of file