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

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

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


Revision 1.1.4.1 - (hide annotations) (download)
Tue Feb 26 16:05:24 2002 UTC (22 years, 2 months ago) by adcroft
Branch: release1
CVS Tags: release1_p12, release1_p13, release1_p10, release1_p16, release1_p15, release1_p11, release1_p14, release1_p17, release1_p8, release1_p9, release1_p2, release1_p3, release1_p4, release1_p6, release1_p1, release1_p5, release1_p7, release1_p13_pre, release1_p12_pre, release1_chkpt44d_post
Branch point for: release1_50yr
Changes since 1.1: +2 -2 lines
File MIME type: text/plain
Merging changes on MAIN between checkpoint43 and checkpoint43a-release1mods
Command: cvs -q update -jcheckpoint43 -jcheckpoint43a-release1mods -d -P

These changes are most of the changes between c43 and c44 except those
that occured after "12:45 11 Jan 2002". As far as I can tell it is
checkpoint43 with the following mods:

  o fix bug in mom_vi_del2uv
  o select when filters are applied ; add options to zonal_filter (data.zonfilt)  o gmredi: fix Pb in the adiabatic form ; add options (.e.g. Bolus advection)
  o update AIM experiments (NCEP input files)
  o improve and extend diagnostics (Monitor, TimeAve with NonLin-FrSurf)
  o added some stuff for AD
  o Jamar wet-points

This update does not contain the following mods that are in checkpoint44

  o bug fix in pkg/generic_advdiff/
    - thread related bug, bi,bj arguments in vertical advection routines
  o some changes to pkg/autodiff, pkg/cost, pkg/exf, pkg/ecco,
    verification/carbon and model/src/ related to adjoint
  o some new Matlab scripts for diagnosing model density
    - utils/matlab/dens_poly3.m and ini_poly3.m

The list of exclusions is accurate based on a "cvs diff". The list of
inclusions is based on the record in doc/tag-index which may not be complete.

1 adcroft 1.1.4.1 C $Header: /u/gcmpack/MITgcm/verification/plume_on_slope/code/SIZE.h,v 1.1 2001/11/27 15:16:33 adcroft Exp $
2     C $Name: checkpoint43a-release1mods $
3 adcroft 1.1 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 = 320,
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 = 60)
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