/[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.2008 by jmc, Fri Jun 20 13:13:37 2014 UTC revision 1.2071 by gforget, Wed Sep 24 20:54:02 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/atm_phys:
8      - implement simple (obliquity only, assuming circular planet orbit)
9        seasonal cycle for incoming insolation ; used when run-time parameter
10        "select_incSW" is set to 1 ; by default (=0), uses old unchanged formula.
11    o pkg/exf, pkg/ecco, pkg/ctrl:
12        - add ctrlUseGen and .NOT.ctrlUseGen exclusive brackets
13        - activate gentim2d for xx_atemp,xx_aqh,xx_swdown,xx_lwdown,xx_precip
14        - implement gentim2d for xx_tauu, xx_tauv
15    o pkg/ctrl, pkg/ecco :
16        - fix and complement the generic controls implementation
17    o pkg/exf/exf_getclim.F, exf_getffields.F, exf_getsurfacefluxes.F,
18        pkg/shelfice/shelfice_thermodynamics.F,
19        verification/hs94.1x64x5/code_ad/ctrl_map_gentim2d.F,
20        verification/hs94.1x64x5/code_oad/ctrl_map_gentim2d.F :
21      - add weight in CTRL_GET_GEN calls
22    o pkg/ctrl :
23      - ctrl_get_gen.F : add weight as input parameter, and apply
24        it directly rather than using smooth_correl2Dw (to be retired).
25      - ctrl_map_gentim2d.F : add wgentim2d in CTRL_GET_GEN call
26    o pkg/ctrl :
27      - introduce run time switch ctrlUseGen (in ctrl.h, ctrl_check.F,
28        ctrl_init_variables.F, ctrl_readparms.F, ctrl_summary.F)
29      - re-activate ctrl_summary (call in ctrl_init.F)
30    o pkg/ctrl/ctrl_cost_gen.F :
31      - fix CCP brackets, remove un-necessary myiter, mytime
32    o pkg/ecco, pkg/ctrl :
33      - remove cost_genctrl.F (now pkg/ctrl/ctrl_cost_driver.F)
34      - remove cost_forcing_gen.F (now pkg/ctrl/ctrl_cost_gen2d.F)
35      - add ctrl_cost_driver.F (replaces pkg/ecco/cost_genctrl.F)
36      - add ctrl_cost_gen2d.F (replaces pkg/ecco/cost_forcing_gen.F)
37    
38    checkpoint65d (2014/09/15)
39    o pkg/ctrl/CTRL_GENARR.h, ctrl_readparms.F :
40      - add xx_genarr2d_bounds,xx_genarr3d_bounds,
41        xx_genarr2d_numsmooth, xx_genarr3d_numsmooth
42    o pkg/ctrl/ctrl_map_ini_genarr.F :
43      - remove compilation failure
44      - replace hard coded example
45      - use ctrl_map_ini_gen2D, 3D
46    o pkg/ctrl/ctrl_pack.F, ctrl_unpack.F :
47      - on/off switch based upon xx_genarr2d_weight,3d
48    o src/packages_init_variables.F :
49      - regroup pkg/estimation calls
50      - remove CTRL_MAP_INI, CTRL_MAP_INI_ECCO
51        (moved to ctrl_init_variables)
52    o cost/cost_init_varia.F :
53      - remove ecco_cost_init_varia
54        (moved to ecco_init_varia)
55    o ctrl/ctrl_init_variables.F :
56      - add CTRL_MAP_INI, CTRL_MAP_INI_ECCO
57      - add CTRL_MAP_INI_GENARR, SEAICE_CTRL_MAP_INI
58    o ctrl/ctrl_map_ini.F :
59      - remove ctrl_map_ini_genarr, seaice_ctrl_map_ini
60        (moved to ctrl_init_variables)
61    o ctrl/ctrl_map_ini_ecco.F :
62      - remove ECCO_PHYS (mv to ecco_init_varia)
63      - remove seaice_ctrl_map_ini (mv to ctrl_init_variables)
64    o ecco/ecco_ad_diff.list :
65      - add ecco_init_varia.f
66    o ecco/ecco_init_varia.F
67      - new routine
68    o pkg/streamice:
69      - move call to STREAMICE_INITIALIZE_PETSC from the_model_main.F
70        to streamice_init_fixed.F ; fix setting of STREAMICEisOn.
71      - from model/src, only call pkg/streamice routines if useStreamIce is TRUE.
72    o pkg/generic_advdiff:
73      - fix bug causing negatives in GAD_SMOLARKIEWICZ_HACK, introduced 8/8/2014.
74    o pkg/exf:
75      - exf_getffields.F : add xxg_atemp, xxg_aqh, xxg_swdown, xxg_lwdown,
76         xxg_precip capability
77      - exf_wind.F : no need for ALLOW_WSPEED_CONTROL cpp switch
78    o pkg/ctrl:
79      - ctrl_pack.F, ctrl_unpack.F : omit (un)packing of undefined xx_gentim2d
80    o model/src/load_fields_driver.F :
81      - move call to CTRL_MAP_GENTIM2D ahead of BULKF_FIELDS_LOAD, EXF_GETFORCING
82        so xx_gentim2d can be applied to e.g. exf fields in a timely manner.
83    o OpenAD verification experiments:
84      - Include explicitly AUTODIFF_OPTIONS.h, COST_OPTIONS.h, and CTRL_OPTIONS.h
85        in src files (to enable to skip the ECCO_CPPOPTIONS.h);
86        for now, only in pkgs used in OpenAD verification experiments.
87      - Change all except one (halfpipe_streamice) OpenAD experiments to use pkg
88        specific option file (AUTODIFF_OPTIONS.h, COST_OPTIONS.h & CTRL_OPTIONS.h)
89        instead of using ECCO_CPPOPTIONS.h (with all relevant options in it).
90        This applies to both TAF (*/code_ad/) and OpenAD (*/code_oad/) tests.
91    o OpenAD verification tests:
92      - finish removing ALLOW_AUTODIFF_OPENAD (replaced by ALLOW_OPENAD);
93      - finish replacing ALLOW_AUTODIFF_TAMC by ALLOW_AUTODIFF (except for
94        tape/storage which are specific to TAF/TAMC) in pkgs used in OpenAD exp.
95      - leave ALLOW_AUTODIFF_TAMC undef in OpenAD verification tests (*/code_oad/)
96        and remove local copy of "tamc.h" (needed only if ALLOW_AUTODIFF_TAMC).
97    o model/src & generic_advdiff:
98      - change hard-coded loop-range in S/R APPLY_FORCING_T/S to set T & S
99        forcing over 0:sNx+1, 0:sNy=1 (instead of just 1:sNx,1:sNy): Model
100        dynamics requires valid tracer forcing only over tile interior but, for
101        some diagnostics, may need to extend it over 1 point in tile halo region.
102      - in gad_calc_rhs.F, update calls to gmredi_x/ytransport to get valid
103        tendency over i,j_Min,Max range. This allows to simplfy i,j_Min,Max
104        setting in temp/salt/ptracer_integrate.F
105    o pkg/dic:
106      - multiply tracer tendencies by maskInC (if ussing OBCS) before updating
107        gchem tracers: this allows to skip the 2nd call to OBCS_APPLY_PTRACER
108        in gchem_forcing_sep.F
109    o pkg/autodiff & obcs:
110      - add storage of current OB values for U & V (was already done for T & S).
111    
112    checkpoint65c (2014/08/30)
113    o pkg/dic:
114      - take out of dic_atmos.F the initialisation part (corresponding to istate=0)
115        and move it to new S/R DIC_INI_ATMOS ; also simplify the dependencies for
116        AD compilers (but still a Pb with multi-threading and Ajoint dependencies).
117    o verification:
118      - new experiment testing OBCS and DIC pkgs, using params & output from
119        tutorial_global_oce_biogeo but limited to a sub-domain around Drake
120        passage: take OBCS from the last year of a 2 yrs simulation and initial
121        conditions from t=1.yr while keeping the same forcing.
122    o model/src:
123      - when allowFreezing=T, only reset below freezing initial Temp to Tfreezing
124        (at any k) if checkIniTemp is not set to FALSE (default checkIniTemp=T).
125    o pkg/diagnostics (Stats-Diags):
126      - re-write S/R DIAGSTATS_CALC (more similar to TARGET_NEC_SX part) to:
127        a) refine region where stats are computed, excluding where arrhFac=0 ;
128        b) fix missing interior mask (use with OBCS) in 3-D fields statistics;
129        c) extend regional stats over the region edges (for U or V pt location).
130    o pkg/gchem:
131      - add a (2nd) call to OBCS_APPLY_PTRACER in gchem_forcing_sep.F (needed since
132        pkg/dic is currently changing/updating ptracers values beyond the OB).
133    o verification (hs94):
134      - convert Held & Suarez external_forcing.F (from hs94.cs, with Sigma-coords
135        bits) to apply_forcing.F and undef USE_OLD_EXTERNAL_FORCING in experiments
136        hs94.cs-32x32x5 and tutorial_held_suarez_cs ; also use the same version of
137        apply_forcing.F in 2D hs94 (fwd, ad & oad) but keep LatLon hs94 unchanged.
138    o pkg/ptracers:
139      - implement Adams-Bashforth on pTracers (instead of on tracer tendency),
140        switched on by setting PTRACERS_doAB_onGpTr=F (default set to doAB_onGtGs)
141      - change exp4 secondary test (input.nlfs) to test AB on T & S & pTracer
142        with AB-2 code (so that it get tested).
143    o model/src:
144      - allow to apply Adams-Bashforth on Temp & Salt (instead of on gT,gS)
145        with AB-2 code (previously only available with AB-3 code).
146        Also move the code (call to ADAMS_BASHFORTH S/R) form thermodynamics.F
147        to temp/salt_integrate.F (since the 2nd part of gt/sNm1 update is done
148        there, by calling CYCLE_AB_TRACER).
149    o pkg/generic_advdiff:
150      - change Tracer argument (drop bi,bj indices) in S/R GAD_CALC_RHS,
151        GAD_C2_ADV_R, GAD_U3_ADV_R, GAD_C4_ADV_R, GAD_DIFF_R, GAD_BIHARM_R
152        + also in GMREDI_X/Y/RTRANSPORT ; and update corresponding calls in
153        S/R temp/salt/ptracers_integrate.F
154    o model/src & pkg/ptracers:
155      - remove common block variables gT,gS (in DYNVARS.h), except when
156         USE_OLD_EXTERNAL_FORCING is defined; update TAF storage accordingly.
157      - remove common block variable gPtr.
158    o model/src & pkgs:
159      - change gTracer (and/or tracer) argument (drop bi,bj indices) in S/R
160         ADAMS_BASHFORTH(2&3), CYCLE_(AB_)TRACER, FREESURF_RESCALE_G,
161         IMPLDIFF, SOLVE_TRIDIAGONAL & _PENTADIAGONAL, GAD_SOM_ADVECT,
162         GAD_ADVECTION, GAD_CALC_RHS, GAD_IMPLICIT_R, TIMEAVE_CUMUL_DIF_1T
163      + change accordingly all calling S/R.
164      - use local temperature/salinity/ptracer tendency array (without bi,bj)
165        in S/R temp/salt/ptracers_integrate.F
166    o pkg/seaice:
167      - move computation of stress contributions to rhsU/V in s/r seaice_lsr
168        to separate s/r seaice_lsr_rhsu/v in order to be able to re-use code
169      - make u/vIceC local variables if SEAICE_CGRID is defined only to be used
170        in seaice_lsr
171      - seaice_lsr.F: make local 4D arrays UXX, VYY, etc 2D
172        in s/r seaice_lsr_calc_coeffs
173    o pkg/mdsio:
174      - in MDS_READ/WRITE_FIELD, stop if file-name (+prefix) is too long
175        (e.g., > MAX_LEN_MBUF -90 ) or, in INI_MODEL_IO, if mdsioLocalDir is
176        too long (e.g., > MAX_LEN_FNAM/2 )
177    
178    checkpoint65b (2014/08/12)
179    o pkg/matrix:
180      - pass, as argument, updated tracer field to S/R MATRIX_STORE_TENDENCY_EXP
181    o model/src:
182      - fix initialisation of geothermalFile; compile geothermal-flux code in
183        natl_box verification experiment.
184    o model/src & pkg/down_slope:
185      - push the k loop inside S/R TIMESTEP_TRACER (now called outside the k loop).
186      - in dwnslp_apply.F, update tracer tendency instead of the future tracer
187        field and call S/R DWNSLP_APPLY before TIMESTEP_TRACER; this affects
188        results at machine truncation level: update output of experiments
189        global_ocean.90x40x15.dwnslp (FWD) and lab_sea.noseaicedyn (AD).
190    o pkg/diagnostics (Stats-Diags):
191      - do not cumulate the full volume when DIAGNOSTICS_FILL is
192        called with bibjFlg < 0 (no increment of the counter for 2D/3D diag);
193        This fix the mean statistics when DIAGNOSTICS_FILL is called multiple
194        times (but Min,Max and StD are still wrong).
195    o model/src:
196      - add geothermal flux forcing: read in ini_forcing.F as time-constant
197        field "geothermalFlux" applied in S/R APPLY_FORCING_T (apply_forcing.F)
198    o model/src:
199      - move CYCLE_TRACER calls from tracers_correction_step.F to temp/salt/ptracer
200        _integrate.F so that, when leaving S/R THERMODYANMICS, theta,salt and pTrac
201        arrays are already updated while adjustments (filters, conv.adjustment) are
202        still applied later, in S/R TRACERS_CORRECTION_STEP.
203    o model/src:
204      - store in common bloc array "rhoInSitu" the virtual potential temperature
205        anomaly that is used to compute geopotential: this make the atmos code
206        more similar to ocean code which already uses rhoInSitu in calc_phi_hyd.F
207    o pkg/seaice/seaice_lsr.F
208      - rename integer variable ilcall to ipass (that's what it is called
209        in the residual diagnostics
210      - change time stepping for NPSEUDOTIMESTEP > 2 (does not change the
211        default) for improved non-linear convergence of the first few steps
212      - adjust a few comments and add new ones to explain some of the store
213        directives
214    o pkg/generic_advdiff (& ptracers):
215      - re-work the code to check for valid advection scheme and for minimum
216        size of overlap (now stored in local common bloc in gad_advscheme.F)
217    o pkg/seaice: another attempt to make the adjoint work for sea ice dynamics
218      - re-initialize more variables in seaice_lsr: u/vIceC, u/vIceNm1
219      - add an auxilliary variable "bet" and fix store directives and keys in
220        seaice_lsr_tridiagu/v, this seems to do the trick (i.e. more or
221        less exact gradients in my tests); but there are still
222        recomputation warning (although gradients are sort of OK), when
223        SEAICE_LSR_VECTORIZE is not defined, so this flag and
224        SEAICE_LSR_VECTORIZE_ZEBRA are recommended for efficiency.
225      - update verification experiments lab_sea.
226      - change some comments in S/R seaice_calc_viscosities
227    o model/src:
228      - if staggerTimeStep=T, always apply exchange to velocity field in
229        do_stagger_fields_exchanges.F instead of in do_fields_blocking_exchanges.F
230        (independent of using multi-dim advection or not); no effect on FWD run
231        but affects AD results (at machine truncation level): update output of
232        experiment 1D_ocean_ice_column (ad: 12 digits), hs94.1x64x5 (ad,oad: 13.d)
233        and isomip (oad: 12.d).
234    o pkg/generic_advdiff:
235      - stop if doAB_onGtGs is set to FALSE but ignored
236      - refine warning related to stability of tracer time-stepping
237        regarding internal wave dynamics.
238      - setting of AdamsBashforth_T,S when doAB_onGtGs=F: remove condition
239        on staggerTimeStep & implicitIntGravWave (will now get a warning
240        if potentially unstable).
241    o pkg/kl10:
242      - add new pkg "kl10" for mixing due to internal wave breaking, from
243        http://www.sciencedirect.com/science/article/pii/S1463500310000144
244        (contribution from Jody Klymak), tested in verification experiment
245        verification/internal_wave/input.kl10/
246    o isomip experiment:
247      - test pkg/shelfice with Non-Lin Free-Surf in one of the FWD set-up
248        (input.htd) and update the output.
249    o cd_code experiments:
250      - use default cd_code options (#undef CD_CODE_NO_AB_MOMENTUM &
251        #undef CD_CODE_NO_AB_CORIOLIS) in experiments: cfc_example (fwd)
252        global_ocean.90x40x15 (ad & oad) and OpenAD (ad & oad) and
253        update the corresponding output.
254    o pkg/seaice:
255      - reduce the number of include files and store directives in
256        S/R seaice_lsr_tridiagu/v
257      - change the order of loops in one case in S/R seaice_lsr_tridiagv
258        (only for SEAICE_VECTORIZE_LSR_ZEBRA defined), which allows me to
259        get rid off one store directive (a TAF bug?)
260      - add one more instance of ifdef SEAICE_VECTORIZE_LSR_ZEBRA in
261        S/R seaice_lsr_tridiagv to change the loop range for consistency
262      - remove ilcall, m from parameter list of S/R seaice_lsr_tridiagu/v
263      - fix a bug that affects the JFNK solver: replace sNx/y by i/jMax in
264        S/R seaice_lsr_tridiagu/v (requires update of
265        offline_exf_seaice/input.dyn_jfnk)
266    
267    checkpoint65a (2014/07/27)
268    o model/src:
269      - Non-Lin Free-Surf in p/z coords: allows hFacW,S to be larger than
270        surrounding hFacC=1 @ edge of a step with different kSurfC on either side
271        (topo in p-coords, ice-shelf in z-coords); update output of experiments
272        tutorial_global_oce_in_p and isomip (both AD and OpenAD output).
273    o model/src:
274      - collect momentum forcing tendency into local 2-D array (passed as argument
275        to apply_forcing S/R); this simplifies mom. Forcing diagnostics and CD_CODE
276        parts in timestep.F (without CD_CODE_NO_AB_MOMENTUM defined = the default);
277        affects results at machine truncation level (e.g., if using OBCS_SPONGE).
278      - collect T & S forcing tendency into local 2-D array (passed as argument to
279        apply_forcing S/R); add 3-D diagnostics for temp & salt forcing tendency.
280        affects results at machine truncation level (e.g., ocean: if using
281        SHORTWAVE_HEATING ; atmos: if using FrictionHeating or (atm_Rq<>0) moist
282        correction due to vertical advection).
283      - update output of experiments: fizhi-cs-32x32x40 (13 digits),
284        global_ocean.cs32x15 (fwd: icedyn, seaice, thsice, all 3 @ 11d; adm & tml:
285        seaice_dynmix & thsice, fwd grd @ 3 & 8), hs94.1x64x5 (ad grd @ 13),
286        obcs_ctrl (ad & fwd grd @ 12 & 7).
287    o pkg/ptracers & diagnostics:
288      - use ptracers (short) name (instead of long one) to make ptracers diagnostics
289        title (to avoid some unexpected truncation); sort out ptracers diags units.
290      - collect ptracer forcing tendency into local 2-D array (passed as argument
291        to apply_forcing S/R); add 3-D diagnostics for ptracers forcing tendency.
292    
293    checkpoint65 (2014/07/18)
294    o pkg/fizhi:
295      - add parenthesis around fizhi tendencies in fizhi_tendency_apply.F: this
296        affects results at machine truncation level. Update output of experiments
297        fizhi-cs-32x32x40 (12 digits for cg2d) & fizhi-cs-aqualev20 (13 digits).
298    o pkg/seaice: more clean up
299      - rename TAF common block tapes to be more consistent and remove
300        unnecessary duplicates
301      - add store directives to remove more recomputations, but use smaller
302        tapes (and adjust keys) when SEAICE_LSR_ADJOINT_ITER is undefined.
303        The idea behind this flag is to reduce the memory footprint when the
304        adjoint of the LSR is not required. As of now, defining the flag
305        SEAICE_LSR_ADJOINT_ITER increases 4 common block tapes for 2D field by
306        a factor of SOLV_MAX_FIXED (=500 by default in SEAICE_SIZE.h).
307        For experiment offline_exf_seaice, this means on a linux box with gfortran
308        nearly a factor of 10 (but keep in mind there is mostly seaice code in
309        this experiment):
310        > size mitgcmuv_ad
311        text    data        bss     dec        hex  
312        5100659 1216  220458952  225560827  d71c8fb
313        5339425 1200 1868783272 1874123897 6fb4dc79 (SEAICE_LSR_ADJOINT_ITER)
314        but only a moderate increase of 36% for global_ocean.cs32x15:
315        text    data        bss     dec        hex
316        6695027 1648 1014578664 1021275339 3cdf6ccb
317        6695203 1648 1382505320 1389202171 52cd8afb (SEAICE_LSR_ADJOINT_ITER)
318      - note: there are still recomputations in global_ocean.cs32x15 and
319        offline_exf_seaice and the gradient agreement changes (gets a
320        little worse) for global_ocean.cs32x15 (-> update output_adm.seaice.txt)
321      - in general, the AD gradients still are wrong
322    o OpenAD
323      - clean up code_oad/ directories somewhat by moving files
324        dontCompile, dontTransform, keepOriginal to OAD_support/
325    o model/src:
326      - using MOM fluxform and Non-Lin Free-Surf with momDissip_In_AB=F
327        (not currently tested): add dissipation terms before NLFS rescaling of
328        tendencies (previously done after).
329    o pkg/diagnostics:
330      - write stats-diags in ascii file with more digits (same as in monitor).
331    o pkg/down_slope:
332      - drop the bi,bj dimension of argument recip_hFac in S/R DWNSLP_APPLY; with
333        NLFS (not tested), use new recip_hFac value in order to conserve tracer.
334    o model/src:
335      - new file "apply_forcing.F" containing all the code previously in
336        external_forcing.F, but with new argument list: pass, as new argument,
337        the current level tendency array to update (instead of a direct update
338        of the common bloc array). Change the corresponding calls.
339      - add CPP option USE_OLD_EXTERNAL_FORCING (default is undef) to use
340        EXTERNAL_FORCING_U,V,T,S subroutines (for backward compatibility).
341    o pkg/seaice/seaice_lsr, a little bit of clean up
342      - rearrange some code blocks, so that now all calculations for
343        setting up the right-hand-sides done within one single block
344        (I find that easier to read and understand)
345      - rearrange freedrift-code to reduce the number of ifdefs
346      - adjust some indentations and comments
347    
348    checkpoint64z (2014/07/10)
349    o model/src and several pkgs:
350      - change argument list of all S/R called from external_forcing.F and
351        called from ptracers_forcing.F (renamed to ptracers_apply_forcing.F)
352        to pass, as argument, the current level tendency array to update
353        (instead of a direct update of the common bloc array).
354      - change also (in the same way) argument list of PTRACERS_APPLY_FORCING;
355      - rename taueddy_external_forcing.f to taueddy_tendency_apply.F
356    o pkg/seaice/seaice_lsr.F
357      - always initialize local arrays in seaice_lsr_tridiagu/v
358      - add more local tapes to seaice_lsr_tridiagu/v
359      - move storing u/vice(:,:,bi,bj) out of seaice_lsr_tridiagu/v, but
360        keep it in bi/bj loop; this seems to be essential
361      - gradients are still wrong but only by 4-7 orders of magnitude
362        instead of 15 orders of magnitude, lab_sea improves a little
363    o pkg/seaice
364      - (pkg/autodiff) remove storing/restoring of seaiceMaskU/V that
365        generates unnecessary code in seaice_lsr_ad
366      - add more store directives in seaice_lsr to avoid unnecessary code
367        in seaice_lsr_ad
368      - exclude some residual computations in seaice_lsr when
369        ALLOW_AUTODIFF_TAMC is defined in order to avoid unnecessary code
370        in seaice_lsr_ad
371      - add more storing, a new tape (model/src/the_main_loop.F) and
372        another key for SEAICE_LSR_VECTORIZE_ZEBRA (the local keys ilockey
373        and klockey should be checked by a specialist)
374      - modify ( define SEAICE_VECTORIZE_LSR and SEAICE_LSR_ADJOINT_ITER )
375        and update lab_sea after previous changes in pkg/seaice below
376    o pkg/autodiff:
377      - introduce useSmoothCorrel2DinAdMode, SEAICEapproxLevInAd, and
378        viscFacInAd : run time parameters allowing for adjoint switches
379        note : logic for useSmoothCorrel2DinAdMode is in ctrl_readparms.F
380    o pkg/ecco:
381      - introduce cost_gencost_boxmean.F that computes a box mean
382        temperature (for use in adjoint sensitivity studies).
383    o model/src/set_defaults.F : initialize viscFacAdj to 1.
384    o pkg/mom_common/mom_calc_visc.F:
385      - ifdef ALLOW_AUTODIFF then include viscFacAdj factor.
386    o pkg/seaice/seaice_summary.F:
387      - statement for SEAICEadjMODE now in autodiff_readparms.F
388    o pkg/seaice:
389      - remove some store directives and add new ones in an effort to get
390        finally rid off the recomputation warnings. This is successful
391        when SEAICE_VECTORIZE_LSR ***and*** SEAICE_LSR_ADJOINT_ITER are
392        defined (i.e. no extensive recomputation warnings left), but there
393        are still too many recomputations on the solver iteration level
394      - define SEAICE_VECTORISZE_LSR in offline_exf_seaice/code_ad/SEAICE_OPTIONS.h
395      - move definition of MPSEUDOTIMESTEPS into TAMC-block in
396        SEAICE_SIZE.h
397      - add a store directive in S/R seaice_calc_viscosities
398    o pkg/seaice (ITD code):
399      - fix definition of Hlimit for multi-threaded case
400      - use double precision arithmetic to compute Hlimit: this affects results;
401        update output of experiment seaice_itd.
402    o replace content of verification/seaice_itd
403      - instead of a 1D column use the configuration of offline_exf_seaice
404        to test the ice thickness distribution code with ridging
405      - this is a first shot at this experiment
406      - change of some defaults of ridging parameters SEAICEhStar (from
407        100 to 25) and SEAICEmuRidging (from 5 to 3) in seaice_readparms.F
408        and lot of new comments.
409    
410  checkpoint64y (2014/06/20)  checkpoint64y (2014/06/20)
411  o pkg/seaice/seaice_reg_ridge.F:  o pkg/seaice/seaice_reg_ridge.F:
412    - modify the regularization of very small volumes of ice; only check    - modify the regularization of very small volumes of ice; only check

Legend:
Removed from v.1.2008  
changed lines
  Added in v.1.2071

  ViewVC Help
Powered by ViewVC 1.1.22