/[MITgcm]/MITgcm/verification/natl_box/code/SIZE.h_mpi
ViewVC logotype

Annotation of /MITgcm/verification/natl_box/code/SIZE.h_mpi

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


Revision 1.1 - (hide annotations) (download)
Wed Sep 10 02:25:47 2003 UTC (20 years, 7 months ago) by edhill
Branch: MAIN
CVS Tags: checkpoint58l_post, checkpoint51k_post, checkpoint57t_post, checkpoint57o_post, checkpoint52l_pre, checkpoint52e_pre, checkpoint58e_post, checkpoint57v_post, checkpoint52n_post, checkpoint52j_post, checkpoint53d_post, checkpoint58u_post, checkpoint58w_post, checkpoint54a_pre, checkpoint51o_pre, checkpoint57m_post, checkpoint55c_post, checkpoint54e_post, checkpoint52e_post, checkpoint57s_post, checkpoint51n_pre, checkpoint54a_post, checkpoint53c_post, checkpoint57k_post, checkpoint55d_pre, checkpoint57d_post, checkpoint51l_post, checkpoint57g_post, checkpoint51q_post, checkpoint60, checkpoint61, checkpoint57b_post, checkpoint57c_pre, checkpoint51j_post, checkpoint58r_post, checkpoint55j_post, checkpoint56b_post, checkpoint57i_post, checkpoint57y_post, checkpoint57e_post, branch-netcdf, checkpoint52l_post, checkpoint55h_post, checkpoint58n_post, checkpoint51r_post, checkpoint58x_post, checkpoint52k_post, checkpoint52b_pre, checkpoint57g_pre, checkpoint54b_post, checkpoint53b_pre, checkpoint55b_post, checkpoint58t_post, checkpoint58h_post, checkpoint54d_post, checkpoint56c_post, checkpoint52m_post, checkpoint57y_pre, checkpoint55, checkpoint53a_post, checkpoint57f_pre, checkpoint57a_post, checkpoint54, checkpoint58q_post, checkpoint54f_post, checkpoint53b_post, checkpoint59q, checkpoint59p, checkpoint55g_post, checkpoint59r, checkpoint51o_post, checkpoint51p_post, checkpoint58j_post, checkpoint52a_pre, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint55f_post, checkpoint59c, checkpoint59b, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59h, checkpoint59k, checkpoint59j, checkpoint57r_post, checkpoint59, checkpoint58, checkpoint57a_pre, checkpoint55i_post, checkpoint57, checkpoint56, checkpoint51i_post, checkpoint53, checkpoint52, checkpoint51f_post, checkpoint52d_post, eckpoint57e_pre, checkpoint52a_post, checkpoint57h_done, checkpoint58f_post, checkpoint52b_post, checkpoint53g_post, checkpoint52f_post, branchpoint-genmake2, checkpoint57x_post, checkpoint52c_post, checkpoint58d_post, checkpoint58c_post, checkpoint57w_post, checkpoint57p_post, checkpint57u_post, checkpoint57f_post, checkpoint58a_post, checkpoint51h_pre, checkpoint51l_pre, checkpoint58i_post, checkpoint57q_post, checkpoint51g_post, checkpoint58g_post, ecco_c52_e35, checkpoint58o_post, checkpoint57z_post, checkpoint57c_post, checkpoint58y_post, checkpoint55e_post, checkpoint58k_post, checkpoint52i_post, checkpoint52j_pre, checkpoint58v_post, checkpoint53f_post, checkpoint55a_post, checkpoint51t_post, checkpoint53d_pre, checkpoint54c_post, checkpoint58s_post, checkpoint61f, checkpoint61g, checkpoint61d, checkpoint61e, checkpoint61b, checkpoint61c, checkpoint58p_post, checkpoint61a, checkpoint61n, checkpoint61o, checkpoint61l, checkpoint61m, checkpoint61j, checkpoint61k, checkpoint61h, checkpoint61i, checkpoint61r, checkpoint61p, checkpoint61q, checkpoint51n_post, checkpoint57j_post, checkpoint58b_post, checkpoint57h_pre, checkpoint51i_pre, checkpoint58m_post, checkpoint57l_post, checkpoint52i_pre, checkpoint51u_post, checkpoint52h_pre, checkpoint52f_pre, checkpoint57h_post, checkpoint56a_post, checkpoint51m_post, checkpoint51s_post, checkpoint55d_post
Branch point for: branch-nonh, branch-genmake2, tg2-branch, checkpoint51n_branch, netcdf-sm0
initial checkin of *.h_[no]mpi files for both uni-process and mpi-enabled
verification runs

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

  ViewVC Help
Powered by ViewVC 1.1.22