/[MITgcm]/MITgcm_contrib/torge/itd/code/SIZE.h
ViewVC logotype

Annotation of /MITgcm_contrib/torge/itd/code/SIZE.h

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


Revision 1.1 - (hide annotations) (download)
Fri Apr 27 22:22:17 2012 UTC (14 years, 4 months ago) by dimitri
Branch: MAIN
File MIME type: text/plain
check-in original code, before itd modifications
seaice_advdiff.F,v 1.60 2012/02/16 01:22:02
seaice_check_pickup.F,v 1.7 2012/03/05 15:21:44
seaice_diagnostics_init.F,v 1.33 2012/02/16 01:22:02
seaice_growth.F,v 1.162 2012/03/15 03:07:31
seaice_init_fixed.F,v 1.19 2012/03/11 13:41:38
seaice_init_varia.F,v 1.72 2012/03/14 22:55:53
seaice_readparms.F,v 1.120 2012/03/14 22:55:53
seaice_write_pickup.F,v 1.14 2012/03/05 15:21:45
seaice_read_pickup.F,v 1.16 2012/03/05 15:21:44
seaice_model.F,v 1.100 2012/03/02 18:56:06
SEAICE.h,v 1.62 2012/03/06 16:51:21
SEAICE_OPTIONS.h,v 1.63 2012/03/08 01:15:02
SEAICE_PARAMS.h,v 1.91 2012/03/11 13:41:38
SEAICE_SIZE.h,v 1.5 2012/03/06 16:51:21
SIZE.h,v 1.28 2009/05/17 21:15:07

1 dimitri 1.1 C $Header: /u/gcmpack/MITgcm/model/inc/SIZE.h,v 1.28 2009/05/17 21:15:07 jmc Exp $
2     C $Name: $
3    
4     These lines are here to deliberately cause a compile-time error.
5     If you see these lines in your .F files or the compiler shows them
6     as an error then it means you have not placed your configuration
7     files in the appropriate place.
8     You need to place you own copy of SIZE.h in the include
9     path for the model, and comment out these lines.
10    
11     C
12     CBOP
13     C !ROUTINE: SIZE.h
14     C !INTERFACE:
15     C include SIZE.h
16     C !DESCRIPTION: \bv
17     C *==========================================================*
18     C | SIZE.h Declare size of underlying computational grid.
19     C *==========================================================*
20     C | The design here support a three-dimensional model grid
21     C | with indices I,J and K. The three-dimensional domain
22     C | is comprised of nPx*nSx blocks of size sNx along one axis
23     C | nPy*nSy blocks of size sNy along another axis and one
24     C | block of size Nz along the final axis.
25     C | Blocks have overlap regions of size OLx and OLy along the
26     C | dimensions that are subdivided.
27     C *==========================================================*
28     C \ev
29     CEOP
30     C Voodoo numbers controlling data layout.
31     C sNx :: No. X points in sub-grid.
32     C sNy :: No. Y points in sub-grid.
33     C OLx :: Overlap extent in X.
34     C OLy :: Overlat extent in Y.
35     C nSx :: No. sub-grids in X.
36     C nSy :: No. sub-grids in Y.
37     C nPx :: No. of processes to use in X.
38     C nPy :: No. of processes to use in Y.
39     C Nx :: No. points in X for the total domain.
40     C Ny :: No. points in Y for the total domain.
41     C Nr :: No. points in Z for full process domain.
42     INTEGER sNx
43     INTEGER sNy
44     INTEGER OLx
45     INTEGER OLy
46     INTEGER nSx
47     INTEGER nSy
48     INTEGER nPx
49     INTEGER nPy
50     INTEGER Nx
51     INTEGER Ny
52     INTEGER Nr
53     PARAMETER (
54     & sNx = 20,
55     & sNy = 16,
56     & OLx = 4,
57     & OLy = 4,
58     & nSx = 1,
59     & nSy = 1,
60     & nPx = 1,
61     & nPy = 1,
62     & Nx = sNx*nSx*nPx,
63     & Ny = sNy*nSy*nPy,
64     & Nr = 23)
65    
66     C MAX_OLX :: Set to the maximum overlap region size of any array
67     C MAX_OLY that will be exchanged. Controls the sizing of exch
68     C routine buffers.
69     INTEGER MAX_OLX
70     INTEGER MAX_OLY
71     PARAMETER ( MAX_OLX = OLx,
72     & MAX_OLY = OLy )
73    

  ViewVC Help
Powered by ViewVC 1.1.22