aboutsummaryrefslogtreecommitdiff
path: root/CarpetAttic/CartGrid3D/param.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'CarpetAttic/CartGrid3D/param.ccl')
-rw-r--r--CarpetAttic/CartGrid3D/param.ccl171
1 files changed, 171 insertions, 0 deletions
diff --git a/CarpetAttic/CartGrid3D/param.ccl b/CarpetAttic/CartGrid3D/param.ccl
new file mode 100644
index 000000000..433a6f0ac
--- /dev/null
+++ b/CarpetAttic/CartGrid3D/param.ccl
@@ -0,0 +1,171 @@
+# Parameter definitions for thorn CartGrid3D
+# $Header: /home/eschnett/C/carpet/Carpet/CarpetAttic/CartGrid3D/Attic/param.ccl,v 1.1 2002/04/03 16:33:26 schnetter Exp $
+
+shares: driver
+
+USES BOOLEAN periodic
+USES BOOLEAN periodic_x
+USES BOOLEAN periodic_y
+USES BOOLEAN periodic_z
+
+
+private:
+
+BOOLEAN no_origin "DEPRECATED: Don't place grid points on the coordinate origin/axes"
+{
+ : :: ""
+} "yes"
+
+BOOLEAN no_originx "DEPRECATED: Don't place grid points on the x-coordinate origin/axes"
+{
+ : :: ""
+} "yes"
+
+BOOLEAN no_originy "DEPRECATED: Don't place grid points on the y-coordinate origin/axes"
+{
+ : :: ""
+} "yes"
+
+BOOLEAN no_originz "DEPRECATED: Don't place grid points on the z-coordinate origin/axes"
+{
+ : :: ""
+} "yes"
+
+BOOLEAN avoid_originx "Don't place grid points on the x-coordinate origin/axes"
+{
+ : :: ""
+} "yes"
+
+BOOLEAN avoid_originy "Don't place grid points on the y-coordinate origin/axes"
+{
+ : :: ""
+} "yes"
+
+BOOLEAN avoid_originz "Don't place grid points on the z-coordinate origin/axes"
+{
+ : :: ""
+} "yes"
+
+BOOLEAN avoid_origin "Don't place grid points on the coordinate origin/axes"
+{
+ : :: ""
+} "yes"
+
+
+
+restricted:
+
+REAL dx "Coarse grid spacing in x-direction"
+{
+ 0:* :: "Positive"
+} 0.3
+REAL dy "Coarse grid spacing in y-direction"
+{
+ 0:* :: "Positive"
+} 0.3
+REAL dz "Coarse grid spacing in z-direction"
+{
+ 0:* :: "Positive"
+} 0.3
+REAL dxyz "Coarse grid spacing in x,y,z-directions"
+{
+ 0:* :: "Positive"
+} 0.0
+
+
+REAL xmin "Coordinate minimum in x-direction"
+{
+ : :: "Anything"
+} -1.0
+REAL ymin "Coordinate minimum in y-direction"
+{
+ : :: "Anything"
+} -1.0
+REAL zmin "Coordinate minimum in z-direction"
+{
+ : :: "Anything"
+} -1.0
+REAL xyzmin "Coordinate minimum in x,y,z-directions"
+{
+ : :: "Anything"
+} -424242
+
+
+REAL xmax "Coordinate maximum in x-direction"
+{
+ : :: "Anything"
+} 1.0
+REAL ymax "Coordinate maximum in y-direction"
+{
+ : :: "Anything"
+} 1.0
+REAL zmax "Coordinate maximum in z-direction"
+{
+ : :: "Anything"
+} 1.0
+REAL xyzmax "Coordinate maximum in xyz-directions"
+{
+ : :: "Anything"
+} -424242
+
+
+KEYWORD type "Grid type"
+{
+ "box" :: "Box grid from -0.5 to 0.5"
+ "byrange" :: "Specify min and max values"
+ "byspacing" :: "Specify grid spacings"
+} "box"
+
+KEYWORD domain "Domain type"
+{
+ "octant" :: "Use an octant about the origin"
+ "quadrant" :: "Use a quadrant in x-y plane"
+ "bitant" :: "Use a bitant about the x-y plane"
+ "full" :: "Use the full domain"
+} "full"
+
+KEYWORD bitant_plane "Plane defining bitant domain"
+{
+ "xy" :: "xy-plane"
+ "xz" :: "xz-plane"
+ "yz" :: "yz-plane"
+} "xy"
+
+KEYWORD quadrant_direction "Direction defining quadrant domain"
+{
+ "x" :: "x-direction"
+ "y" :: "y-direction"
+ "z" :: "z-direction"
+} "z"
+
+BOOLEAN symmetry_xmin "Symmetry boundary condition on lower x boundary"
+{
+ : :: "Logical"
+} "no"
+
+BOOLEAN symmetry_ymin "Symmetry boundary condition on lower y boundary"
+{
+ : :: "Logical"
+} "no"
+
+BOOLEAN symmetry_zmin "Symmetry boundary condition on lower z boundary"
+{
+ : :: "Logical"
+} "no"
+
+BOOLEAN symmetry_xmax "Symmetry boundary condition on upper x boundary"
+{
+ : :: "Logical"
+} "no"
+
+BOOLEAN symmetry_ymax "Symmetry boundary condition on upper y boundary"
+{
+ : :: "Logical"
+} "no"
+
+BOOLEAN symmetry_zmax "Symmetry boundary condition on upper z boundary"
+{
+ : :: "Logical"
+} "no"
+
+