8 |
C include SIZE.h |
C include SIZE.h |
9 |
C !DESCRIPTION: \bv |
C !DESCRIPTION: \bv |
10 |
C *==========================================================* |
C *==========================================================* |
11 |
C | SIZE.h Declare size of underlying computational grid. |
C | SIZE.h Declare size of underlying computational grid. |
12 |
C *==========================================================* |
C *==========================================================* |
13 |
C | The design here support a three-dimensional model grid |
C | The design here support a three-dimensional model grid |
14 |
C | with indices I,J and K. The three-dimensional domain |
C | with indices I,J and K. The three-dimensional domain |
15 |
C | is comprised of nPx*nSx blocks of size sNx along one axis |
C | is comprised of nPx*nSx blocks of size sNx along one axis |
16 |
C | nPy*nSy blocks of size sNy along another axis and one |
C | nPy*nSy blocks of size sNy along another axis and one |
17 |
C | block of size Nz along the final axis. |
C | block of size Nz along the final axis. |
18 |
C | Blocks have overlap regions of size OLx and OLy along the |
C | Blocks have overlap regions of size OLx and OLy along the |
19 |
C | dimensions that are subdivided. |
C | dimensions that are subdivided. |
20 |
C *==========================================================* |
C *==========================================================* |
21 |
C \ev |
C \ev |
22 |
CEOP |
CEOP |
50 |
C input.icedyn : needs at least Olx=Oly=4 (CS-grid multidimensional Advect.) |
C input.icedyn : needs at least Olx=Oly=4 (CS-grid multidimensional Advect.) |
51 |
PARAMETER ( |
PARAMETER ( |
52 |
& sNx = 32, |
& sNx = 32, |
53 |
& sNy = 32, |
& sNy = 16, |
54 |
& OLx = 4, |
& OLx = 4, |
55 |
& OLy = 4, |
& OLy = 4, |
56 |
& nSx = 3, |
& nSx = 6, |
57 |
& nSy = 1, |
& nSy = 1, |
58 |
& nPx = 2, |
& nPx = 2, |
59 |
& nPy = 1, |
& nPy = 1, |
61 |
& Ny = sNy*nSy*nPy, |
& Ny = sNy*nSy*nPy, |
62 |
& Nr = 15) |
& Nr = 15) |
63 |
|
|
64 |
C MAX_OLX - Set to the maximum overlap region size of any array |
C MAX_OLX :: Set to the maximum overlap region size of any array |
65 |
C MAX_OLY that will be exchanged. Controls the sizing of exch |
C MAX_OLY that will be exchanged. Controls the sizing of exch |
66 |
C routine buufers. |
C routine buffers. |
67 |
INTEGER MAX_OLX |
INTEGER MAX_OLX |
68 |
INTEGER MAX_OLY |
INTEGER MAX_OLY |
69 |
PARAMETER ( MAX_OLX = OLx, |
PARAMETER ( MAX_OLX = OLx, |