aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>1999-10-17 11:32:49 +0000
committerallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>1999-10-17 11:32:49 +0000
commit9b9da3e4e18d92d92d8234fa92f1250783c00fa5 (patch)
treed275a5e8f7433c4e568537d5ea1770cf813550df /param.ccl
parente4b6654873ce74c6246b32ad6ac57239901f6b1a (diff)
Fixes from branch
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@98 b61c5cb5-eaca-4651-9a7a-d64986f99364
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