| 1 | C $Header: /u/gcmpack/MITgcm/pkg/ex3/EX3_SIZE.h,v 1.1 2005/10/14 05:49:42 edhill Exp $ | 
| 2 | C $Name:  $ | 
| 3 |  | 
| 4 |  | 
| 5 | C     Tiling topology sizes | 
| 6 | C | 
| 7 | C     EX3_MAX_TILES  :: Max number of tiles | 
| 8 | C     EX3_MAX_E_NBS  :: Max number of "edge" neighbors per tile | 
| 9 | C     EX3_MAX_C_NBS  :: Max number of "corner" neighbors per tile | 
| 10 | C     EX3_BUFF_FAC   :: multiplicative "safety factor" used to | 
| 11 | C     .                 increase the exchange buffer size | 
| 12 |  | 
| 13 | C     WARNING: if (EX3_MAX_E_NBS * EX3_MAX_TILES) > 21,000 then there is | 
| 14 | C     a potential problem constructing the unique MPI tag.  Please see | 
| 15 | C     the code in EX3_GET_BUFFTAG(). | 
| 16 |  | 
| 17 | INTEGER EX3_MAX_TILES | 
| 18 | INTEGER EX3_MAX_E_NBS | 
| 19 | INTEGER EX3_MAX_C_NBS | 
| 20 | INTEGER EX3_BUFF_FAC | 
| 21 | PARAMETER ( EX3_MAX_TILES =    100  ) | 
| 22 | PARAMETER ( EX3_MAX_E_NBS =     10  ) | 
| 23 | PARAMETER ( EX3_MAX_C_NBS =     10  ) | 
| 24 | PARAMETER ( EX3_BUFF_FAC  =      3  ) | 
| 25 |  | 
| 26 |  | 
| 27 | CEH3 ;;; Local Variables: *** | 
| 28 | CEH3 ;;; mode:fortran *** | 
| 29 | CEH3 ;;; End: *** |