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

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

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


Revision 1.2 - (hide annotations) (download)
Mon Sep 27 14:49:44 2004 UTC (19 years, 7 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint57m_post, checkpoint57g_pre, checkpoint57s_post, checkpoint58b_post, checkpoint57b_post, checkpoint57g_post, checkpoint56b_post, checkpoint57y_post, checkpoint57r_post, checkpoint57d_post, checkpoint57i_post, checkpoint59, checkpoint58, checkpoint57, checkpoint56, checkpoint58f_post, checkpoint58d_post, checkpoint58a_post, checkpoint57z_post, checkpoint58y_post, checkpoint58t_post, checkpoint55i_post, checkpoint58m_post, checkpoint57l_post, checkpoint57t_post, checkpoint57v_post, checkpoint57f_post, checkpoint57a_post, checkpoint57h_pre, checkpoint58w_post, checkpoint57h_post, checkpoint57y_pre, checkpoint55g_post, checkpoint58o_post, checkpoint57c_post, checkpoint58p_post, checkpoint58q_post, checkpoint55d_post, checkpoint58e_post, checkpoint55d_pre, checkpoint57c_pre, checkpoint58r_post, checkpoint55j_post, checkpoint55h_post, checkpoint58n_post, checkpoint57e_post, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint55f_post, checkpoint59c, checkpoint59b, checkpoint59h, checkpoint57p_post, checkpint57u_post, checkpoint57q_post, eckpoint57e_pre, checkpoint58k_post, checkpoint58v_post, checkpoint56a_post, checkpoint58l_post, checkpoint57h_done, checkpoint57j_post, checkpoint57f_pre, checkpoint58g_post, checkpoint58x_post, checkpoint58h_post, checkpoint56c_post, checkpoint58j_post, checkpoint57a_pre, checkpoint57o_post, checkpoint57k_post, checkpoint57w_post, checkpoint58i_post, checkpoint57x_post, checkpoint58c_post, checkpoint58u_post, checkpoint58s_post, checkpoint55e_post
Changes since 1.1: +3 -3 lines
File MIME type: text/plain
increase overlap size from 3 to 4, required for new implementation of
 multidimAdvection on CS-grid.

1 jmc 1.2 C $Header: /u/gcmpack/MITgcm/verification/advect_cs/code/SIZE.h,v 1.1 2001/09/28 02:30:09 adcroft Exp $
2 adcroft 1.1 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 = 32,
39     & sNy = 32,
40 jmc 1.2 & OLx = 4,
41     & OLy = 4,
42 adcroft 1.1 & nSx = 6,
43     & nSy = 1,
44     & nPx = 1,
45     & nPy = 1,
46     & Nx = sNx*nSx*nPx,
47     & Ny = sNy*nSy*nPy,
48     & Nr = 1)
49    
50     C MAX_OLX - Set to the maximum overlap region size of any array
51     C MAX_OLY that will be exchanged. Controls the sizing of exch
52     C routine buufers.
53     INTEGER MAX_OLX
54     INTEGER MAX_OLY
55     PARAMETER ( MAX_OLX = OLx,
56     & MAX_OLY = OLy )
57    

  ViewVC Help
Powered by ViewVC 1.1.22