aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorallen <allen@c78560ca-4b45-4335-b268-5f3340f3cb52>1999-02-14 20:35:42 +0000
committerallen <allen@c78560ca-4b45-4335-b268-5f3340f3cb52>1999-02-14 20:35:42 +0000
commite324b28ed17601a378e050d7a54867226851d981 (patch)
tree998c471d379cdff9d4a35e340e080aec2bd8f790 /param.ccl
parent86a0701e5cb7a3d10094ee56c92c6da01b2bc3e9 (diff)
*** empty log message ***
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/CartGrid3D/trunk@2 c78560ca-4b45-4335-b268-5f3340f3cb52
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl52
1 files changed, 52 insertions, 0 deletions
diff --git a/param.ccl b/param.ccl
new file mode 100644
index 0000000..4832cfa
--- /dev/null
+++ b/param.ccl
@@ -0,0 +1,52 @@
+# Parameter definitions for thorn CartGrid3D
+# $Header$
+
+public:
+
+REAL grid_dx "Grid spacing in x-direction"
+{
+ 0: ::
+} 0.3
+REAL grid_dy "Grid spacing in y-direction"
+{
+ 0: ::
+} 0.3
+REAL grid_dz "Grid spacing in z-direction"
+{
+ 0: ::
+} 0.3
+
+REAL grid_xmin "Coordinate minimum in x-direction"
+{
+ : ::
+} -1.0
+REAL grid_ymin "Coordinate minimum in y-direction"
+{
+ : ::
+} -1.0
+REAL grid_zmin "Coordinate minimum in z-direction"
+{
+ : ::
+} -1.0
+REAL grid_xmax "Coordinate maximum in x-direction"
+{
+ : ::
+} 1.0
+REAL grid_ymax "Coordinate maximum in y-direction"
+{
+ : ::
+} 1.0
+REAL grid_zmax "Coordinate maximum in z-direction"
+{
+ : ::
+} 1.0
+
+
+KEYWORD grid "Grid type"
+{
+ "box" :: "Box"
+ "octant" :: "Octant"
+ "full" :: "Full"
+ "minmax" :: "Minmax"
+} "box"
+