/[MITgcm]/MITgcm/verification/global_with_CFC11/code1x1/SIZE.h.144
ViewVC logotype

Annotation of /MITgcm/verification/global_with_CFC11/code1x1/SIZE.h.144

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1.2.1 - (hide annotations) (download)
Thu Aug 25 16:22:17 2005 UTC (18 years, 7 months ago) by dimitri
Branch: release1_50yr
Changes since 1.1: +59 -0 lines
adding ecco1x1 verification/global_with_CFC11 experiment

1 dimitri 1.1.2.1 C $Header: /u/gcmpack/MITgcm_contrib/ocean_inversion_project/code_ecco1x1/SIZE.h.144,v 1.1 2004/10/06 20:26:55 dimitri Exp $
2     C $Name: $
3    
4     C
5     C /==========================================================\
6     C | SIZE.h Declare size of underlying computational grid. |
7     C |==========================================================|
8     C | The design here support a three-dimensional model grid |
9     C | with indices I,J and K. The three-dimensional domain |
10     C | is comprised of nPx*nSx blocks of size sNx along one axis|
11     C | nPy*nSy blocks of size sNy along another axis and one |
12     C | block of size Nz along the final axis. |
13     C | Blocks have overlap regions of size OLx and OLy along the|
14     C | dimensions that are subdivided. |
15     C \==========================================================/
16     C Voodoo numbers controlling data layout.
17     C sNx - No. X points in sub-grid.
18     C sNy - No. Y points in sub-grid.
19     C OLx - Overlap extent in X.
20     C OLy - Overlat extent in Y.
21     C nSx - No. sub-grids in X.
22     C nSy - No. sub-grids in Y.
23     C nPx - No. of processes to use in X.
24     C nPy - No. of processes to use in Y.
25     C Nx - No. points in X for the total domain.
26     C Ny - No. points in Y for the total domain.
27     C Nr - No. points in Z for full process domain.
28     INTEGER sNx
29     INTEGER sNy
30     INTEGER OLx
31     INTEGER OLy
32     INTEGER nSx
33     INTEGER nSy
34     INTEGER nPx
35     INTEGER nPy
36     INTEGER Nx
37     INTEGER Ny
38     INTEGER Nr
39     PARAMETER (
40     & sNx = 20,
41     & sNy = 20,
42     & OLx = 2,
43     & OLy = 2,
44     & nSx = 1,
45     & nSy = 1,
46     & nPx = 18,
47     & nPy = 8,
48     & Nx = sNx*nSx*nPx,
49     & Ny = sNy*nSy*nPy,
50     & Nr = 23)
51    
52     C MAX_OLX - Set to the maximum overlap region size of any array
53     C MAX_OLY that will be exchanged. Controls the sizing of exch
54     C routine buufers.
55     INTEGER MAX_OLX
56     INTEGER MAX_OLY
57     PARAMETER ( MAX_OLX = OLx,
58     & MAX_OLY = OLy )
59    

  ViewVC Help
Powered by ViewVC 1.1.22