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

Contents of /MITgcm/verification/global2x2_tot/code/SIZE.h

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


Revision 1.2 - (show annotations) (download)
Thu Nov 6 22:28:43 2003 UTC (20 years, 6 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint57t_post, checkpoint58l_post, checkpoint53f_post, checkpoint54a_pre, checkpoint55c_post, checkpoint53b_pre, checkpoint57o_post, checkpoint57m_post, checkpoint55e_post, checkpoint52l_pre, checkpoint52e_pre, checkpoint58e_post, checkpoint57v_post, checkpoint52n_post, checkpoint52j_post, checkpoint53d_post, checkpoint57f_post, checkpoint52e_post, checkpoint57s_post, checkpoint57j_post, checkpoint58b_post, checkpoint58m_post, checkpoint57b_post, checkpoint53c_post, checkpoint57k_post, checkpoint55d_pre, checkpoint57d_post, checkpoint57g_post, checkpoint58u_post, checkpoint57c_pre, checkpoint58r_post, checkpoint55j_post, checkpoint56b_post, checkpoint57i_post, checkpoint57y_post, checkpoint58g_post, checkpoint57x_post, checkpoint52j_pre, checkpoint54a_post, branch-netcdf, checkpoint52l_post, checkpoint55h_post, checkpoint58n_post, checkpoint58x_post, checkpoint52k_post, checkpoint52b_pre, checkpoint57g_pre, checkpoint54b_post, checkpoint58t_post, checkpoint58h_post, checkpoint57e_post, checkpoint58w_post, checkpoint54d_post, checkpoint56c_post, checkpoint54e_post, checkpoint58j_post, checkpoint55b_post, checkpoint57h_post, checkpoint52m_post, checkpoint57y_pre, checkpoint55, checkpoint53a_post, checkpoint57f_pre, checkpoint57a_post, checkpoint54, checkpoint58q_post, checkpoint54f_post, checkpoint53b_post, checkpoint55g_post, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint55f_post, checkpoint59c, checkpoint59b, checkpoint59h, checkpoint57r_post, checkpoint59, checkpoint58, checkpoint57a_pre, checkpoint55i_post, checkpoint57, checkpoint56, checkpoint53, checkpoint52, checkpoint52d_post, eckpoint57e_pre, checkpoint52a_post, checkpoint57h_done, checkpoint58f_post, checkpoint52b_post, checkpoint53g_post, checkpoint52f_post, checkpoint57n_post, checkpoint52c_post, checkpoint58d_post, checkpoint58c_post, checkpoint57w_post, checkpoint57p_post, checkpint57u_post, checkpoint58a_post, checkpoint58i_post, checkpoint57q_post, ecco_c52_e35, checkpoint58o_post, checkpoint57z_post, checkpoint57c_post, checkpoint58y_post, checkpoint52a_pre, checkpoint58k_post, checkpoint52i_post, checkpoint58v_post, checkpoint55a_post, checkpoint53d_pre, checkpoint54c_post, checkpoint58s_post, checkpoint58p_post, checkpoint57h_pre, checkpoint57l_post, checkpoint52i_pre, checkpoint51u_post, checkpoint52h_pre, checkpoint52f_pre, checkpoint56a_post, checkpoint55d_post
Branch point for: netcdf-sm0
Changes since 1.1: +61 -0 lines
File MIME type: text/plain
o merging from ecco-branch
o adding ECCO global 1x1 and 2x2 degree configs

1 C $Header: /u/gcmpack/MITgcm/verification/global2x2_tot/code/Attic/SIZE.h,v 1.1.2.2 2003/05/12 19:58:38 heimbach Exp $
2 C
3 C /==========================================================\
4 C | SIZE.h Declare size of underlying computational grid. |
5 C |==========================================================|
6 C | The design here support a three-dimensional model grid |
7 C | with indices I,J and K. The three-dimensional domain |
8 C | is comprised of nPx*nSx blocks of size sNx along one axis|
9 C | nPy*nSy blocks of size sNy along another axis and one |
10 C | block of size Nz along the final axis. |
11 C | Blocks have overlap regions of size OLx and OLy along the|
12 C | dimensions that are subdivided. |
13 C \==========================================================/
14 C Voodoo numbers controlling data layout.
15 C sNx - No. X points in sub-grid.
16 C sNy - No. Y points in sub-grid.
17 C OLx - Overlap extent in X.
18 C OLy - Overlat extent in Y.
19 C nSx - No. sub-grids in X.
20 C nSy - No. sub-grids in Y.
21 C nPx - No. of processes to use in X.
22 C nPy - No. of processes to use in Y.
23 C Nx - No. points in X for the total domain.
24 C Ny - No. points in Y for the total domain.
25 C Nr - No. points in Z for full process domain.
26 INTEGER sNx
27 INTEGER sNy
28 INTEGER OLx
29 INTEGER OLy
30 INTEGER nSx
31 INTEGER nSy
32 INTEGER nPx
33 INTEGER nPy
34 INTEGER Nx
35 INTEGER Ny
36 INTEGER Nr
37 PARAMETER (
38 & sNx = 60,
39 & sNy = 40,
40 & OLx = 3,
41 & OLy = 3,
42 & nSx = 1,
43 & nSy = 1,
44 cph & nPx = 1,
45 cph & nPy = 1,
46 & nPx = 3,
47 & nPy = 2,
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
60 integer nobcs
61 parameter ( nobcs = 4 )

  ViewVC Help
Powered by ViewVC 1.1.22