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

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

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


Revision 1.1 - (hide annotations) (download)
Fri Sep 28 02:28:10 2001 UTC (22 years, 6 months ago) by adcroft
Branch: MAIN
CVS Tags: checkpoint46n_post, checkpoint51k_post, checkpoint47e_post, checkpoint46l_post, checkpoint46g_pre, checkpoint47c_post, release1_p13_pre, checkpoint50c_post, checkpoint46f_post, checkpoint48e_post, checkpoint50c_pre, checkpoint44f_post, checkpoint46b_post, checkpoint43a-release1mods, checkpoint51o_pre, release1_p13, checkpoint51l_post, checkpoint48i_post, checkpoint46l_pre, checkpoint50d_pre, chkpt44d_post, checkpoint51, checkpoint50, checkpoint52, release1_p8, release1_p9, checkpoint50d_post, release1_p1, release1_p2, release1_p3, release1_p4, release1_p5, release1_p6, release1_p7, checkpoint50b_pre, checkpoint44e_pre, checkpoint51f_post, release1_b1, checkpoint48b_post, checkpoint43, checkpoint51d_post, checkpoint48c_pre, checkpoint47d_pre, checkpoint51t_post, checkpoint51n_post, release1_chkpt44d_post, checkpoint51s_post, checkpoint47a_post, checkpoint48d_pre, checkpoint51j_post, checkpoint47i_post, checkpoint51n_pre, checkpoint47d_post, checkpoint46d_pre, checkpoint48d_post, release1-branch_tutorials, checkpoint48f_post, checkpoint45d_post, checkpoint52b_pre, checkpoint46j_pre, checkpoint51l_pre, chkpt44a_post, checkpoint44h_pre, checkpoint48h_post, checkpoint51q_post, checkpoint51b_pre, checkpoint46a_post, checkpoint47g_post, checkpoint52b_post, checkpoint52c_post, checkpoint46j_post, checkpoint51h_pre, checkpoint46k_post, checkpoint46b_pre, chkpt44c_pre, checkpoint48a_post, checkpoint45a_post, checkpoint50f_post, checkpoint50a_post, checkpoint50f_pre, checkpoint44e_post, release1_p12, release1_p10, release1_p11, release1_p16, release1_p17, release1_p14, release1_p15, checkpoint47j_post, branch-exfmods-tag, checkpoint44g_post, branchpoint-genmake2, checkpoint46e_pre, checkpoint51r_post, checkpoint48c_post, checkpoint45b_post, checkpoint51i_post, release1-branch-end, release1_final_v1, checkpoint51b_post, release1_p12_pre, checkpoint46c_pre, checkpoint46, checkpoint47b_post, checkpoint44b_post, checkpoint46h_pre, checkpoint46m_post, checkpoint46a_pre, checkpoint50g_post, checkpoint45c_post, checkpoint44h_post, checkpoint46g_post, checkpoint51c_post, checkpoint52a_pre, checkpoint50e_pre, checkpoint50i_post, checkpoint51i_pre, checkpoint47f_post, checkpoint50e_post, chkpt44a_pre, checkpoint46i_post, checkpoint46c_post, branch-netcdf, checkpoint46e_post, release1_beta1, checkpoint51e_post, checkpoint44b_pre, checkpoint47, checkpoint44, checkpoint45, checkpoint48, checkpoint49, checkpoint46h_post, checkpoint51o_post, checkpoint51f_pre, chkpt44c_post, checkpoint47h_post, checkpoint52a_post, checkpoint44f_pre, checkpoint51g_post, ecco_c52_e35, checkpoint46d_post, checkpoint50b_post, release1-branch_branchpoint, checkpoint51m_post, checkpoint51a_post, checkpoint51p_post, checkpoint48g_post, checkpoint51u_post
Branch point for: branch-exfmods-curt, release1_final, release1-branch, branch-genmake2, release1, branch-nonh, tg2-branch, release1_50yr, checkpoint51n_branch, release1_coupled
File MIME type: text/plain
Adding test of advection schemes with lopped cells. 2-D x-z

1 adcroft 1.1 C $Header: /mymods/advect_xz/code/SIZE.h,v 1.1 2001/02/07 14:38:05$
2     C $Name: $
3    
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 = 20,
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 )
58    

  ViewVC Help
Powered by ViewVC 1.1.22