/[MITgcm]/MITgcm/tutorial_examples/barotropic_gyre_in_a_box/code/SIZE.h
ViewVC logotype

Annotation of /MITgcm/tutorial_examples/barotropic_gyre_in_a_box/code/SIZE.h

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


Revision 1.1.2.1 - (hide annotations) (download)
Mon Jan 14 17:01:44 2002 UTC (21 years, 11 months ago) by cnh
Branch: release1-branch
CVS Tags: release1-branch_tutorials, release1-branch-end
Changes since 1.1: +58 -0 lines
File MIME type: text/plain
o Renaming tutorial examples as follows

exp0                           -> barotropic_gyre_in_a_box
exp2                           -> baroclinic_gyre_on_a_sphere
global_ocean.90x40x15          -> global_ocean_circulation
hs94.128x64x5                  -> held_suarez_atmosphere
plume_on_slope                 -> nonhydrostatic_plume_on_slope
convection                     -> nonhydrostatic_deep_convection ( New experiment )
carbon                         -> tracer_adjoint_sensitivity

1 cnh 1.1.2.1 C $Header: /u/u0/gcmpack/MITgcm/tutorial_examples/exp0/code/Attic/SIZE.h,v 1.1.2.1 2002/01/14 16:07:38 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 R 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 = 60,
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 = 1)
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