C $Id: SIZE.h,v 1.2 2006/05/12 22:34:02 ce107 Exp $ C C /==========================================================\ C | SIZE.h Declare size of underlying computational grid. | C |==========================================================| C | The design here support a three-dimensional model grid | C | with indices I,J and K. The three-dimensional domain | C | is comprised of nPx*nSx blocks of size sNx along one axis| C | nPy*nSy blocks of size sNy along another axis and one | C | block of size Nz along the final axis. | C | Blocks have overlap regions of size OLx and OLy along the| C | dimensions that are subdivided. | C \==========================================================/ C Voodoo numbers controlling data layout. C sNx - No. X points in sub-grid. C sNy - No. Y points in sub-grid. C OLx - Overlap extent in X. C OLy - Overlat extent in Y. C Nx - No. points in X for the total domain. C Ny - No. points in Y for the total domain. INTEGER sNx INTEGER sNy INTEGER OLx INTEGER OLy PARAMETER ( & sNx =90, & sNy =40, & OLx = 1, & OLy = 1) COMMON /SIZE_C/ Nx, Ny INTEGER Nx INTEGER Ny