/[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.1954 by jmc, Sun Jan 5 20:16:53 2014 UTC revision 1.2044 by jmc, Mon Aug 11 20:32:15 2014 UTC
# Line 4  $Name$ Line 4  $Name$
4      Notes on tags used in MITgcmUV      Notes on tags used in MITgcmUV
5      ==============================      ==============================
6    
7    o pkg/matrix:
8      - pass, as argument, updated tracer field to S/R MATRIX_STORE_TENDENCY_EXP
9    o model/src:
10      - fix initialisation of geothermalFile; compile geothermal-flux code in
11        natl_box verification experiment.
12    o model/src & pkg/down_slope:
13      - push the k loop inside S/R TIMESTEP_TRACER (now called outside the k loop).
14      - in dwnslp_apply.F, update tracer tendency instead of the future tracer
15        field and call S/R DWNSLP_APPLY before TIMESTEP_TRACER; this affects
16        results at machine truncation level: update output of experiments
17        global_ocean.90x40x15.dwnslp (FWD) and lab_sea.noseaicedyn (AD).
18    o pkg/diagnostics (Stats-Diags):
19      - do not cumulate the full volume when DIAGNOSTICS_FILL is
20        called with bibjFlg < 0 (no increment of the counter for 2D/3D diag);
21        This fix the mean statistics when DIAGNOSTICS_FILL is called multiple
22        times (but Min,Max and StD are still wrong).
23    o model/src:
24      - add geothermal flux forcing: read in ini_forcing.F as time-constant
25        field "geothermalFlux" applied in S/R APPLY_FORCING_T (apply_forcing.F)
26    o model/src:
27      - move CYCLE_TRACER calls from tracers_correction_step.F to temp/salt/ptracer
28        _integrate.F so that, when leaving S/R THERMODYANMICS, theta,salt and pTrac
29        arrays are already updated while adjustments (filters, conv.adjustment) are
30        still applied later, in S/R TRACERS_CORRECTION_STEP.
31    o model/src:
32      - store in common bloc array "rhoInSitu" the virtual potential temperature
33        anomaly that is used to compute geopotential: this make the atmos code
34        more similar to ocean code which already uses rhoInSitu in calc_phi_hyd.F
35    o pkg/seaice/seaice_lsr.F
36      - rename integer variable ilcall to ipass (that's what it is called
37        in the residual diagnostics
38      - change time stepping for NPSEUDOTIMESTEP > 2 (does not change the
39        default) for improved non-linear convergence of the first few steps
40      - adjust a few comments and add new ones to explain some of the store
41        directives
42    o pkg/generic_advdiff (& ptracers):
43      - re-work the code to check for valid advection scheme and for minimum
44        size of overlap (now stored in local common bloc in gad_advscheme.F)
45    o pkg/seaice: another attempt to make the adjoint work for sea ice dynamics
46      - re-initialize more variables in seaice_lsr: u/vIceC, u/vIceNm1
47      - add an auxilliary variable "bet" and fix store directives and keys in
48        seaice_lsr_tridiagu/v, this seems to do the trick (i.e. more or
49        less exact gradients in my tests); but there are still
50        recomputation warning (although gradients are sort of OK), when
51        SEAICE_LSR_VECTORIZE is not defined, so this flag and
52        SEAICE_LSR_VECTORIZE_ZEBRA are recommended for efficiency.
53      - update verification experiments lab_sea.
54      - change some comments in S/R seaice_calc_viscosities
55    o model/src:
56      - if staggerTimeStep=T, always apply exchange to velocity field in
57        do_stagger_fields_exchanges.F instead of in do_fields_blocking_exchanges.F
58        (independent of using multi-dim advection or not); no effect on FWD run
59        but affects AD results (at machine truncation level): update output of
60        experiment 1D_ocean_ice_column (ad: 12 digits), hs94.1x64x5 (ad,oad: 13.d)
61        and isomip (oad: 12.d).
62    o pkg/generic_advdiff:
63      - stop if doAB_onGtGs is set to FALSE but ignored
64      - refine warning related to stability of tracer time-stepping
65        regarding internal wave dynamics.
66      - setting of AdamsBashforth_T,S when doAB_onGtGs=F: remove condition
67        on staggerTimeStep & implicitIntGravWave (will now get a warning
68        if potentially unstable).
69    o pkg/kl10:
70      - add new pkg "kl10" for mixing due to internal wave breaking, from
71        http://www.sciencedirect.com/science/article/pii/S1463500310000144
72        (contribution from Jody Klymak), tested in verification experiment
73        verification/internal_wave/input.kl10/
74    o isomip experiment:
75      - test pkg/shelfice with Non-Lin Free-Surf in one of the FWD set-up
76        (input.htd) and update the output.
77    o cd_code experiments:
78      - use default cd_code options (#undef CD_CODE_NO_AB_MOMENTUM &
79        #undef CD_CODE_NO_AB_CORIOLIS) in experiments: cfc_example (fwd)
80        global_ocean.90x40x15 (ad & oad) and OpenAD (ad & oad) and
81        update the corresponding output.
82    o pkg/seaice:
83      - reduce the number of include files and store directives in
84        S/R seaice_lsr_tridiagu/v
85      - change the order of loops in one case in S/R seaice_lsr_tridiagv
86        (only for SEAICE_VECTORIZE_LSR_ZEBRA defined), which allows me to
87        get rid off one store directive (a TAF bug?)
88      - add one more instance of ifdef SEAICE_VECTORIZE_LSR_ZEBRA in
89        S/R seaice_lsr_tridiagv to change the loop range for consistency
90      - remove ilcall, m from parameter list of S/R seaice_lsr_tridiagu/v
91      - fix a bug that affects the JFNK solver: replace sNx/y by i/jMax in
92        S/R seaice_lsr_tridiagu/v (requires update of
93        offline_exf_seaice/input.dyn_jfnk)
94    
95    checkpoint65a (2014/07/27)
96    o model/src:
97      - Non-Lin Free-Surf in p/z coords: allows hFacW,S to be larger than
98        surrounding hFacC=1 @ edge of a step with different kSurfC on either side
99        (topo in p-coords, ice-shelf in z-coords); update output of experiments
100        tutorial_global_oce_in_p and isomip (both AD and OpenAD output).
101    o model/src:
102      - collect momentum forcing tendency into local 2-D array (passed as argument
103        to apply_forcing S/R); this simplifies mom. Forcing diagnostics and CD_CODE
104        parts in timestep.F (without CD_CODE_NO_AB_MOMENTUM defined = the default);
105        affects results at machine truncation level (e.g., if using OBCS_SPONGE).
106      - collect T & S forcing tendency into local 2-D array (passed as argument to
107        apply_forcing S/R); add 3-D diagnostics for temp & salt forcing tendency.
108        affects results at machine truncation level (e.g., ocean: if using
109        SHORTWAVE_HEATING and atmos:, if using FrictionHeating or (atm_Rq<>0)
110        moist correction due to vertical advection).
111      - update output of experiments: fizhi-cs-32x32x40 (13 digits),
112        global_ocean.cs32x15 (fwd: icedyn, seaice, thsice, all 3 @ 11d; adm & tml:
113        seaice_dynmix & thsice, fwd grd @ 3 & 8), hs94.1x64x5 (ad grd @ 13),
114        obcs_ctrl (ad & fwd grd @ 12 & 7).
115    o pkg/ptracers & diagnostics:
116      - use ptracers (short) name (instead of long one) to make ptracers diagnostics
117        title (to avoid some unexpected truncation); sort out ptracers diags units.
118      - collect ptracer forcing tendency into local 2-D array (passed as argument
119        to apply_forcing S/R); add 3-D diagnostics for ptracers forcing tendency.
120    
121    checkpoint65 (2014/07/18)
122    o pkg/fizhi:
123      - add parenthesis around fizhi tendencies in fizhi_tendency_apply.F: this
124        affects results at machine truncation level. Update output of experiments
125        fizhi-cs-32x32x40 (12 digits for cg2d) & fizhi-cs-aqualev20 (13 digits).
126    o pkg/seaice: more clean up
127      - rename TAF common block tapes to be more consistent and remove
128        unnecessary duplicates
129      - add store directives to remove more recomputations, but use smaller
130        tapes (and adjust keys) when SEAICE_LSR_ADJOINT_ITER is undefined.
131        The idea behind this flag is to reduce the memory footprint when the
132        adjoint of the LSR is not required. As of now, defining the flag
133        SEAICE_LSR_ADJOINT_ITER increases 4 common block tapes for 2D field by
134        a factor of SOLV_MAX_FIXED (=500 by default in SEAICE_SIZE.h).
135        For experiment offline_exf_seaice, this means on a linux box with gfortran
136        nearly a factor of 10 (but keep in mind there is mostly seaice code in
137        this experiment):
138        > size mitgcmuv_ad
139        text    data        bss     dec        hex  
140        5100659 1216  220458952  225560827  d71c8fb
141        5339425 1200 1868783272 1874123897 6fb4dc79 (SEAICE_LSR_ADJOINT_ITER)
142        but only a moderate increase of 36% for global_ocean.cs32x15:
143        text    data        bss     dec        hex
144        6695027 1648 1014578664 1021275339 3cdf6ccb
145        6695203 1648 1382505320 1389202171 52cd8afb (SEAICE_LSR_ADJOINT_ITER)
146      - note: there are still recomputations in global_ocean.cs32x15 and
147        offline_exf_seaice and the gradient agreement changes (gets a
148        little worse) for global_ocean.cs32x15 (-> update output_adm.seaice.txt)
149      - in general, the AD gradients still are wrong
150    o OpenAD
151      - clean up code_oad/ directories somewhat by moving files
152        dontCompile, dontTransform, keepOriginal to OAD_support/
153    o model/src:
154      - using MOM fluxform and Non-Lin Free-Surf with momDissip_In_AB=F
155        (not currently tested): add dissipation terms before NLFS rescaling of
156        tendencies (previously done after).
157    o pkg/diagnostics:
158      - write stats-diags in ascii file with more digits (same as in monitor).
159    o pkg/down_slope:
160      - drop the bi,bj dimension of argument recip_hFac in S/R DWNSLP_APPLY; with
161        NLFS (not tested), use new recip_hFac value in order to conserve tracer.
162    o model/src:
163      - new file "apply_forcing.F" containing all the code previously in
164        external_forcing.F, but with new argument list: pass, as new argument,
165        the current level tendency array to update (instead of a direct update
166        of the common bloc array). Change the corresponding calls.
167      - add CPP option USE_OLD_EXTERNAL_FORCING (default is undef) to use
168        EXTERNAL_FORCING_U,V,T,S subroutines (for backward compatibility).
169    o pkg/seaice/seaice_lsr, a little bit of clean up
170      - rearrange some code blocks, so that now all calculations for
171        setting up the right-hand-sides done within one single block
172        (I find that easier to read and understand)
173      - rearrange freedrift-code to reduce the number of ifdefs
174      - adjust some indentations and comments
175    
176    checkpoint64z (2014/07/10)
177    o model/src and several pkgs:
178      - change argument list of all S/R called from external_forcing.F and
179        called from ptracers_forcing.F (renamed to ptracers_apply_forcing.F)
180        to pass, as argument, the current level tendency array to update
181        (instead of a direct update of the common bloc array).
182      - change also (in the same way) argument list of PTRACERS_APPLY_FORCING;
183      - rename taueddy_external_forcing.f to taueddy_tendency_apply.F
184    o pkg/seaice/seaice_lsr.F
185      - always initialize local arrays in seaice_lsr_tridiagu/v
186      - add more local tapes to seaice_lsr_tridiagu/v
187      - move storing u/vice(:,:,bi,bj) out of seaice_lsr_tridiagu/v, but
188        keep it in bi/bj loop; this seems to be essential
189      - gradients are still wrong but only by 4-7 orders of magnitude
190        instead of 15 orders of magnitude, lab_sea improves a little
191    o pkg/seaice
192      - (pkg/autodiff) remove storing/restoring of seaiceMaskU/V that
193        generates unnecessary code in seaice_lsr_ad
194      - add more store directives in seaice_lsr to avoid unnecessary code
195        in seaice_lsr_ad
196      - exclude some residual computations in seaice_lsr when
197        ALLOW_AUTODIFF_TAMC is defined in order to avoid unnecessary code
198        in seaice_lsr_ad
199      - add more storing, a new tape (model/src/the_main_loop.F) and
200        another key for SEAICE_LSR_VECTORIZE_ZEBRA (the local keys ilockey
201        and klockey should be checked by a specialist)
202      - modify ( define SEAICE_VECTORIZE_LSR and SEAICE_LSR_ADJOINT_ITER )
203        and update lab_sea after previous changes in pkg/seaice below
204    o pkg/autodiff:
205      - introduce useSmoothCorrel2DinAdMode, SEAICEapproxLevInAd, and
206        viscFacInAd : run time parameters allowing for adjoint switches
207        note : logic for useSmoothCorrel2DinAdMode is in ctrl_readparms.F
208    o pkg/ecco:
209      - introduce cost_gencost_boxmean.F that computes a box mean
210        temperature (for use in adjoint sensitivity studies).
211    o model/src/set_defaults.F : initialize viscFacAdj to 1.
212    o pkg/mom_common/mom_calc_visc.F:
213      - ifdef ALLOW_AUTODIFF then include viscFacAdj factor.
214    o pkg/seaice/seaice_summary.F:
215      - statement for SEAICEadjMODE now in autodiff_readparms.F
216    o pkg/seaice:
217      - remove some store directives and add new ones in an effort to get
218        finally rid off the recomputation warnings. This is successful
219        when SEAICE_VECTORIZE_LSR ***and*** SEAICE_LSR_ADJOINT_ITER are
220        defined (i.e. no extensive recomputation warnings left), but there
221        are still too many recomputations on the solver iteration level
222      - define SEAICE_VECTORISZE_LSR in offline_exf_seaice/code_ad/SEAICE_OPTIONS.h
223      - move definition of MPSEUDOTIMESTEPS into TAMC-block in
224        SEAICE_SIZE.h
225      - add a store directive in S/R seaice_calc_viscosities
226    o pkg/seaice (ITD code):
227      - fix definition of Hlimit for multi-threaded case
228      - use double precision arithmetic to compute Hlimit: this affects results;
229        update output of experiment seaice_itd.
230    o replace content of verification/seaice_itd
231      - instead of a 1D column use the configuration of offline_exf_seaice
232        to test the ice thickness distribution code with ridging
233      - this is a first shot at this experiment
234      - change of some defaults of ridging parameters SEAICEhStar (from
235        100 to 25) and SEAICEmuRidging (from 5 to 3) in seaice_readparms.F
236        and lot of new comments.
237    
238    checkpoint64y (2014/06/20)
239    o pkg/seaice/seaice_reg_ridge.F:
240      - modify the regularization of very small volumes of ice; only check
241        total volume HEFF, and do not apply correction to individual ice
242        classes because that leads to funny patterns in the heat and fw-fluxes
243        into the ocean. Adjust seaice_itd/results/output.txt
244      - replace nITD by SEAICE_multDim in loop-ranges
245    o pkg/exf:
246      - add code to process the case field period = -12. with UV interpolation.
247      - move debug print (formerly active when exf_verbose=T) from EXF_getFFieldRec
248        into S/R that calls it (i.e., exf_set_gen.F, exf_set_uv.F & obcs_exf_load.F)
249    o verification/global_with_exf:
250      - switch all fields period to -12. (was previously untested) in input/data.exf
251        (but keep secondary test ".yearly" unchanged); update the reference output.
252    o pkg/cal:
253      - new calendar type "noLeapYear" for 365 days calendar without any leap year.
254    o pkg/exf:
255      - new integer parameter "exf_debugLev" (default set to main model debugLevel)
256        to replace logical switch "exf_verbose"
257      - report in STDOUT when loading a new record (if exf_debugLev >= 3)
258    o pkg/sbo:
259      - update from Katherine Quinn: evaluate mass directly from density and SSH
260        (budget using Finite Volume method) instead of from bottom pressure.
261      - allow testreport to collect few selected SBO output ; tested in exp.
262        global_ocean.90x40x15 (after updating the results, to include SBO output).
263      - fix some multi-threading issues (in output part).
264    o model/src & most packages:
265      - always call {PKG}_READPARMS even if corresponding use{PKG}=F;
266      - in {PKG}_READPARMS, in case use{PKG}=F: add a call to new S/R
267        PACKAGES_UNUSED_MSG to print a weak warning when parameter file
268        "data.{pkg}" exist ; and leave the S/R (return) just after.
269      - more standard LAND pkg interface (land_init_fixed.F, land_check.F).
270        + call LAND_READPARMS from packages_readparms.F
271    o pkg/seaice:
272      - remove code that resets useThSice in S/R seaice_readparms and
273        replace it by a warning in S/R seaice_check
274      - remove parameter MULTDIM, replace with nITD and runtime
275        parameter SEAICE_multDim (still hard-wired to nITD if
276        SEAICE_ITD is defined)
277    
278    checkpoint64x (2014/05/24)
279    o verification/lab_sea:
280      - update adjoint and TLM output following changes to pkg/salt_plume
281      - un-do the update after putting back local recip_Cp in few places.
282    o pkg/salt_plume: modifications by An Nguyen:
283      - add capability to do brine rejection (salt-plume) as function of
284        volume+tracers (instead of only salinity tracer).
285      - conserve volume by exchanging volume from each kLev to above to
286        accommodate in-coming brine volume
287      - store surface and klev exchanged fraction + volume in 4 new 3-d arrays
288      - switch KPP surf buoyancy due to brine forcing to 3-d
289        (3 more 3-d arrays, 2 for SPforcing[T,S], 1 for boplume)
290      - add salt_plume_volfrac, salt_plume_apply, salt_plume_tendency_apply_t
291      - unrelatedly, also add ad-hoc capability to vary salt_plume scheme
292        in East/West Arctic.
293    o pkg/sbo:
294      - incorporate modifications from Katherine Quinn to enable the use of sbo
295        pkg in ECCO-v4 set-up ; remove SBO-TimeAve output ; add monitor-like
296        output for future testreport verification (unfinished).
297    o pkg/atm_phys:
298      - change diagnostics (AtPh_Trf & AtPh_Qrf) of DARGAN_BETTSMILLER S/R:
299        skip the reseting of t_ref & q_ref to initial t & q ; this preserve the
300        output of S/R CAPECALCNEW (Parcel temp & q) for diagnostics.
301    o pkg/seaice
302      seaice_calc_ice_strength.F: modify expression to avoid divisions
303        (affects truncation)
304      seaice_do_ridging.F: clean up the insectarium
305      - fix a bug that was compensated by areaScaling (-> remove areaScaling code)
306      - added SEAICEsnowFracRidge to redistributed snow (2nd bug)
307      - set closing/openingRate to zero where no extra iteration is need (3rd bug)
308      - add some debugging information and error messages (warnings)
309    o model/src: modifications relatd to atmosphere p*:
310      - Switch to more accurate p* coordinate slope term (calc_grad_phi_hyd.F)
311      - With p* or Sigma-P, use constant reference Pot.Temp (thetaConst) instead
312        of vertical profile tRef in geopotential background and anomaly.
313      - Acount for true p* correction in theta <-> T conversion in pkg/aim_v23
314        and pkg/atm_phys.
315      - Update FWD output of experiments: aim.5l_cs (x2), fizhi-cs-32x32x40,
316        fizhi-cs-aqualev20, fizhi-gridalt-hs, tutorial_held_suarez_cs, cpl_aim+ocn.
317    o pkg/seaice: fix a bug in seaice_prepare_ridging.F, forgot a sqrt
318    o pkg/ptracers: compute ptracer source/sink due to linear free surface.
319        not used right now, but can be used in BGC packages to fix conservation.
320    o pkg/dic, pkg/gchem: move tracer_meanarea to gchem, so it can be used by
321        other packages too.
322    o pkg/seaice/seaice_calc_ice_strength.F: replace SEAICE_rhoSnow by
323        SEAICE_rhoIce in the Rothrock (1975)-type strength calculations (bug fix)
324    o model/src:
325      - since we have several heat capacity (even in model/src), define "recip_Cp"
326        as local variable (no longer in common block) to avoid any confusion.
327      - add thetaConst in PARAMS.h (to be used with pStar or sigma-P coords).
328    o pkg/exf:
329      - from Jeff Scott: add option (#define EXF_CALC_ATMRHO) to calculate local
330        air density as function of air Temp, Humidity and atm pressure.
331    
332    checkpoint64w (2014/05/02)
333    o verification:
334      - update output_adm.txt files for experiment global_ocean.cs32x15 (seaice &
335        seaice_dynmix) and lab_sea (primary test & noseaicedyn): moving/changing
336        code from seaice_growth.F & seaice_advdiff.F to new ridging routines
337        seaice_reg_ridge.F seaice_do_ridging.F affects AD gradient
338        (down to 8-7 matching digits for global_ocean and 5-6 for lab_sea).
339    o model/src: for atmosphere in p* coords:
340      - store factor rStarFacC**atm_kappa (= pStarFacK) in common block
341      - implement more accurate p* coordinate slope term (in calc_grad_phi_hyd.F),
342        but not yet activated.
343    o pkg/seaice: fix restart problem for ITD with new ice strength parameterisation:
344      - move computation of opnWtrFrac = 1-AREA to before computing ice strength
345      - this changes the results (but not for any verification experiment, because
346        none tests this), but avoids having an extra field in the restart files
347    o pkg/seaice: remove global variable TICE (not needed)
348      - replace by TICES or local variable where necessary (cost_seaice_test,
349        seaice_diagnostics_state)
350      - move copying TICE to TICES from seaice_check_pickup to seaice_read_pickup
351      - use specific read/write routines for reading and writing individual leves
352        of a multilevel field
353    o pkg/ctrl & model/inc:
354      - move additional anomaly fields of control vars (related to options:
355         ALLOW_KAPGM_CONTROL, ALLOW_KAPREDI_CONTROL and ALLOW_BOTTOMDRAG_CONTROL)
356        from DYNVARS.h into new header file: CTRL_FIELDS.h
357    o pkg/seaice: some small modifications to the ridging code
358      - make fw2ObyRidge a global variable and add the freshwater flux to
359        seaice_growth
360      - pass actual thickness from seaice_prepare_ridging, so that it is
361        computed only in one place and compute it in the same way as in
362        seaice_growth
363      - initialise more fields in seaice_do_ridging that where cause floating
364        point exceptions over land
365    o pkg/seaice: preparations for ridging code and first real ridging code
366      - move most of "PART 1" of S/R seaice_growth into a new and separate
367        S/R seaice_reg_ridge that will both regularize the state variable after
368        advection call the actual ridging routine;
369      - requires to make 5 fields global fields: d_HEFFbyNEG,d_HSNWbyNEG,
370        d_AREAbyRLX,d_HEFFbyRLX,saltFluxAdjust;
371      - remove ridging code from seaice_advdiff
372      - clean up remaining part 1 of seaice_growth in an attempt to make it
373        more readable (this is probably subjective)
374      - call seaice_itd_redist once in the initialisation phase to have the initial
375        conditions in the correct category
376      - finally: add new ridging routine for ITD code
377    
378    checkpoint64v (2014/04/11)
379    o pkg/ecco:
380      - add runtime parameters mdt[start,end]date[1,2]
381      - rename variable "tpmean" as "mdt" and "topexmeanfile" as "mdtdatfile"
382    o pkg/seaice:
383      - make deltaC a global variable, so that it can be used in ridging code
384      - first step towards ridging: introduce new routines that compute
385        ice strength based on ridging parameters
386      - add diagnostic for HSNOWITD
387      - add opnWtrFrac as a global variable (required for ridging scheme)
388    o pkg/salt_plume + pkg/seaice/seaice_growth.F
389      - add SALT_PLUME_IN_LEADS flag to activate pkg/salt_plume only when ice
390        AREA exceeds a threshold (code contributed by I.Fenty in 2011)
391    o verification/hs94.1x64x5:
392      - leave ALLOW_AUTODIFF_TAMC undefined in code_oad/AUTODIFF_OPTIONS.h
393      - do not use ECCO_CPPOPTIONS.h anymore for TAF & OpenAD Adjoint tests.
394    o autodiff:
395      - Start to include explicitly AUTODIFF_OPTIONS.h, COST_OPTIONS.h,
396        and CTRL_OPTIONS.h in src files (to enable to skip the ECCO_CPPOPTIONS.h)
397        For now, only in pkgs used in verification/hs94.1x64x5.
398      - Replace ALLOW_AUTODIFF_TAMC by ALLOW_AUTODIFF (except for tape/storage
399        which are specific to TAF/TAMC).
400      - Replace ALLOW_AUTODIFF_OPENAD by ALLOW_OPENAD:
401        since ALLOW_OPENAD is defined in PACKAGES_CONFIG.h (any time pkg/openad
402        is compiled), this simplifies/reduces which *_OPTIONS.h file to include.
403      - OpenAD: change Makefile to generate the appropriate AD_CONFIG.h when
404        building mitgcmuv_ad (make adAll).
405    o pkg/ecco:
406      - cost_gencost_seaicev4.F:
407         reformulate proxy cost as function of sst and local param SEAICE_freeze
408         change cost names from siv4-[sst,vol] to siv4-[deconc,exconc]
409      - add stop statement if old names siv4-[sst,vol] are used
410      - add snapshots + cost reports for atmospheric longwave
411      - remove factor 0.1 in front of wtau[u,v]
412      - replace never used flag ALLOW_TMI_COST_CONTRIBUTION with
413         ALLOW_TMI_SST_COST_CONTRIBUTION
414    o pkg/atm_phys:
415      - add some diagnostics for Short-wave and for convection S/R.
416    o pkg/seaice/seaice_growth:
417      - fix a bug in the lateral melt parameterization for SEAICE_ITD
418        in seaice_growth; tempFrz needs to be computed inside the i/j-loop
419      - rearrange loop order for better vector code in the same code block
420      - rewrite the floeDiameter formula to have fewer divisions
421      -  (miraculously) none of this changes the results of seaice_itd
422    o pkg/smooth:
423      - move param smooth2Ddiffnbt to pkg/ecco
424    o pkg/salt_plume:
425      - salt_plume_frac.F:
426         clean up local param names
427         reformulate (1-frac) to frac; original 1-frac was based on swfrac code
428    o pkg/rw:
429      - add RS version of S/R READ_MFLDS_LEV.
430    o pkg/streamice:
431      - fix the restart test by writing/reading pickup_streamice files.
432    o pkg/seaice:
433      - refine checks for jfnk-related parameters
434      - comment out if statement with SEAICEuseIMEX parameter as long as there
435        is no IMEX code to avoid confusion and surprises
436    
437    checkpoint64u (2014/03/07)
438    o verification/MLAdjust:
439      - rename secondary test suffix:
440         1.leith  -> A4FlxF  + switch to flux-form & add side-drag
441         0.leithD -> AhFlxF  + switch to flux-form
442         0.smag   -> AhVrDv  (use Vorticity-Div. visc form) + add side-drag
443         0.leith  -> AhStTn  (use Strain-Tension visc form) + add side-drag
444    o pkg/mom_vecinv:
445      - remove unused arguments from S/R MOM_VI_HDISSIP & MOM_HDISSIP (as it used
446        to be before mom_calc_visc.F)
447      - skip the call to MOM_CALC_TENSION & MOM_CALC_STRAIN if not needed.
448      - add 2nd copy of vort3 & strain that knows about lateral BC (free/no slip):
449        this is simpler for the adjoint and for diagnostics.
450    o model/src + pkg/momentum:
451      - add input files for  2-D additional Western and Southern cell-edge wall
452         (e.g., to add "thin-wall" where it is =1).
453      - fix sideDrag option for thin-walls with Non-Lin Free-Surf
454        using 2nd hFacZ that is computed from initial (fix domain) hFac
455      - known limitations of thin wall implementation: not yet coded for sigma
456        coords; not working with CD-scheme neither.
457    o pkg/seaice:
458      - rename recently introduced parameters from (wrong name) AB to
459        BDF (backward difference time discretisation)
460      - retire runtime parameters SEAICEuseAB2, SEAICE_abEps
461    o tools/adjoint_options:
462      - remove setting of "OPENAD=true" (now set by command line "genmake2 -oad")
463    
464    checkpoint64t (2014/02/01)
465    o pkg/ecco
466      - add compile flag ALLOW_GENCOST_TIMEVARY_WEIGHT in ECCO_OPTIONS.h and
467        runtime logical flag gencost_timevaryweight to read daily sea-ice sigma
468      - replace hard-coded record number and period which only work for monthly
469        with read-in runtime param that works for other periods (month,day,year)
470    o pkg/thsice
471      - corrected store directive fixes thsice adjoint gradient checks
472    o genmake2 & testreport:
473      - add genmake2 option "-oad" to generate a Makefile for OpenAD built and
474        in this case, use tools/adjoint_options/adjoint_oad as default AD optfile.
475        Update testreport accordingly. No need to set "export OPENAD=true"
476        in adjoint_options/adjoint_oad anymore (will be removed later).
477    o pkg/shelfice:
478      - put T & S shelfice forcing into model surfaceForcing_T,_S (for now,
479        only if SHELFICEboundaryLayer=F); Change model/src/external_forcing.F
480        so that surface forcing applies to k=kSurf if using pkg/shelfice.
481    o pkg/ctrl, pkg/grdchk, pkg/ecco:
482      - Changes to make GENARR more modular (i.e. invisible if not used)
483    o model/src/temp_integrate.F and salt_integrate.F
484      - re-include store directives that were removed on Dec 27th.
485    o model/src/external_forcing_surf.F
486      - add storage directives for EmPmR and PmEpR to avoid recomputation of
487        seaice_model in the adjoint that is problematic when seaice_model is
488        turned off in the adjoint. The resolved issue dated back to July when
489        EXTERNAL_FORCING_SURF call was moved.
490        Update global_ocean.cs32x15/*/output_adm.seaice_dynmix.txt accordingly.
491    o pkg/exf/exf_check.F
492      - fix a small bug again (originally found by Wentao Liu, now found again)
493      - streamline error output
494    o pkg/streamice and aim_v23:
495      - replace a few "_EXCH_XY_RL (" with "_EXCH_XY_RL(", so that
496        Apple's /usr/bin/cpp knows what to do:
497        Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
498        Target: x86_64-apple-darwin13.0.0
499    
500  checkpoint64s (2014/01/05)  checkpoint64s (2014/01/05)
501  o tools/adjoint_options:  o tools/adjoint_options:
502    - switch to fastopt.net TAF server (instead of default fastopt.de) for    - switch to fastopt.net TAF server (instead of default fastopt.de) for
# Line 133  o verification: Line 626  o verification:
626  o pkg/cost:  o pkg/cost:
627    - define a "final cost function" for each tile, and use GLOBAL_SUM_TILE_RL    - define a "final cost function" for each tile, and use GLOBAL_SUM_TILE_RL
628      (instead of _GLOBAL_SUM_RL) to get the final cost from all procs & threads:      (instead of _GLOBAL_SUM_RL) to get the final cost from all procs & threads:
629      o this fixes global-sum value if multi-threads (since GLOBAL_SUM_TILE_RL      o this fixes global-sum value if multi-threads (since GLOBAL_SUM_RL
630        cannot be applied to var in common block).        cannot be applied to var in common block).
631      o allows to get results independent of tile-per-proc setting (if using      o allows to get results independent of tile-per-proc setting (if using
632        slower GLOBAL_SUM_SEND_RECV option).        slower GLOBAL_SUM_SEND_RECV option).

Legend:
Removed from v.1.1954  
changed lines
  Added in v.1.2044

  ViewVC Help
Powered by ViewVC 1.1.22