/[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.2085 by gforget, Tue Oct 21 14:22:26 2014 UTC revision 1.2177 by mlosch, Fri Sep 4 08:08:41 2015 UTC
# Line 4  $Name$ Line 4  $Name$
4      Notes on tags used in MITgcmUV      Notes on tags used in MITgcmUV
5      ==============================      ==============================
6    
7  o global_oce_llc90,cs32 : ecco_v4 verification exps now use separate  o pkg/seaice: revise EVP code (seaice_evp.F) in preparation for a more
8    AUTODIFF_OPTIONS.h, CTRL_OPTIONS.h, ECCO_OPTIONS.h rather than      efficient EVP method.
9    ECCO_CPPOPTIONS.h (i.e. replacing the deprecated, circumvoluted,    - introduce area-weighted averages for e12 (analogously to
10    approach where CPP_OPTIONS.h includes an omnipotent      seaice_calc_viscosities.F); this totally changes lab_sea.hb87 (2 digits
11    ECCO_CPPOPTIONS.h that superseeds pkgs '_OPTIONS.h').      remain, but also changing the order of terms in the previous average
12  o pkg/ctrl/ctrl_map_ini_genarr.F : include GMREDI_OPTIONS.h where      changed the results as much) -> update experiment
13    ALLOW_3D_KAPGM, ALLOW_3D_KAPREDI (to be added later) belong.    - add SEAICE_DELTA_SMOOTHREG code
14      - disentangle computation of zetaC/deltaC and zetaZ/deltaZ, also for
15        TEM-code
16      - adjust loop bounds so that only required fields are computed
17      - add new averaging code for zetaZ/deltaZ (again similar to
18        seaice_calc_viscosities.F), inactive by default for now (will change
19        results again), but will replace old code eventually
20    o eesupp/src:
21      - add an other alternative for multi-proc GLOBAL_SUM (in global_sum_tile.F)
22        to always cumulate tile local-sum in the same order
23        (option #define GLOBAL_SUM_ORDER_TILES in CPP_EEOPTIONS.h).
24        Still uses MPI_Allreduce (like standard code) but on array of tiles
25        and should be faster than GLOBAL_SUM_SEND_RECV code.
26      - switch almost all verification experiments that use GLOBAL_SUM_SEND_RECV
27        (defined in CPP_EEOPTIONS.h_mpi) to GLOBAL_SUM_ORDER_TILES instead.
28      - add CPP_EEOPTIONS.h_mpi with GLOBAL_SUM_ORDER_TILES defined in 13 more exp.:
29         aim.5l_cs, cheapAML_box, deep_anelastic, dome, fizhi-cs-32x32x40,
30         fizhi-cs-aqualev20, global_ocean_ebm, matrix_example, natl_box,
31         solid-body.cs-32x32x1, tutorial_advection_in_gyre, tutorial_baroclinic_gyre
32         and tutorial_held_suarez_cs.
33    
34    checkpoint65n (2015/07/29)
35    o pkg/thsice:
36      - add a warning when used with pkg/aim but without updating SST
37        (stepFwd_oceMxL=F & useCoupler=F & tauRelax_MxL<>-1 ).
38    o pkg/offline:
39      - change where Offline-Fields are loaded, from load_fields_driver.F to
40        directly within FORWARD_STEP, just after updating iter number and time;
41      - move setting of GM and KPP diffusivity out of OFFLINE_FIELDS_LOAD into new
42        S/R OFFLINE_GET_DIFFUS that is called towards the end of DO_OCEANIC_PHYS;
43       These changes allow:
44        a) to recover exactly on-line results using deltaToffline=deltaTClock,
45        tested (using offlineIter0= nIter0 -1 and offlineTimeOffset= -deltaT/2)
46        both with Lin & Non-Lin Free-Surf, both with staggerTimeStep & synchronous
47        time-step, both with GM & KPP files and with recomputing these fields;
48        b) no needs to switch on staggerTimeStep anymore;
49        c) simplify rescaling of offline horiz. velocity with Non-Lin Free-Surf.
50      - update output of experiment tutorial_dic_adjoffline (only 3 digits left).
51    o pkg/offline:
52      - change (rarely used) offset-iteration parameter to an offset time (in s):
53        can easily recover previous offset-iter effect by setting offset-time
54        (offlineTimeOffset) to offset-iter x deltaToffline;
55      - do not turn-off Temp & Salinity surface relaxation when using KPP (used
56        in KPP as part of surface buoyancy forcing) in offline run.
57      - fix ptracers KPP non-local term in the case where KPP is re-computed.
58    o OpenAD
59      - Adding preliminary ggl90 test to OpenAD verification.
60        Config. with ggl90 currently diverges after 64 time steps
61        so will need more work to become more stable
62      - Adding preliminary kpp test to OpenAD verification.
63        required small tweakes in kpp_routines.F
64      - Merge and update from Krishna Narayanan's contrib area:
65        * Add one variable for preliminary OpenAD DIVA
66        * Add replacement time-stepping for OpenAD DIVA
67        * genmake2 flag -diva (but only for OpenAD; preliminary)
68        * required modifs for OAD_support
69        successful preliminary test for tutorial_global_oce_biogeo/
70    o pkg/seaice:
71      - initialise deltaC in seaice_lsr, cosmetic changes in seaice_lsr
72      - add cpp-flag SEAICE_DELTA_SMOOTHREG for option of regularising
73        delta with a smooth function in s/r seaice_calc_viscosity
74        (no effect on EVP)
75      - rename local suffix "sqr" into "sq" for more consistent variable names
76    o pkg/seaice:
77        add new parameter SEAICE_deltaMin that is used ***only***
78        for regularizing Delta (and nothing else, like the parameter
79        which is also used for all sorts of things SEAICE_EPS).
80        Defaults to SEAICE_EPS for backward compatibility only.
81    o pkg/seaice: replace erroneously storing e12Csqr on the wrong tape with
82        the wrong key by inialising it before use -> fixes a recomputation
83        problem but does not fix the gradient
84    o pkg/layers:
85      - move resetting of flux arrays to outside the iLa loop
86        (this caused layers_diapycnal to not work with more than one layer coord.)
87      - fix bug in calculation of layers_recip_delta in layers_init_fixed.F
88    o pkg/layers:
89      - remove from common block 3D layers fields (used to diagnose transport
90        in tracer coords) and declare them as local arrays in layers_calc.F
91    o pkg/seaice:
92      - Rename SEAICE_VECTORIZE_LSR_ZEBRA to SEAICE_LSR_ZEBRA and define it
93        in lab_sea forward experiment (changes results -> updated)
94      - update adjoint experiment lab_sea after cleaning up seaice_lsr_tridiagu/v
95    o pkg/seaice: modify seaice_lsr.F in order to improve the gradient
96       computations; for SEAICE_VECTORIZE_LSR
97      - move the loops over which the tridiagonal solvers (seaice_lsr_tridiagu/v)
98        sweep to the outside,
99      - remove store directives and add "CADJ loop sequential" directives
100        in analogy to model/src/solve_tridiagonal.F
101      - replace many "#ifdef SEAICE_VECTORIZE_LSR_ZEBRA" by variable loop
102        boundaries to yield more readable code. This has also the charming side
103        effect that your can use SEAICE_VECTORIZE_LSR_ZEBRA without
104        SEAICE_VECTORIZE_LSR (i.e. adjoint without recomputations in
105        seaice_lsr_tridiagu/v now requires either of these flags, vectorization
106        still requires SEAICE_VECTORIZE_LSR with SEAICE_VECTORIZE_LSR_ZEBRA as
107        an additional option)
108       The tridiagonal solvers are now completely analoguous to solve_tridiagonal.F
109       but the adjoint gradients (which are affected by this change) still explode.
110    o coupler (atm & ocn _compon_interf):
111      - avoid using Exch2 IO mapping if not suitable.
112    
113    checkpoint65m (2015/06/15)
114    o pkg/layers:
115      - clean-up old parameters setting (from Sep 2012):
116        + remove old parameters setting from common block (declared locally);
117        + stop if any old parameter is mixed with new parameters;
118        + check for valid or consistent parameter setting (e.g., layers_name)
119      - check that layers_bounds for Pot.Density are in the right range;
120        this is supposed to catch un-updated setting after recently shifting
121        potential density field "prho" by -1000 (now in "sigma" scale).
122    o pkg/layers:
123      - Added missing call to layers_fill for keeping track of tottend in
124        pkg/diagnostics/diagnostics_fill_state.F
125    o pkg/layers:
126      - added CPP flux LAYERS_FINEGRID_DIAPYCNAL to disable fine-grid binning
127        of diapycnal fluxes
128    o pkg/layers:
129      - reverted changes to interpolation to previous treatment; there
130        was never actually a problem
131    o pkg/layers:
132      - fix interpolation of layers tracers in the presence of partial cells
133      - add lots of new functionality to compute water mass transformation
134        (enabled by CPP flag LAYERS_THERMODYNAMICS)
135      - add new calls from main code (diags_oceanic_surf_flux.F,
136        thermodynamics.F, impldiff.F) and gad to save the necessary fields
137        for layers_thermodynamics calculations
138    o pkg/ptracers:
139      - add capability of stepping a passive tracer forward without advection
140        by setting PTRACERS_advScheme to 0.
141    o pkg/diagnostics:
142      - add few (threads) _BARRIER around any update of "diag_pkgStatus".
143    o pkg/layers:
144      - shift potential density field "prho" by -1000 for density layer averaging so
145        that it corresponds to usual "sigma" definition (i.e., rho(p=const)-1000);
146        Note that density bin boundaries (layers_bounds in data.layers) have
147        to be set accordingly (i.e., shifted, in sigma scale).
148    o pkg/layers:
149      - fix snap-shot output of layer thickness @ V.pt and output of pot.density
150      - fix calculation of layer non-weighted velocity and layer probability
151      - add diagnostics for pot.density used for layer averaging
152    o pkg/seaice:
153      - seaice_calc_viscosity.F: change computation of deltaC**2 to ensure
154        positiveness, modify a few comments and improve variable names,
155      - the changed computation of deltaC affects most seaice-related
156        experiments at the truncation level.
157        seaice_itd.thermo is affected by far the most, with
158        only 7 digits of agreement remaining; update experiments.
159    
160    checkpoint65l (2015/05/04)
161    o pkg/shelfice:
162      - in shelfice_thermodynamics.F, if SHELFICEBoundaryLayer=.true., then set
163        factor drKp1 to zero where it is negative (ie. do not use
164        SHELFICEBoundaryLayer if hFacC>1)
165      - the same for factor drLoc in shelfice_forcing.F
166    o tools/genmake2: move FEXTRAFLAGS from FFLAGS to FOPTIM to avoid a problem
167        with modules in ptracers, when using testreport option "-small_f"
168    o pkg/seaice/seaice_growth.F (in case of SEAICE_ITD)
169      - replace tmpscal1**1.36 by faster exp(1.36*log(tmpscal1))
170    o verification/testreport
171      - add new option -small_f
172        with this option testreport first makes the target small_f (*.f files)
173        before running make (all). This is useful for explicit inlining when
174        all sources need to be full available.
175    o pkg/exf/exf_interp.F:
176        remove previous changes related to reverse (decreasing) input grids latitude
177    
178    checkpoint65k (2015/04/01)
179    o pkg/ecco:
180        fix missing cosphi initialization; use eccoiter in place of optimcycle;
181        if autodiff is not compiled then use READ_REC_XY_RL/READ_REC_XYZ_RL
182        instead of active read/write
183    o pkg/ctrl:
184        if autodiff is not compiled then use READ_REC_XY_RL/READ_REC_XYZ_RL
185        instead of active read/write.
186    o pkg/autodiff: make autodiff_readparms.F and autodiff_whtapeio_sync.F
187        return if .NOT.useAUTODIFF
188    o pkg/seaice: add CPP brackets (cost function related).
189    o model/src:
190        add useAUTODIFF run time switch.
191    o pkg/exf/exf_interp.F:
192        add code to allow input grids with latitude starting in the north (i.e. when
193        j=1 corresponds to northern edge of field); modify global_with_exf to test
194        this feature.
195    o verification/testreport:
196      - replace "grep -A3" with POSIX conformal sed command, because there are
197        implementations of grep that cannot do contextual searches
198      - replace "cat -n" by "nl" (two occurrences), because not all implementations
199        of "cat" have the option "-n"
200    o model/src:
201        add new file gsw_teos10.F that contains 3 functions, more or less a copy
202        of the gsw_toolbox.f90 of the TEOS-10 fortran interface, that are used to
203        convert from conservative to potential temperature. For now they are not
204        called anywhere.
205    o pkg/ggl90: make "useIDEMIX" useful
206      - re-organize code in s/r ggl90_calc a little to move computations that
207        are different for idemix into separate loops (changes verification
208        experiment idemix at truncation level, 12 digits remain -> updated)
209      - requires 2 new 2D fields KappaM, verticalShear
210      - make hFacI and recip_hFacI local 3D variables that are passed to
211        s/r ggl90_idemix
212      - fix and improve some comments
213    
214    checkpoint65j (2015/02/25)
215    o pkg/openad
216      - synchronize seawater.F with version in model/src: replace routine
217        body of sw_temp by calling sw_ptmp and fix/add a few comments.
218    o pkg/mnc:
219      - change default value of pickup_read/write_mnc params to FALSE
220        (since few features are missing in reading MNC pickup files).
221    o model/src:
222      - change default (background) vertical diffusivity for salt to be the
223        temperature (background) vertical diffusivity.
224      - change background vertical diffusivity in vertical mixing pkgs ggl90,
225        kl10, my82 and pp81 from temperature diffusivity to salinity diffusivity.
226        This makes ptracers default diffusivity (that uses salt diffKr) more
227        consistent with vertical mixing schemes.
228    o verification/testreport:
229      - fix typo in "-pcls" option ;
230      - put temp files in /tmp (instead of in local dir)
231      - add option "-ncad" to use genmake2 new option "-nocat4ad"
232      - allow to use "-j" option (for multi-procs make) for AD, OAD and TLM.
233    o pkg/ggl90 (idemix code):
234      - apply few fixes ; add some missing "_d 0" ; update output of exp.
235        global_ocean.90x40x15.idemix
236    o OpenAD
237      - enable active file I/O and begin removal of work-around code
238        for OpenAD for handling control variables (memory vs. active files)
239      - new CPP options file OPENAD_OPTIONS.h
240      - revert to genarr2d gradient check for hs94.1x64x5
241      - (genarr3d tested by tutorial_global_oce_biogeo, tutorial_tracer_adjsens)
242      - gentim2d works for halfpipe_streamice but not yet hs94.1x64x5
243    o tools/genmake2:
244      - add option for an alternative Makefile (from Martin) where multiple
245        source files are sent to TAF (instead of all in one file).
246    o pkg/ggl90: add IDEMIX (Olbers and Eden, 2013)
247      - code provided by Carsten Eden as an extension of ggl90
248      - so far the code is turned on within ggl90 by setting a CPP-flag at
249        compile time; a runtime flag implementation is not yet complete
250      - tested in new verification experiment global_ocean.90x40x15.idemix
251    o verification:
252      - reduce length of the AD test run by half for experiments
253        global_ocean.cs32x15 (std + thsice) and isomip
254      - enable active file I/O for OpenAD, adjust verifications accordingly
255      - halfpipe_streamice: change gradient check from genarr2d to gentim2d
256    o verification/testreport:
257      - fix two non-POSIX sed statements so that there are no error messages
258        on Mac OS X
259      - replace hostname -s with hostname | sed 's/\..*$//'
260    o model/src/seawater.F:
261      - simplify SW_TEMP to just calling SW_PTMP with P and PR exchanged
262        (following the matlab code), which would have avoided the bug caught
263        by Matt (see below) in the first place
264    o pkg/shelfice:
265      - implement alternative discretisation of quadratic drag (selectBotDragQuadr)
266        and true distance in no-slip BC (bottomVisc_pCell) similar to bottom-drag.
267      - fix sign of friction tendency (no-slip BC) and fix u,v drag for thin
268        ice-shelf case (i.e., within surface level).
269      - add config summary in shelfice_check.F
270      - remove global variable recip_SHELFICElatentHeat and replace by a local
271        variable recip_latentHeat
272      - introduce diagnostics for friction velocity uStar (in case of
273        SHELFICEuseGammaFrict)
274      - change verification experiment isomip.htd:
275        + start from pickup (as input_ad at nIter0=8640)
276        + start from SHELFICEmassFile instead of SHELFICEloadAnomaly file
277        + test SHELFICEuseGammaFrict = .TRUE.
278        + test SHELFICEadvDiffHeatFlux = .TRUE.
279    o model/src:
280      - fix bug (Thanks to Matt) in function SW_TEMP (to convert Pot.Temp to
281        in-situ Temp) and in routine SW_TEMP (in pkg/openad);
282        update output of experiments global_with_exf.yearly and isomip (all 6).
283    o pkg/shelfice:
284      - change setting of kTopC to also be zero where there is no ice-shelf.
285      - zero out surface forcing arrays (for now, for T & S + EmPmR) where
286        ice-shelf is.
287      - first attempt to get RealFreshWaterFlux effects: for now, only without
288        SHELFICEboundaryLayer ; not consistent if using synchronous time-stepping.
289    o pkg/seaice: add the option to prescribe a fixed thickness PDF
290      for thermodynamic calculations
291      - because of divisions of the type 7/7 not exactly equal to 1, this change
292        affects results of some verification experiments by up to 4 digits:
293        global_ocean.cs32x15.seaice, lab_sea, lab_sea.fd, lab_sea.salt_plume,
294        seaice_obcs, seaice_obcs.seaiceSponge, seaice_obcs.tides
295        adjoint: lab_sea, lab_sea.noseaicedyn
296        -> updated
297    
298    checkpoint65i (2015/01/23)
299    o model/src:
300      - change units of frictionHeating field from W to W/m^2
301      - fix bug in frictional heating from stratospheric drag in
302        S/R ATM_PHYS_TENDENCY_APPLY_V
303      - with synchronous time-stepping: move resetting to zero of frictionHeating
304        field from load_fields_driver.F to thermodynamics.F ;
305      - add diagnostics for frictional heating.
306    o model/src & gmredi K3D:
307      - add frictionHeating field to pickup-files (for synchronous time-stepping)
308      - move ALLOW_EDDYPSI block out of DYNVARS.h and merge it into FFIELDS.h
309      - rename uMean,vMean --> uEulerMean,vEulerMean (+ change diagnostics name
310        and name in pickup file).
311      - fix arguments of few DIAGNOSTICS_FILL calls in gmredi_k3d.F
312    o model/src:
313      - move (from ini_forcing.F) initialisation of all arrays in header file
314        FFIELDS.h into new S/R ini_ffields.F ; this fix broken restart
315        (since Nov 2012) with option selectAddFluid=1.
316    o pkg/shelfice:
317      - change units (+ document) of newly added field "shelfIceMassDynTendency"
318      - upgrade from _RS to _RL shelficeMass & shelficeLoadAnomaly arrays.
319    o pkg/obcs: re-organize obcs_calc_stevens.F to prepare for passive tracers
320    o pkg/seaice: two new runtime parameters:
321      - SEAICE_cStar replaces the hard wired "20" in the strength formulation,
322        long overdue
323      - SEAICE_tensilFac: preparation for Koenig-Beatty+Holland (2012)
324        parameterization of tensil stress for fast ice (does not do anything yet)
325    o pkg/seaice/seaice_check.F: left over from restricted addtive Schwarz method
326        for LSR: move checking overlaps out of JFNK-if-block
327    o pkg/atm_phys:
328      - move copy of grid and dynamical fields out of atm_phys_driver.F into
329        new S/R ATM_PHYS_DYN2PHYS.
330      - fix level height for Linear Free-Surf case (to be consistent with
331        fixed-in-time pressure levels).
332    o pkg/mom_common (bottomdrag):
333      - average bottomDragFld (ALLOW_BOTTOMDRAG_CONTROL) from grid-cell center
334        to correct location (U & V point) in S/R MOM_U/V_BOTTOMDRAG;
335        update output (adm & tlm) of experiment global_ocean.90x40x15.bottomdrag.
336    o pkg/shelfice (u/v_drag):
337      - add one argument (the other velocity component) to S/R SHELFICE_U/V_DRAG;
338      - use SHELFICEDragLinear & SHELFICEDragQuadratic in shelfice_v_drag.F
339        (now similar to shelfice_u_drag.F)
340      - remove condition on bottomDragTerms when calling SHELFICE_U/V_DRAG
341        from mom_vecinv.F (similar to mom_fluxform calls).
342    o pkg/mom_common (bottomdrag):
343      - add one argument (the other velocity component) to S/R MOM_U/V_BOTTOMDRAG;
344      - add options for alternative discretisation of velocity norm in quadratic
345        bottom drag: averaging of grid-cell-center KE to U.point and V.point
346        (selectBotDragQuadr=0, original code) can produce noisy patterns; this
347        improves when averaging only the other component (e.g. vVel for U bottom
348        drag) using wet-point method (selectBotDragQuadr=2) or not (=1).
349      - add options (bottomVisc_pCell) to account for partial-cell in bottom
350        friction (no-slip BC) thus getting the true distance from the bottom;
351        off by default since this also reduces model stability (explicit bottom
352        friction). Changes produce different machine truncation with linear-drag
353        + no-slip BC: update output of experiments exp4.stevens (10 digits) and
354        front_relax (bvp & mxl, 10 & 11 digits).
355    o model/src & mom pkgs:
356      - add one more level to vertical viscosity local arrays (Nr+1, previously Nr)
357        since no-slip bottom BC uses viscosity @ k+1 to update velocity @ level k
358      - for now and until vertical mixing scheme are updated to fill up level Nr+1,
359        just copy level Nr value to level Nr+1.
360    o doc:
361      - add notes form Abhisek Chakraborty on how to close Heat & Salt budgets.
362    o pkg/streamice:
363      - shelfice_init_varia.F, shelfice_init_fixed.F, shelfice_readparms.F,
364        SHELFICE.h: move array shelficemass to init_varia, initialise
365        from array shelficemassinit, which is set in init_fixed and
366        has option to be set from file; introduce array
367        shelficeMassDynTend array, set thru file in init_fixed
368      - NEW FILE: shelfice_step_icemass.F: update shelficemass from either
369        shelfIceFreshWaterFlux and shelficeMassDynTend or H_streamice in
370        pkg/streamice
371      - shelfice_thermodynamics.F: call shelfice_step_icemass if
372        SHELFICEMassStepping = .true.
373      - shelfice_ad_diff.list: add new subroutine shelfice_step_icemass.f
374    
375    checkpoint65h (2014/12/17)
376    o verification/global_ocean.90x40x15, global_ocean_ebm:
377      - update to generic controls.
378    o pkg/ctrl:
379      - ctrl_map_ini_genarr.F: test for igen>0
380      - ctrl_init_variables.F: add call to CTRL_MAP_INI_GENTIM2D.
381      - move gentim2d part of ctrl_map_ini_genarr.F to
382        new separate routine : ctrl_map_ini_gentim2d.F
383      - ctrl_cost_driver.F,ctrl_init.F ctrl_map_ini_genarr.F:
384        add time variable weights and cyclic controls (time mean,
385        seasonal cycle, etc) capabilities to gentim2d
386    o pkg/ecco:
387      - move reading of error, conversion to weights from
388        ecco_cost_init_fixed.F to ecco_toolbox.F (ecco_readwei)
389    o global_oce_llc90, cs32:
390      - activte sbo.
391      - CTRL_SIZE.h : add maxCtrlProc.
392      - activate the new genctrl capabilities.
393      - update following reorganization of global_oce_input_fields.tar.gz  
394    o pkg/ctrl/ctrl_ad_diff.list:
395      - add missing ctrl_init_rec.f
396    o tools/OAD_support/keepOriginal:
397      - add ctrl_init_rec.F
398    o model/src/the_main_loop.F, pkg/ctrl/ctrl_map_ini_genarr.F:
399      - avoid recomputations of xx_gentim2d_dummy.
400    o momentum diagnostics:
401      - move filling of diagnostics Um_Diss & Vm_Diss from mom_fluxform.F and
402        mom_vecinv.F to timestep.F (to include Smag-3D contribution).
403    o pkg/seaice/seaice_lsr.F:
404      - fix computation of BU/BV, make sure they are non-zero, only necessary
405        for cubed sphere exchanges and SEAICE_OLx/y>0.
406        This makes calling s/r fill_cs_corner_rl obsolete (removed).
407    o verification/global_ocean.cs32x15/input.seaice
408      - add test for strong implicit coupling and restricted addtive Schwarz
409        methods for LSR
410      - update results/output.seaice.txt
411    o verification/tutorial_global_oce_biogeo:
412      - AD & OAD set-up: switch off ALLOW_OLD_VIRTUALFLUX (like in fwd set-up)
413        and set PTRACERS_EvPrRn(1,2) to zero (for DIC & ALK);
414        update output_adm,_oadm,_tlm.txt
415    o pkg/dic:
416      - change default to "#undef ALLOW_OLD_VIRTUALFLUX" in DIC_OPTIONS.h
417      - add a stop when ALLOW_OLD_VIRTUALFLUX is defined and PTRACERS_EvPrRn
418        for tracer 1 & 2 is set (to avoid double counting of dilution effect).
419    o verification/tutorial_global_oce_biogeo:
420      - AD & OAD set-up: do not set PTRACERS_EvPrRn for tracer 1 & 2 since
421        dilution is already added by pkg/dic ALLOW_OLD_VIRTUALFLUX ;
422        update output_adm,_oadm,_tlm.txt
423    o eesupp/src:
424      - add fill_cs_corner_rl.F (_RL-copy of fill_cs_corner_rs.F)
425        and call it in seaice_lsr when using nonzero SEAICE_OLx/y
426    o pkg/seaice: introduce strongly implicit coupling, intended for stabilizing
427      LSR (following Hutchings et al. 2004)
428      - introduce zetaZ as a global variable (requires adjustments in
429        seaice_evp.F and seaice_jfnk.F) and compute analoguously to etaZ
430        in seaice_calc_viscosities.F
431      - new flag SEAICEuseStrImpCpl (default off)
432      - add new terms zetaZ*du/dy and zetaZ*dv/dx on both sides of the
433        momentum equations
434      - JFNK-solver (preconditioner) adjusted to allow using this method
435        (where it does not have any positive effect)
436    o pkg/seaice
437      - add overlap for restrictive additive Schwartz method also to LSR, but
438        turn it off by default (because it only seems to work for non-cubed
439        sphere/llc topologies)
440    o pkg/autodiff
441      - add extra exchanges in addummy_in_steppging also for mnc output
442    o pkg/seaice:
443      - add extra exchanges before dumping adjoint fields in seaice_ad_dump.F
444        to avoid stripes in the adjoint output (similar to addummy_in_stepping.F)
445    o pkg/obcs:
446      - add option to specify domain-connected piece Id along OB though files
447        (for now, only used to diagnose PhiVel; default =1 -> global correction)
448      - modify obcs_diag_balance.F to process each connected-part separately;
449        exclude OB where Id = 0 but keep the full divergence there (-> constant
450        Psi along this portion of OB and all inflow derived from grad(Phi))
451      - add example of OB-conect files in verification/so_box_biogeo/input.
452    o pkg/diagnostics:
453      - improve treatment of Open-Boundaries in Velocity-Potential calculation:
454      a) use non zero matrix element across OB and solve for Phi 1 grid point
455         outside OB (i.e, where tracer OBCS are applied).
456      b) global imbalance of inFlow/outFlow across OB: instead of modifying
457         velocity across OB, spread it uniformly along the OB in the RHS.
458    
459    checkpoint65g (2014/11/19)
460    o pkg/diagnostcis:
461      - add preconditioner off-diagonal factor (diagCG_pcOffDFac) as run-time param
462    o pkg/my82,pp81,kl10:
463      - fix ALLOW_3D_DIFFKR implementation (previously had no effect): use 3-D
464        field diffKr as background diffusivity to set minimum diffusivity value.
465    o pkg/seaice:
466      - add new parameter SEAICEuseEVPrev (for revisited EVP by
467        Bouillon et al 2013)
468      - add SEAICE_evpAlpha/Beta to namelist
469      - modify seaice_evp code to able to use SEAICEuseEVPrev. These changes
470        involve trivial re-ordering of divisions/multiplications that should not
471        have any effects, but ... they do change the results of lab_sea.hb87 so
472        that only 2 digits of agreement remain, in line with the general
473        instability/fragility of the evp-code. For now, I do not care and just
474        update the verification experiment
475    o pkg/ctrl : add generic pre-processing (xx_genarr2d_preproc etc)
476      - remove xx_genarr2d_numsmooth etc
477      - use xx_genarr2d_preproc etc instead
478      - carry out smooth_correl2D at initialization stage rather than during
479        time stepping.
480      - get smoothOpNb from xx_gentim2d_preproc
481    o global_oce_cs32 :
482      - add test of generic ecco capabilities.
483    o pkg/exf/exf_getsurfacefluxes.F :
484      - add to tmpUE/tmpVN rather than re-initializing them (conventional behavior).
485    o pkg/ctrl,ecco :
486      - omit un-necessary arguments to ctrl_cost_gen.F unless ECCO_CTRL_DEPRECATED
487        is defined.
488    o pkg/seaice: add diagnostics for Delta (deformation parameter)
489    o model/src:
490      - when ALLOW_3D_DIFFKR is defined, add a Warning if any of the vertical
491        diffusivity (background) is specified but ignored.
492    o verification:
493      - in testreport, convert hostname to lower case for default output dir name
494    o model, pkg : add useCTRL, useECCO parameters (on/off run time switch).
495    o pkg/dic: add modifications from Hajoon:
496      - add iron sedimentation flux function of the flux of PO4 out of bottom layer
497      - light attenuation: add self-shading effect by climatological Chlorophyll
498        (read from file).
499    o pkg/seaice/seaice_preconditioner.F : fix cpp flags, so that code also
500        compiles when SEAICE_ALLOW_DYNAMICS is undefined
501    o global_oce_llc90,cs32 : ecco_v4 verification exps now use separate
502        AUTODIFF_OPTIONS.h, CTRL_OPTIONS.h, ECCO_OPTIONS.h rather than
503        ECCO_CPPOPTIONS.h (i.e. replacing the deprecated, circumvoluted,
504        approach where CPP_OPTIONS.h includes an omnipotent
505        ECCO_CPPOPTIONS.h that superseeds pkgs '_OPTIONS.h').
506    o pkg/ctrl/ctrl_map_ini_genarr.F : include GMREDI_OPTIONS.h where
507        ALLOW_3D_KAPGM, ALLOW_3D_KAPREDI (to be added later) belong.
508  o pkg/seaice/SEAICE_SIZE.h : replace ALLOW_AUTODIFF_TAMC with ALLOW_AUTODIFF  o pkg/seaice/SEAICE_SIZE.h : replace ALLOW_AUTODIFF_TAMC with ALLOW_AUTODIFF
509    to avoid needing AUTODIFF_OPTIONS.h anytime SEAICE_SIZE.h is included      to avoid needing AUTODIFF_OPTIONS.h anytime SEAICE_SIZE.h is included
510    (it seems that THSICE_SIZE.h, PTRACERS_SIZE.h have the same issue...)      (it seems that THSICE_SIZE.h, PTRACERS_SIZE.h have the same issue...)
511  o model/src, pkg/smooth, profiles, salt_plume, seaice, exf, ecco, ctrl :  o model/src, pkg/smooth, profiles, salt_plume, seaice, exf, ecco, ctrl :
512    add ECCO_OPTIONS.h, AUTODIFF_OPTIONS.h, CTRL_OPTIONS.h when needed    add ECCO_OPTIONS.h, AUTODIFF_OPTIONS.h, CTRL_OPTIONS.h when needed
513    - ECCO_OPTIONS.h is needed when including ecco_cost.h, ecco.h    - ECCO_OPTIONS.h is needed when including ecco_cost.h, ecco.h
514    - AUTODIFF_OPTIONS.h is needed when including tamc.h, tamc_keys.h    - AUTODIFF_OPTIONS.h is needed when including tamc.h, tamc_keys.h
515    - CTRL_OPTIONS.h is needed when including ctrl.h, optim.h, etc    - CTRL_OPTIONS.h is needed when including ctrl.h, optim.h, etc
516  o pkg/ctrl,ecco,exf :  o pkg/ctrl,ecco,exf :
517    - remove variables associated with NON-generic costs,    - remove variables associated with NON-generic costs,
518      unless ECCO_CTRL_DEPRECATED is defined.      unless ECCO_CTRL_DEPRECATED is defined.
519    - remove NON-generic NON-obcs controls,    - remove NON-generic NON-obcs controls,
520      unless ECCO_CTRL_DEPRECATED is defined.      unless ECCO_CTRL_DEPRECATED is defined.
521  o pkg/ctrl : added ctrl_local_params.h  o pkg/ctrl : added ctrl_local_params.h
522  o pkg/ecco : added ecco_local_params.h  o pkg/ecco : added ecco_local_params.h
523  o verification : added ECCO_CTRL_DEPRECATED to most as and oad  o verification : added ECCO_CTRL_DEPRECATED to most as and oad
524    experiments, which will progressively be removed once the      experiments, which will progressively be removed once the
525    experiments are revised to use only generic controls/costs.      experiments are revised to use only generic controls/costs.
526    
527  checkpoint65f (2014/10/13)  checkpoint65f (2014/10/13)
528  o pkg/ctrl, ecco, seaice : minor changes in headers  o pkg/ctrl, ecco, seaice : minor changes in headers
529  o global_oce_llc90,cs32 : ecco_v4 verification exps now test generic  o global_oce_llc90,cs32 : ecco_v4 verification exps now test generic
530    cost function and control capabilities added since checkpoint65c.      cost function and control capabilities added since checkpoint65c.
531  o pkg/ctrl: regroup all obcs ctrl variables in CTRL_OBCS.h.  o pkg/ctrl: regroup all obcs ctrl variables in CTRL_OBCS.h.
532  o pkg/ecco: increase modularity and improve logic  o pkg/ecco: increase modularity and improve logic
533    - ecco_toolbox.F (new) : basic operations that are often used,    - ecco_toolbox.F (new) : basic operations that are often used,
# Line 393  o pkg/seaice: more clean up Line 887  o pkg/seaice: more clean up
887      nearly a factor of 10 (but keep in mind there is mostly seaice code in      nearly a factor of 10 (but keep in mind there is mostly seaice code in
888      this experiment):      this experiment):
889      > size mitgcmuv_ad      > size mitgcmuv_ad
890      text    data        bss     dec        hex        text    data        bss     dec        hex
891      5100659 1216  220458952  225560827  d71c8fb      5100659 1216  220458952  225560827  d71c8fb
892      5339425 1200 1868783272 1874123897 6fb4dc79 (SEAICE_LSR_ADJOINT_ITER)      5339425 1200 1868783272 1874123897 6fb4dc79 (SEAICE_LSR_ADJOINT_ITER)
893      but only a moderate increase of 36% for global_ocean.cs32x15:      but only a moderate increase of 36% for global_ocean.cs32x15:
894      text    data        bss     dec        hex      text    data        bss     dec        hex

Legend:
Removed from v.1.2085  
changed lines
  Added in v.1.2177

  ViewVC Help
Powered by ViewVC 1.1.22