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

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

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


Revision 1.1 - (show annotations) (download)
Fri Sep 28 02:30:09 2001 UTC (22 years, 6 months ago) by adcroft
Branch: MAIN
CVS Tags: checkpoint46n_post, checkpoint51k_post, checkpoint47e_post, checkpoint52l_pre, checkpoint46l_post, checkpoint46g_pre, checkpoint47c_post, release1_p13_pre, checkpoint50c_post, checkpoint46f_post, checkpoint48e_post, checkpoint50c_pre, checkpoint44f_post, checkpoint46b_post, checkpoint52j_pre, checkpoint43a-release1mods, checkpoint51o_pre, checkpoint54d_post, checkpoint54e_post, release1_p13, checkpoint51l_post, checkpoint48i_post, checkpoint46l_pre, checkpoint50d_pre, checkpoint52k_post, chkpt44d_post, checkpoint55, checkpoint54, checkpoint51, checkpoint50, checkpoint53, checkpoint52, release1_p8, release1_p9, checkpoint50d_post, release1_p1, release1_p2, release1_p3, release1_p4, release1_p5, release1_p6, release1_p7, checkpoint52f_post, checkpoint50b_pre, checkpoint44e_pre, checkpoint54f_post, checkpoint51f_post, release1_b1, checkpoint48b_post, checkpoint43, checkpoint51d_post, checkpoint48c_pre, checkpoint47d_pre, checkpoint51t_post, checkpoint51n_post, release1_chkpt44d_post, checkpoint52i_pre, checkpoint51s_post, checkpoint47a_post, checkpoint55c_post, checkpoint48d_pre, checkpoint51j_post, checkpoint47i_post, checkpoint52e_pre, checkpoint52e_post, checkpoint51n_pre, checkpoint47d_post, checkpoint53d_post, checkpoint46d_pre, checkpoint48d_post, release1-branch_tutorials, checkpoint48f_post, checkpoint45d_post, checkpoint52b_pre, checkpoint54b_post, checkpoint46j_pre, checkpoint51l_pre, checkpoint52m_post, 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, checkpoint52f_pre, checkpoint44e_post, release1_p12, release1_p10, release1_p11, release1_p16, release1_p17, release1_p14, release1_p15, checkpoint47j_post, checkpoint54a_pre, checkpoint53c_post, branch-exfmods-tag, checkpoint44g_post, branchpoint-genmake2, checkpoint54a_post, checkpoint46e_pre, checkpoint51r_post, checkpoint48c_post, checkpoint45b_post, checkpoint51i_post, release1-branch-end, release1_final_v1, checkpoint55b_post, checkpoint51b_post, release1_p12_pre, checkpoint46c_pre, checkpoint53a_post, checkpoint46, checkpoint47b_post, checkpoint44b_post, checkpoint46h_pre, checkpoint52d_post, checkpoint53g_post, checkpoint46m_post, checkpoint46a_pre, checkpoint50g_post, checkpoint45c_post, checkpoint44h_post, checkpoint46g_post, checkpoint51c_post, checkpoint52a_pre, checkpoint52i_post, checkpoint50e_pre, checkpoint50i_post, checkpoint51i_pre, checkpoint52h_pre, checkpoint53f_post, checkpoint52j_post, checkpoint47f_post, checkpoint50e_post, chkpt44a_pre, checkpoint46i_post, checkpoint46c_post, branch-netcdf, checkpoint52l_post, checkpoint52n_post, checkpoint53b_pre, checkpoint46e_post, release1_beta1, checkpoint51e_post, checkpoint44b_pre, checkpoint55a_post, checkpoint47, checkpoint44, checkpoint45, checkpoint48, checkpoint49, checkpoint46h_post, checkpoint51o_post, checkpoint51f_pre, chkpt44c_post, checkpoint53b_post, checkpoint47h_post, checkpoint52a_post, checkpoint44f_pre, checkpoint51g_post, ecco_c52_e35, checkpoint46d_post, checkpoint50b_post, release1-branch_branchpoint, checkpoint51m_post, checkpoint53d_pre, checkpoint54c_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, netcdf-sm0, checkpoint51n_branch, release1_coupled
File MIME type: text/plain
Adding Williamson test 1. CFL~1, dt=3600s with 40m/s winds. Cool!
 - I've been runing this for a while but it never got broken until now
   so I'm adding it to repositoryi to avoid that happening again.

1 C $Header: /u/gcmpack/models/MITgcmUV/verification/solid-body.cs-32x32x1/code/SIZE.h,v 1.1 2001/07/31 18:30:55 adcroft Exp $
2 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 & OLx = 3,
41 & OLy = 3,
42 & 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