aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl50
1 files changed, 45 insertions, 5 deletions
diff --git a/param.ccl b/param.ccl
index b44b575..418ea2e 100644
--- a/param.ccl
+++ b/param.ccl
@@ -2,29 +2,69 @@
# $Header$
restricted:
-
+
INT global_nx "The size of the grid in the x direction"
{
- *:* :: "Grid of this size distributed across all processors"
+ 0:* :: "Grid of this size distributed across all processors"
} 10
INT global_ny "The size of the grid in the y direction"
{
- *:* :: "Grid of this size distributed across all processors"
+ 0:* :: "Grid of this size distributed across all processors"
} 10
INT global_nz "The size of the grid in the z direction"
{
- *:* :: "Grid of this size distributed across all processors"
+ 0:* :: "Grid of this size distributed across all processors"
} 10
-INT ghost_size "The width of the ghost zone"
+INT global_nsize "The size of the grid in each spatial direction"
+{
+ -1:* :: "Grid of this size in each dir distributed across all processors"
+} -1
+
+INT ghost_size_x "The width of the ghost zone in the x direction"
+{
+ 1:* :: "Must be a positive integer"
+} 1
+
+INT ghost_size_y "The width of the ghost zone in the y direction"
+{
+ 1:* :: "Must be a positive integer"
+} 1
+
+INT ghost_size_z "The width of the ghost zone in the z direction"
{
1:* :: "Must be a positive integer"
} 1
+INT ghost_size "The width of the ghost zone in each direction"
+{
+ -1:* :: "Must be a positive integer"
+} -1
+
private:
+INT local_nx "The size of the grid in the x direction"
+{
+ -1:* :: "Grid of this size on each processor"
+} -1
+
+INT local_ny "The size of the grid in the y direction"
+{
+ -1:* :: "Grid of this size on each processor"
+} -1
+
+INT local_nz "The size of the grid in the z direction"
+{
+ -1:* :: "Grid of this size on each processor"
+} -1
+
+INT local_nsize "The size of the grid in each spatial direction"
+{
+ -1:* :: "Grid of this size in each dir on each processor"
+} -1
+
BOOLEAN sync_verbose "Verbose output during synchronization ?"
{
} no