/[MITgcm]/MITgcm/verification/tutorial_tracer_adjsens/code_oad/tamc.h
ViewVC logotype

Contents of /MITgcm/verification/tutorial_tracer_adjsens/code_oad/tamc.h

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


Revision 1.1 - (show annotations) (download)
Thu Mar 21 18:44:33 2013 UTC (11 years, 3 months ago) by jahn
Branch: MAIN
CVS Tags: checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64q, checkpoint64p, checkpoint64s, checkpoint64r, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint64i, checkpoint64h, checkpoint64k, checkpoint64j, checkpoint64m, checkpoint64l, checkpoint64o, checkpoint64n, checkpoint64g, checkpoint64f, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65
File MIME type: text/plain
add setup for OpenAD

1 C $Header$
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 = 5 )
64 integer nchklev_2
65 #ifdef AUTODIFF_2_LEVEL_CHECKPOINT
66 parameter( nchklev_2 = 6 )
67 #else
68 parameter( nchklev_2 = 2 )
69 #endif
70 c parameter( nchklev_2 = 150 )
71 integer nchklev_3
72 parameter( nchklev_3 = 3 )
73 c parameter( nchklev_3 = 150 )
74
75 c-- Note always check for the correct sizes of the common blocks!
76
77 #else /* ALLOW_TAMC_CHECKPOINTING undefined */
78
79 integer nchklev_0
80 parameter( nchklev_0 = 64800 )
81
82 #endif /* ALLOW_TAMC_CHECKPOINTING */
83
84 c TAMC keys:
85 c ==========
86 c
87 c The keys are used for storing and reading data of the reference
88 c trajectory.
89 c
90 c The convention used here is:
91 c ikey_<name>
92 c
93 c which means that this key is used in routine <name> for reading
94 c and writing data.
95
96 common /tamc_keys_i/
97 & ikey_dynamics,
98 & ikey_yearly,
99 & ikey_daily_1,
100 & ikey_daily_2,
101 & iloop_daily
102
103 integer ikey_dynamics
104 integer ikey_yearly
105 integer ikey_daily_1
106 integer ikey_daily_2
107 integer iloop_daily
108
109 INTEGER isbyte
110 #ifdef ALLOW_TAMC_SINGLEPREC_COMLEV
111 PARAMETER( isbyte = 4 )
112 #else
113 PARAMETER( isbyte = 8 )
114 #endif
115
116 INTEGER maximpl
117 PARAMETER( maximpl = 6 )
118 #ifdef ALLOW_PTRACERS
119 cph moved this to PTRACERS_SIZE.h
120 cph INTEGER maxpass
121 cph PARAMETER( maxpass = PTRACERS_num + 2 )
122 #else
123 INTEGER maxpass
124 PARAMETER( maxpass = 2 )
125 #endif
126 INTEGER maxcube
127 PARAMETER( maxcube = 1 )
128
129 INTEGER act0, act1, act2, act3, act4
130 INTEGER max0, max1, max2, max3
131 INTEGER iikey, kkey, passkey, igadkey,
132 & itdkey, idynkey, igmkey, iptrkey
133
134 #ifdef ALLOW_CG2D_NSA
135 C Parameter that is needed for the tape complev_cg2d_iter
136 C cannot be smaller than the allowed number of iterations in cg2d
137 C (numItersMax >= cg2dMaxIters in data-file)
138 INTEGER numItersMax
139 PARAMETER ( numItersMax = 200 )
140 #endif /* ALLOW_CG2D_NSA */
141
142 c ================================================================
143 c END OF HEADER TAMC
144 c ================================================================

  ViewVC Help
Powered by ViewVC 1.1.22