/[MITgcm]/MITgcm/verification/advect_xz/code/SIZE.h
ViewVC logotype

Annotation of /MITgcm/verification/advect_xz/code/SIZE.h

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


Revision 1.3 - (hide annotations) (download)
Tue Apr 5 22:57:27 2016 UTC (8 years ago) by jmc
Branch: MAIN
CVS Tags: checkpoint65z, checkpoint65x, checkpoint65y, checkpoint65v, checkpoint65w, checkpoint66g, checkpoint66f, checkpoint66e, checkpoint66d, checkpoint66c, checkpoint66b, checkpoint66a, checkpoint66o, checkpoint66n, checkpoint66m, checkpoint66l, checkpoint66k, checkpoint66j, checkpoint66i, checkpoint66h, HEAD
Changes since 1.2: +32 -25 lines
File MIME type: text/plain
increase Overlap size from 3 to 4 (to allow to test PQM new adv scheme)

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

  ViewVC Help
Powered by ViewVC 1.1.22