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

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

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


Revision 1.4 - (show annotations) (download)
Thu May 22 19:59:28 2003 UTC (20 years, 11 months ago) by adcroft
Branch: MAIN
CVS Tags: checkpoint51k_post, checkpoint51o_pre, checkpoint51l_post, checkpoint51, checkpoint52, checkpoint51f_post, checkpoint51d_post, checkpoint51t_post, checkpoint51n_post, checkpoint51s_post, checkpoint51j_post, checkpoint51n_pre, checkpoint52b_pre, checkpoint51l_pre, checkpoint51q_post, checkpoint51b_pre, checkpoint52b_post, checkpoint52c_post, checkpoint51h_pre, checkpoint50f_post, checkpoint50f_pre, branchpoint-genmake2, checkpoint51r_post, checkpoint51i_post, checkpoint51b_post, checkpoint51c_post, checkpoint50g_post, checkpoint52a_pre, checkpoint50h_post, checkpoint50i_post, checkpoint51i_pre, branch-netcdf, checkpoint51e_post, checkpoint51o_post, checkpoint51f_pre, checkpoint52a_post, checkpoint51g_post, ecco_c52_e35, checkpoint51m_post, checkpoint51a_post, checkpoint51p_post, checkpoint51u_post
Branch point for: branch-genmake2, branch-nonh, tg2-branch, checkpoint51n_branch
Changes since 1.3: +3 -3 lines
File MIME type: text/plain
Made several changes to improve utility in testscript and relevence in general.
 o switched from sNy=3 to sNy=1 (did not change numerical results)
 o activated slope (gendata.m had code but slope was set to zero)
 o switched from linear FS to non-linear FS
 o switch to Crank-Nicholson time-stepping for FS
 o increased time-step by factor of 50 (so that expt does something during test)
 o turned off salt stepping
 o re-generated results/output.txt

1 C $Header: /u/gcmpack/models/MITgcmUV/verification/internal_wave/code/SIZE.h,v 1.3 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 = 60,
40 & sNy = 1,
41 & OLx = 3,
42 & OLy = 3,
43 & nSx = 1,
44 & nSy = 1,
45 & nPx = 1,
46 & nPy = 1,
47 & Nx = sNx*nSx*nPx,
48 & Ny = sNy*nSy*nPy,
49 & Nr = 20)
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 )

  ViewVC Help
Powered by ViewVC 1.1.22