/[MITgcm]/MITgcm/doc/tag-index
ViewVC logotype

Diff of /MITgcm/doc/tag-index

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

revision 1.1214 by jmc, Tue Jan 12 00:23:23 2010 UTC revision 1.1275 by jmc, Wed May 19 19:35:37 2010 UTC
# Line 4  $Name$ Line 4  $Name$
4      Notes on tags used in MITgcmUV      Notes on tags used in MITgcmUV
5      ==============================      ==============================
6    
7    checkpoint62g (2010/05/19)
8    o eesupp/src (exch-1):
9     - split exch_rx.F into Forward S/R (exch1_rx.F) and Adjoint S/R (exch1_rx_ad.F)
10       and remove argument "simulationMode"; same thing for all exch_*rx_cube.F
11       (renamed to exch1_*rx_cube.F).
12     - change accordingly exch_*_rx.template and AD version in pkg/autodiff
13       to call new exch1 S/R ; update Makefile and .cvsignore.
14     - replace call to exch2_xy_rx S/R with exch2_*3d_rx(myNz=1) (will remove
15       exch2_xy_rx later)
16      Note: after updating your code, need to run "make clean" in eesupp/src
17    o test experiment bottom_ctrl_5x5:
18       new output_adm.txt with fewer grdchk & less monitor output.
19    o model/src:
20      remove the call to ini_cori in initialise_varia.F (just keep the usual one
21       in initialise_fixed.F). More consistent with coriolis & horizontal grid
22       beeing treated in the same way (ini_grid is not called a 2nd time).
23    o pkg/exf:
24      - rewrite exf_bulk_largeyeager04.F for better vectorization, changes
25      global_ocean.cs32x15/input.icedyn (11 digits of agreement), updated
26      - fix adjoint (used worked for ALLOW_ATM_WIND defined, works for this now)
27      - cosmetic changes to exf_bulkformulae.F to make it look more like
28        exf_bulk_largeyeager04.F
29    o eesupp/src (exch-1):
30      - Fix AD EXCH code for 2-D domain special cases (Nx=1 or Ny=1).
31      - Separate buffer filling and MPI sending: allow EXCH-1 to work for local
32        array (non-shared) when using MPI+MTH. Also reduces number of BARRIER
33        (even without using MPI).
34      - Message mode: move RecvAck setting (indicator of buffer being ready)
35        from send_put to recv_get S/R (was useless before, but not sure if
36        it's much more useful now);
37      - Switch the order of sync: MPI-proc 1rst and then threads;
38      - take out spin-waiting code (#undef EXCH_USE_SPINNING), use BARRIER instead.
39      - fix AD code for communication mode ='get' (but not used).
40    o model/src:
41      initialise dPhiHydX,dPhiHydY inside calc_grad_phi_hyd.F (so that TAF does
42      not drop it in S/R mddynamics, producing NaN in hs94.1x64x5 AD-test exp).
43    o utils/matlab/rdmnc.m: adapt to be able to use the generic matlab netcdf API
44    o pkg/ctrl: require a specific set of control variables and exf-flags for
45      adjoint of seaice (stop in ctrl_check.F if conditions are not satisfied)
46    o model/src:
47     a) 1rst version of a new driver S/R to turn-off output freq and flags after the
48       1rst forward sweep, to avoid over-writing output files during recomputations
49       recomputations (& grdchk); called from cost_final.F (& ctrl_init_ctrlvar.F ?)
50     b) 2nd version:
51      - add specific pkg S/R for seaice & ptracers (called from S/R TURNOFF_MODEL_IO);
52      - switch-off more output flags (exf_monFreq, chkPtFreq, dumpInitAndLast,
53         writePickupAtEnd) + seaice & ptracers output;
54      - do not switch off MNC flags (otherwise, won't get admonitor netcdf file)
55    o model/src:
56      - new S/R rotate_uv2en_rl (..._rs) that rotates vector fields.
57    o pkg/exch2:
58      - remove "simulationMode" from arg. list of S/R EXCH2_RX1,2_CUBE ;
59      - add argument "signOption" to EXCH2_RX1_CUBE (will be needed for SM exch).
60    o pkg/autodiff & exch2:
61      process exch_uv_agrid_3d_rx.f & exch2_uv_agrid_3d_rx.f through TAF
62      (for now, only if ALLOW_EXCH2 is defined).
63    o pkg/autodiff:
64      - include PACKAGES_CONFIG.h in exch*ad.flow & exch*ad.F
65        (not supposed to be in CPP_OPTIONS.h) to get ALLOW_EXCH2 defined correctly.
66       + clean-up comments (_RS is not always real*4)
67      - fix bug in ADEXCH_UV_3D_RX (without EXCH2, was calling the forward exch S/R)
68      - add a stop in ADEXCH_UV_AGRID_3D_RX if trying to use it with EXCH2:
69        was calling a forward exch2, which is wrong ; used in SEAICE & EXF pkgs.
70    o testreport (AD-tests):
71      no longer link files from dir "../input" (1rst link files from
72      "../input_ad.[xx]" if secondary test "xx" and then from "../input_ad")
73    
74    checkpoint62f (2010/04/29)
75    o model/src/the_main_loop.F:
76      adjust store directives for seaice evp and multicategory according to
77      pkg/ecco/the_main_loop.F
78    o adjoint:
79      global_sum_ad was incomplete (noted many times by many people ;)
80      nice description by Jean U. as follows:
81      * allreduce(var) in global_sum.F can be interpreted as
82        reduce(sum) followed by broadcast of sum.
83      * The adjoint of that is
84        sum(adjoint) followed by broadcast(summed adjoint value)
85        or in other words, allreduce(sum, adjoint vars)
86      We were missing the sum(adjoint)!
87      Benign, except(!) for "global" scalars appearing in tile loops (bi,bj)
88      (noted by J.M. Campin, e.g., in cost_ssh_mean, variable offset).
89      The fix should produce 16-digit accuracy between
90      single-CPU multi-tile (e.g. nSx=2, nPx=1) and
91      multi-CPU single-tile (e.g. nSx=1, nPx-2)
92      We'll probably change this yet again shortly
93    o eesupp/src:
94      - fix global_sum_r4 (wrong from previous modif in Jun 2009; ever used ?)
95    o pkg/icefront
96      - ALLOW_SUBGLACIAL_RUNOFF option adds capability for time-evolving
97        specification of addmass array based on a 2D field, which is added
98        at bottommost wet level at each horizontal location.
99    o model/src:
100     horizontal grid initialisation (other than curvilinear): add code for Exch2 IO
101     layout; (not always compatible with delX,delY setting; commented out for now).
102    o pkg/exch2:
103     change tile to processor setting (case nSy*nPy > 1): allows default model mapping
104     (myX and myYGlobalLow) to be used for simple (1 facet, no blank tile) config.
105    
106    checkpoint62e (2010/04/15)
107    o pkg/obcs:
108      - fix wrong index in OBCS_SPONGE_V for Eastern-OB (reported by David Hebert).
109    o pkg/dic:
110      -fix bug in fe_chem.F for multi-tile (nSx*nSy > 1) set-up;
111        (note: not presently tested in any forward verification exp.)
112       update tutorial_global_oce_biogeo AD output file.
113    o pkg/exf:
114      - account for the variation of albedo as a function of zenith angle
115        by defining ALLOW_ZENITHANGLE in EXF_OPTIONS.h
116    o build_options:
117     - rename "linux_ia64_ifort+mpi_ice_nas" to "linux_amd64_ifort+mpi_ice_nas"
118    o pkg/dic:
119      change DIC atmos-CO2 box (method 3, dic_int1=3) initialisation & restart:
120      - use binary pickup file for restart;
121      - initialise atmos-CO2 box from dic_pCO2 parameter;
122      - fix multi-threaded.
123    o pkg/rbcs:
124     - clean-up RBCS code: add RBCS_OPTIONS.h file ; fix multi-threaded ;
125       change (+ fix IO calls) type of array RBC_mask from _RL to _RS.
126     - add RBCS to exp4 passive tracer 01 (rbcs was previously untested)
127       and update output.txt
128    o pkg/kpp:
129     - add diagnostics for KPP non-local flux of Temp, Salinity and pTracers;
130     - change diagnostic of KPP non-local term: output average of KPPghat*KPPdiffKzS
131       (= ratio of KPP non-local (salt) flux relative to surface-flux) when
132       using pkg/timeave & pkg/diagnostics (diag 'KPPghatK' replaces 'KPPghat ');
133     - change pkg/offline to read-in average KPPghat*KPPdiffKzS from file
134       KPP_ghatKFile (instead of the average of KPPghat from file KPP_ghatFile).
135    o pkg/offline:
136      fix bug in S/R OFFLINE_FIELDS_LOAD regarding surfaceForcing conversion factor
137      (bug was added in version 1.10 on 2007-08-23).
138    o pkg/offline:
139      - no need to specify periodicExternalForcing, etc ... to use offline pack
140      - offline input files no longer just single prec --> parameter offlineLoadPrec
141    o verification/lab_sea:
142      change AD test to multi-tile setup and update all 4 AD output.
143      NOTE: while cost function values remain very similar,
144      gradients are very different, although gradient checks are self-consistent
145      Should try to get to the bottom of this (cost function summation order?)
146    o pkg/dic:
147      in carbon_chem.F, replace log10 (AUTODIFF) with explicit form to avoid
148      a weakness of TAF that drops part of double precision in log10 derivative.
149      <= changes removed since problem has been fixed in current TAF version 1.9.71
150      update AD output of exp. tutorial_dic_adjoffline & tutorial_global_oce_biogeo.
151    o pkg/ecco:
152      add missing "_d 0" in cost_readers.F, cost_readtopex.F & cost_readtopexmean.F
153      update all 4 lab_sea AD output.
154    
155    checkpoint62d (2010/03/22)
156    o build_options:
157      remove '-r8' (and '-i4') from linux_*pgf and linux_*ifort optfiles.
158    o remove unbalanced quote (single or double) in commented line of source code
159      (may cause some warning with some preprocessor/makedepend versions).
160    o pkg/seaice:
161      fix seaice_model.F for adjoint (gael) and update AD results of experiments
162       lab_sea (std + evp + noseaicedyn) and offline_exf_seaice.
163    o testreport:
164      add option '-runonly' (short: '-ro') to just do the run part (without make).
165    o eesupp: remove JAM communication code (obsolete).
166    o add option to genmake2 & testreport to switch "_RS" type to "real*4"
167      (if allowed in CPP_EEOPTIONS.h); update default CPP_EEOPTIONS.h and return
168      to default CPP_EEOPTIONS.h for exp. inverted_barometer & solid-body.cs-32x32x1
169      (update also the output).
170    
171    checkpoint62c (2010/03/02)
172    o tools/build_options :
173       move (some) old optfiles from build_options/ to build_options/unsupported/
174    o model/src and pkg/exf
175       surface relaxation -- separating data and data.exf options
176       The point is to ensure that we specify the surface relaxation
177       either in data or in data.exf (but not half and half) and to
178       avoid an accidental relaxation to 0 (which happened if a time
179       scale was specified but the file name was left empty)
180    o model/src model/inc and pkg/mom_common
181       ALLOW_3D_VISCAH/ALLOW_3D_VISCA4 => 3D specification of Viscosity
182       => addition to the viscosity field as computed by others schemes
183    o tools/build_options:
184      - rename "_generic_mpi" -> "+mpi_generic" (like other "+mpi" optfile)
185        but keep the former optfile for few weeks for smooth transition
186    o pkg/ecco
187      - allow user defined cost function contributions
188            CPP: ALLOW_USERCOST_CONTRIBUTION
189            USAGE: compute contributions in cost_usercost_all.F
190      - note: this is identical to what ALLOW_GENCOST_CONTRIBUTION once was.
191          the two options are complementary.
192    o pkg/smooth
193      - migration from contrib to the main repository
194    
195    checkpoint62b (2010/01/26)
196    o pkg/monitor:
197      - change back mon_printstats_rl.F & mon_stats_rl.F and add a stop
198        (in case someone forgot to update customized pieces of code)
199    o nonHydrostatic:
200      - add Non-hydrostatic free-surface form (selectNHfreeSurf=1)(not fully tested);
201      - add a simple 2-D experiment (short_surf_wave) to test it.
202    o pkg/icefront:
203       adding the shell of, and the hooks to, a new package that
204       will model melting and freezing of vertical glacier ice fronts
205    o momentum:
206      add diagnostics of momentum tendency from Hydrostatic pressure gradient
207       (without surf.pressure term: would need a 2nd filling since implicit term).
208    o add 3 "_d 0"s so that fizhi compiles with xlf on iblade, and replace
209      two " &end" by " &" (in fizhi-cs-*) because S/R NML_SET_TERMINATOR
210      cannot deal with the former
211    o cleaning:
212      - remove all (except OpenAD) old TLM output from results_ad dirs.
213      - remove unused S/R (MDSWRITEMETA, DIAGNOSTICS_ADD2LIST, old DFILE IO S/R)
214      - comment out maskH definition (replaced by maskInC)
215    o pkg/monitor:
216      - change mon_printstats_rl.F & mon_stats_rl.F (were similar to mon_writestats_rl
217        & mon_calc_stats_rl) to be the RL equivalent of mon_printstats_rs & mon_stats_rs.
218    
219    checkpoint62a (2010/01/15)
220    o model/src:
221      - bottom pressure diagnostic: correct for r* (when nonlinFreeSurf >= 4)
222    o pkg/diagnostics:
223      - add optional level number diagnostics (i.e., level number to be define
224        explictly with S/R DIAGNOSTICS_SETKLEV) with parser-code(10)="X".
225      - strictly check for valid parser-code(10) ;
226      - check if adding diag to the list from the right place.
227    o pkg/longstep:
228      - change parameters and fix tracer conservation with rstar/nonlinear free surface
229    o diagnostics:
230     - in all pkgs, replace remaining calls to old S/R DIAGNOSTICS_ADD2LIST with newer
231       S/R DIAGNOSTICS_ADDTOLIST ; fix seaice VICE diagnostics.
232  o pkg/diagnostics:  o pkg/diagnostics:
233   - Add option for writing vertical integral (sum of selected levels) of an output   - Add option for writing vertical integral (sum of selected levels) of an output
234      field instead of writing output field levels. Activate this option on a per      field instead of writing output field levels. Activate this option on a per

Legend:
Removed from v.1.1214  
changed lines
  Added in v.1.1275

  ViewVC Help
Powered by ViewVC 1.1.22