aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
blob: 4832cfa80a11e2b2b66897cb825296d3f307ba1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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"