/[MITgcm]/MITgcm/model/inc/SIZE.h
ViewVC logotype

Contents of /MITgcm/model/inc/SIZE.h

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


Revision 1.25 - (show annotations) (download)
Fri Mar 9 19:36:59 2001 UTC (23 years, 2 months ago) by adcroft
Branch: MAIN
CVS Tags: checkpoint40pre3, checkpoint40pre1, checkpoint40pre7, checkpoint40pre6, checkpoint40pre9, checkpoint40pre8, checkpoint38, checkpoint40pre2, checkpoint40pre4, pre38tag1, c37_adj, pre38-close, checkpoint39, checkpoint37, checkpoint40pre5, checkpoint40
Branch point for: pre38
Changes since 1.24: +10 -2 lines
File MIME type: text/plain
Added un-compilable lines to make sure configuration is done properly.

1 C $Header: /u/gcmpack/models/MITgcmUV/model/inc/SIZE.h,v 1.24 2001/02/04 14:38:45 cnh Exp $
2 C $Name: $
3
4 These lines are here to deliberately cause a compile-time error.
5 If you see these lines in your .F files or the compiler shows them
6 as an error then it means you have not placed your configuration
7 files in the appropriate place.
8 You need to place you own copy of SIZE.h in the include
9 path for the model.
10
11 C
12 C /==========================================================\
13 C | SIZE.h Declare size of underlying computational grid. |
14 C |==========================================================|
15 C | The design here support a three-dimensional model grid |
16 C | with indices I,J and K. The three-dimensional domain |
17 C | is comprised of nPx*nSx blocks of size sNx along one axis|
18 C | nPy*nSy blocks of size sNy along another axis and one |
19 C | block of size Nz along the final axis. |
20 C | Blocks have overlap regions of size OLx and OLy along the|
21 C | dimensions that are subdivided. |
22 C \==========================================================/
23 C Voodoo numbers controlling data layout.
24 C sNx - No. X points in sub-grid.
25 C sNy - No. Y points in sub-grid.
26 C OLx - Overlap extent in X.
27 C OLy - Overlat extent in Y.
28 C nSx - No. sub-grids in X.
29 C nSy - No. sub-grids in Y.
30 C nPx - No. of processes to use in X.
31 C nPy - No. of processes to use in Y.
32 C Nx - No. points in X for the total domain.
33 C Ny - No. points in Y for the total domain.
34 C Nr - No. points in Z for full process domain.
35 INTEGER sNx
36 INTEGER sNy
37 INTEGER OLx
38 INTEGER OLy
39 INTEGER nSx
40 INTEGER nSy
41 INTEGER nPx
42 INTEGER nPy
43 INTEGER Nx
44 INTEGER Ny
45 INTEGER Nr
46 PARAMETER (
47 & sNx = 20,
48 & sNy = 16,
49 & OLx = 4,
50 & OLy = 4,
51 & nSx = 1,
52 & nSy = 1,
53 & nPx = 1,
54 & nPy = 1,
55 & Nx = sNx*nSx*nPx,
56 & Ny = sNy*nSy*nPy,
57 & Nr = 23)
58
59 C MAX_OLX - Set to the maximum overlap region size of any array
60 C MAX_OLY that will be exchanged. Controls the sizing of exch
61 C routine buufers.
62 INTEGER MAX_OLX
63 INTEGER MAX_OLY
64 PARAMETER ( MAX_OLX = OLx,
65 & MAX_OLY = OLy )
66

  ViewVC Help
Powered by ViewVC 1.1.22