aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
blob: 1575be5456bff79c1ff0f0e32fc9df5b46b04049 (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
# Parameter definitions for thorn pugh
# $Header$

protected:

INTEGER global_nx "The size of the grid in the x direction"
{
    *:-1    :: "Fixed size of minus this per processor"
    1:*     :: "Grid of this size distributed across all processors"
} 10

INTEGER global_ny "The size of the grid in the y direction"
{
    *:-1    :: "Fixed size of minus this per processor"
    1:*     :: "Grid of this size distributed across all processors"
} 10

INTEGER global_nz "The size of the grid in the z direction"
{
    *:-1    :: "Fixed size of minus this per processor"
    1:*     :: "Grid of this size distributed across all processors"
} 10

INTEGER ghost_size "The width of the ghost zone"
{
    1:*     :: "Must be a positive integer"
} 1

private:

KEYWORD proc_topology "How to determine the processor topology"
{
  "manual"    :: "Specified by proc_top_nx etc"
  "automatic" :: "Automatically generated"
} "automatic"


INTEGER proc_top_nx "No of Procs in X direction"
{
  0:*  :: "See proc_topology"
} 0

INTEGER proc_top_ny "No of Procs in Y direction"
{
  0:*  :: "See proc_topology"
} 0

INTEGER proc_top_nz "No of Procs in Z direction"
{
  0:*  :: "See proc_topology"
} 0