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

Annotation of /MITgcm/verification/lab_sea/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, 8 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, checkpoint57b_post, checkpoint57c_pre, checkpoint51j_post, checkpoint58r_post, checkpoint55j_post, checkpoint56b_post, checkpoint57i_post, checkpoint57y_post, checkpoint57e_post, branch-netcdf, checkpoint52d_pre, 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, checkpoint55g_post, checkpoint51o_post, checkpoint51p_post, checkpoint58j_post, checkpoint52a_pre, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint55f_post, checkpoint59c, checkpoint59b, checkpoint59h, 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, checkpoint57n_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, checkpoint58p_post, 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/lab_sea/code/SIZE.h,v 1.3 2002/12/28 10:11:12 dimitri Exp $
2     C
3     CBOP
4     C !ROUTINE: SIZE.h
5     C !INTERFACE:
6     C include SIZE.h
7     C !DESCRIPTION: \bv
8     C *==========================================================*
9     C | SIZE.h Declare size of underlying computational grid.
10     C *==========================================================*
11     C | The design here support a three-dimensional model grid
12     C | with indices I,J and K. The three-dimensional domain
13     C | is comprised of nPx*nSx blocks of size sNx along one axis
14     C | nPy*nSy blocks of size sNy along another axis and one
15     C | block of size Nz along the final axis.
16     C | Blocks have overlap regions of size OLx and OLy along the
17     C | dimensions that are subdivided.
18     C *==========================================================*
19     C \ev
20     CEOP
21     C Voodoo numbers controlling data layout.
22     C sNx :: No. X points in sub-grid.
23     C sNy :: No. Y points in sub-grid.
24     C OLx :: Overlap extent in X.
25     C OLy :: Overlat extent in Y.
26     C nSx :: No. sub-grids in X.
27     C nSy :: No. sub-grids in Y.
28     C nPx :: No. of processes to use in X.
29     C nPy :: No. of processes to use in Y.
30     C Nx :: No. points in X for the total domain.
31     C Ny :: No. points in Y for the total domain.
32     C Nr :: No. points in Z for full process domain.
33     INTEGER sNx
34     INTEGER sNy
35     INTEGER OLx
36     INTEGER OLy
37     INTEGER nSx
38     INTEGER nSy
39     INTEGER nPx
40     INTEGER nPy
41     INTEGER Nx
42     INTEGER Ny
43     INTEGER Nr
44     PARAMETER (
45     & sNx = 10,
46     & sNy = 16,
47     & OLx = 3,
48     & OLy = 3,
49     & nSx = 1,
50     & nSy = 1,
51     & nPx = 2,
52     & nPy = 1,
53     & Nx = sNx*nSx*nPx,
54     & Ny = sNy*nSy*nPy,
55     & Nr = 23)
56    
57     C MAX_OLX - Set to the maximum overlap region size of any array
58     C MAX_OLY that will be exchanged. Controls the sizing of exch
59     C routine buufers.
60     INTEGER MAX_OLX
61     INTEGER MAX_OLY
62     PARAMETER ( MAX_OLX = OLx,
63     & MAX_OLY = OLy )
64    

  ViewVC Help
Powered by ViewVC 1.1.22