aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorallen <allen@c78560ca-4b45-4335-b268-5f3340f3cb52>1999-04-01 18:09:05 +0000
committerallen <allen@c78560ca-4b45-4335-b268-5f3340f3cb52>1999-04-01 18:09:05 +0000
commitaef2db62ee4a0eb36ae10734598cb71937efb46a (patch)
treee3e5c98abacc7c736628b8da166fe377609f05ce /param.ccl
parentccc04ccf3b80a200cb5dda5018c13892963e562d (diff)
Changing parameter names to get rid of the grid in front of all
the names, changing grid to type. This will annoy everyone with working parameter files git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/CartGrid3D/trunk@20 c78560ca-4b45-4335-b268-5f3340f3cb52
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl23
1 files changed, 11 insertions, 12 deletions
diff --git a/param.ccl b/param.ccl
index abe1c43..ae26ad4 100644
--- a/param.ccl
+++ b/param.ccl
@@ -1,48 +1,47 @@
# Parameter definitions for thorn CartGrid3D
# $Header$
-public:
+protected:
-REAL grid_dx "Coarse grid spacing in x-direction"
+REAL dx "Coarse grid spacing in x-direction"
{
0: ::
} 0.3
-REAL grid_dy "Coarse grid spacing in y-direction"
+REAL dy "Coarse grid spacing in y-direction"
{
0: ::
} 0.3
-REAL grid_dz "Coarse grid spacing in z-direction"
+REAL dz "Coarse grid spacing in z-direction"
{
0: ::
} 0.3
-REAL grid_xmin "Coordinate minimum in x-direction"
+REAL xmin "Coordinate minimum in x-direction"
{
: ::
} -1.0
-REAL grid_ymin "Coordinate minimum in y-direction"
+REAL ymin "Coordinate minimum in y-direction"
{
: ::
} -1.0
-REAL grid_zmin "Coordinate minimum in z-direction"
+REAL zmin "Coordinate minimum in z-direction"
{
: ::
} -1.0
-REAL grid_xmax "Coordinate maximum in x-direction"
+REAL xmax "Coordinate maximum in x-direction"
{
: ::
} 1.0
-REAL grid_ymax "Coordinate maximum in y-direction"
+REAL ymax "Coordinate maximum in y-direction"
{
: ::
} 1.0
-REAL grid_zmax "Coordinate maximum in z-direction"
+REAL zmax "Coordinate maximum in z-direction"
{
: ::
} 1.0
-
-KEYWORD grid "Grid type"
+KEYWORD type "Grid type"
{
"box" :: "Box grid from -0.5 to 0.5"
"byrange" :: "Specify min and max values"