/[MITgcm]/MITgcm/verification/bottom_ctrl_5x5/code_ad/tamc.h
ViewVC logotype

Annotation of /MITgcm/verification/bottom_ctrl_5x5/code_ad/tamc.h

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


Revision 1.1 - (hide annotations) (download)
Wed Jun 7 02:00:01 2006 UTC (17 years, 10 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint58l_post, checkpoint58u_post, checkpoint58w_post, checkpoint60, checkpoint61, checkpoint58r_post, checkpoint58n_post, checkpoint58x_post, checkpoint58t_post, checkpoint58h_post, checkpoint58q_post, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint58j_post, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint59c, checkpoint59b, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59h, checkpoint59k, checkpoint59j, checkpoint59, checkpoint58i_post, checkpoint58o_post, checkpoint58y_post, checkpoint58k_post, checkpoint58v_post, checkpoint58s_post, checkpoint61f, checkpoint61g, checkpoint61d, checkpoint61e, checkpoint61b, checkpoint61c, checkpoint58p_post, checkpoint61a, checkpoint61h, checkpoint61i, checkpoint58m_post
File MIME type: text/plain
Adding verification for 5x5 box (4-layer) bottom topography control

1 heimbach 1.1 C $Header: /u/gcmpack/MITgcm/verification/carbon/code_ad/tamc.h,v 1.8 2006/02/16 15:39:37 heimbach Exp $
2     C $Name: $
3    
4     #include "PACKAGES_CONFIG.h"
5    
6     c ================================================================
7     c HEADER TAMC
8     c ================================================================
9     c
10     c o Header for the use of the Tangent Linear and Adjoint Model
11     c Compiler (TAMC).
12     c
13     c started: Christian Eckert eckert@mit.edu 04-Feb-1999
14     c changed: Patrick Heimbach heimbach@mit.edu 06-Jun-2000
15     c - New parameter nlevchk_0 for dimensionalising
16     c common blocks in the undef ALLOW_TAMC_CHECKPOINTING case
17     c - nhreads_chkpt was declared at the wrong place
18     c - new keys, separate for different packages
19    
20     c ================================================================
21     c HEADER TAMC
22     c ================================================================
23    
24    
25     c TAMC checkpointing parameters:
26     c ==============================
27     c
28     c The checkpointing parameters have to be consistent with other model
29     c parameters and variables. This has to be checked before the model is
30     c run.
31     c
32     c nyears_chkpt - Number of calendar years affected by the assimilation
33     c experiment; nyears_chkpt has to be at least equal to
34     c the result of cal_IntYears(mythid).
35     c nmonths_chkpt - Number of months per year; nmonth_chkpt has to be at
36     c least equal to nmonthyear.
37     c ndays_chkpt - Number of days per month; nday_chkpt has to be at least
38     c equal to nmaxdaymonth.
39     c nsteps_chkpt - Number of steps per day; nsteps_chkpt has to be at
40     c least equal to cal_nStepDay(mythid)
41     c ncheck_chkpt - Number of innermost checkpoints.
42     c
43     c ngeom_chkpt - Geometry factor.
44     c nthreads_chkpt - Number of threads to be used; nth_chkpt .eq. nTx*nTy
45    
46     integer nyears_chkpt
47     integer nmonths_chkpt
48     integer ndays_chkpt
49     integer ngeom_chkpt
50     integer ncheck_chkpt
51     integer nthreads_chkpt
52    
53     parameter (nyears_chkpt = 1 )
54     parameter (nmonths_chkpt = 12 )
55     parameter (ndays_chkpt = 31 )
56     parameter (ngeom_chkpt = nr*nsx*nsy )
57     parameter (ncheck_chkpt = 6 )
58     parameter ( nthreads_chkpt = 1 )
59    
60     #ifdef ALLOW_TAMC_CHECKPOINTING
61    
62     integer nchklev_1
63     parameter( nchklev_1 = 20 )
64     integer nchklev_2
65     #ifdef AUTODIFF_2_LEVEL_CHECKPOINT
66     parameter( nchklev_2 = 22 )
67     #else
68     parameter( nchklev_2 = 10 )
69     #endif
70     integer nchklev_3
71     parameter( nchklev_3 = 5 )
72    
73     c-- Note always check for the correct sizes of the common blocks!
74    
75     #else /* ALLOW_TAMC_CHECKPOINTING undefined */
76    
77     integer nchklev_0
78     parameter( nchklev_0 = 64800 )
79    
80     #endif /* ALLOW_TAMC_CHECKPOINTING */
81    
82     c TAMC keys:
83     c ==========
84     c
85     c The keys are used for storing and reading data of the reference
86     c trajectory.
87     c
88     c The convention used here is:
89     c ikey_<name>
90     c
91     c which means that this key is used in routine <name> for reading
92     c and writing data.
93    
94     common /tamc_keys_i/
95     & ikey_dynamics,
96     & ikey_yearly,
97     & ikey_daily_1,
98     & ikey_daily_2,
99     & iloop_daily
100    
101     integer ikey_dynamics
102     integer ikey_yearly
103     integer ikey_daily_1
104     integer ikey_daily_2
105     integer iloop_daily
106    
107     INTEGER isbyte
108     PARAMETER( isbyte = 8 )
109     INTEGER maximpl
110     PARAMETER( maximpl = 6 )
111     #ifdef ALLOW_PTRACERS
112     cph moved this to PTRACERS_SIZE.h
113     cph INTEGER maxpass
114     cph PARAMETER( maxpass = PTRACERS_num + 2 )
115     #else
116     INTEGER maxpass
117     PARAMETER( maxpass = 2 )
118     #endif
119     INTEGER maxcube
120     PARAMETER( maxcube = 1 )
121    
122     INTEGER act0, act1, act2, act3, act4
123     INTEGER max0, max1, max2, max3
124     INTEGER iikey, kkey, passkey, igadkey,
125     & itdkey, idynkey, igmkey, ikppkey
126    
127     #ifdef ALLOW_DEPTH_CONTROL
128     C Parameter that is needed for the tape complev_cg2d_iter
129     C cannot be smaller than the allowed number of iterations in cg2d
130     C (numItersMax >= cg2dMaxIters in data-file)
131     INTEGER numItersMax
132     PARAMETER ( numItersMax = 100 )
133     #endif /* ALLOW_DEPTH_CONTROL */
134    
135     c ================================================================
136     c END OF HEADER TAMC
137     c ================================================================
138    
139    

  ViewVC Help
Powered by ViewVC 1.1.22