/[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.1462 by jmc, Wed Jun 22 19:17:36 2011 UTC revision 1.1568 by mlosch, Tue Jan 3 11:07:12 2012 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/obcs
8      - S/R obcs_calc_stevens: fix a small bug (gammat -> gammas where appropriate)
9    o pkg/exf (interpolation):
10      - assume periodicity in X only if input field cover full longitude range.
11      - improve search for lat. index (supposed to be faster, in ~log2(ny) steps,
12        and should vectorise).
13      - fix input lat of the 2 added row (in case we provide N.pole data).
14    
15    checkpoint63h (2011/12/30)
16    o pkg/seaice:
17      - change declaration of UVM from _RL to _RS in order to get B-grid
18        uIce,vIce monitor when _RS = real*4
19    o pkg/offline:
20      - new S/R OFFLINE_RESET_PARMS for resetting main-model params (switch off flags);
21      - compute vertical velocity if not read from file (switch on exactConserv
22        & staggerTimeStep);
23      - fix output of ptracer monitor iter & time for default PTRACERS_monitorFreq.
24    o verification:
25      - update grid-files (in tutorial_held_suarez_cs/input and fizhi-cs-32x32x40/input)
26        with grid-angle generated using "utils/matlab/cs_grid/cubeCalcAngle.m":
27        fix Pb in yG definition @ 2 missing corners (previously yG was averaged);
28      - update output of exp. global_ocean.cs32x15.viscA4 after changing
29        grid-file angles (used here for coriolis-3d);
30      - remove (or gzip) few files not needed to run fizhi-cs experiments.
31    o pkg/exf (vector interpolation):
32      - rotate vector component toward local grid-axis orientation using grid-angles
33        (stored in GRID.h) instead of locally computed rotation angle; keep old code
34        available with exf option EXF_USE_OLD_VEC_ROTATION (undef by default).
35    o pkg/seaice:
36      - allow to compile with exf options ALLOW_ATM_TEMP or ALLOW_DOWNWARD_RADIATION
37        undefined. Fix and remove the stop when ALLOW_RUNOFF is undefined.
38    o pkg/PKG_OPTIONS.h files:
39      - move #include "CPP_OPTIONS.h" just after #include "PACKAGES_CONFIG.h",
40        outside of the #ifdef ALLOW_THISPKG / #endif block.
41      - update verification/*/code/PKG_OPTIONS.h files.
42    o add a verification experiment (offline_exf_seaice/input.seaice) that test
43      the B-grid LSOR solver
44    o pkg/seaice: sort out emissivity and long wave radiation step 2:
45      - add emissivity for snow and ice as new run-time parameters
46        (unfortunately) that default to the corresponding exf values; this
47        changes results in most verification experiments so that for backward
48        compatibility these parameter have to be set explicitly to inconsistent
49        values (ugly);
50      - the exf-flag EXF_LWDOWN_WITH_EMISSIVITY then gets rid off the hard-wired
51        emissivities of 0.97 associated with lwdownloc in S/R seaice_solve4temp
52        until we agree how to handle this bug properly
53    o pkg/exf (interpolation):
54      - add a set of run-time param ({inputfield}_interpMethod), one for
55        each interpolated input field, to select the interpolation method
56        with a value of zero switching off the interpolation;
57      - print interpolation parameters to standard output;
58      - refine exf_check.F accordingly ; stop if USE_NO_INTERP_RUNOFF is defined
59        (to use instead runoff_interpMethod=0 in data.exf).
60      - simplify default setting of interpolation parameters (for all fields,
61        set position to match model grid cell-center position, leading to trivial
62        interpolation in case of regular Lat-Lon grid) and fix for the case of
63        non-uniform delY.
64    o pkg/exf/exf_radiation.F: add the factor ocean_emissivity to lwdown, for
65       within #ifdef EXF_LWDOWN_WITH_EMISSIVITY/#endif. Unless ocean_emissivity=1.
66       this factor is absolutely required, because the lw exitance (= out-going
67       long wave radiation) is emissivity*stefanBoltzmann*T^4 + rho*lwdown,
68       where the reflectivity rho = 1-emissivity for conservation reasons. Once
69       this is established, we can remove the CPP-Flag (if we want to).
70    o pkg/seaice:
71      - qualify a stop statement in S/R seaice_check: EXF_READ_EVAP and
72        ALLOW_BULKFORMULAE are only required if SEAICE_EXTERNAL_FLUXES is defined
73      - sort out emissivity and long wave radiation, step 1: make SEAICE_emissivity
74        what the name implies (and not emissivity*BoltzmannConstant), this means
75        the old default value of 5.5e-8 now means
76        5.5e-8/5.670e-8 = 0.97001763668430343479 as ocean_emissivity in
77        S/R exf_readparms
78      - FV-discretization of the B-grid LSOR solver, turn on with
79        SEAICE_LSRBNEW. This new solver also involves a slight re-organization
80        of the calling routine dynsolver, so that B and C-grid code look a
81        little more alike.
82      - fix index bugs in ostres.F (B-grid code)
83    o pkg/seaice/seaice_ocean_budget.F: change (unused) code to make it look better
84    o pkg/seaice/seaice_readparms.F: make ocean_emissivity*stefanBoltzmann the
85      default for SEAICE_emissivity, if useEXF; requires setting a wrong
86      parameter value in global_ocean.cs32x15/input.seaice/data.seaice for
87      backward compatiblity
88    o model/src: use sigmaR in calc_ivdc
89    
90    checkpoint63g (2011/12/16)
91    o pkg/seaice/seaice_growth.F:
92      fix heat conservation of the coupled ocean-seaice system.
93      when SEAICE_HEAT_CONSERV_FIX is defined, the mismatch of
94      solid vs liquid water treatment is resolved via QNET.
95    o pkg/seaice/seaice_growth.F:
96      add missing term for sublimation in saltFlux, which was breaking conservation.
97    o pkg/seaice/seaice_model.F:
98      Remove this patholigical case treatment in evolution branch,
99      where it is un-necessary and breaks conservation.
100      Update global_ocean.cs32x15/results accordingly for
101      output.seaice.txt output_adm.seaice.txt and output_adm.seaice_dynmix.txt
102    o model/src:
103      useRealFreshWaterFlux: remove masking of EmPmP (using maskInC) in
104      external_forcing_surf.F and apply mask directly in S/R SOLVE_FOR_PRESSURE.
105    o pkg/obcs:
106      modify Stevens boundary conditions so that S/R obcs_calc_stevens computes
107      tendency for temperature and salinity that is then applied to update
108      theta and salt in S/R obcs_apply_ts; this requires proper masking of all
109      horizontal advection and diffusion contributions on the boundary (in
110      S/Rs gad_advection, gad_calc_rhs, gmredi_rtransport, gmredi_calc_diff), and
111      removing the mask in S/R timestep_tracer. The advantage of this approach is
112      that the updated tracer values include contributions from the surface
113      forcing and vertical diffusion.
114      This modification changes exp4.stevens because of vertical diffusion.
115    o model/src:
116      change non-curvilinear grid setting to also work with exch2 + blank tiles:
117      - move delX,delY to new header file (SET_GRID.h) and adjust length to 1rst
118        face dimensions.
119      - new S/R INI_LOCAL_GRID to define model tile-local grid (using same units
120        as delX,delY) and called from S/R INI_CARTESIAN_GRID, INI_CYLINDER_GRID
121        and INI_SPHERICAL_POLAR_GRID.
122      change test-experiment global_ocean.90x40x15:
123      - split the domain in many more tiles (9x4 tiles of 10x10 each);
124      - switch to exch2 and remove 1 blank-tile (but only for MPI test).
125      - update results of both test (std & dwnslp).
126    o pkg/diagnostics/diagstat_calc.F: fix problem with non-initialised halos in
127       tmp-fields for TARGET_NEC_SX at the cost of extra loops and less vectorisation
128    o model/src:
129      - take sigma-coords related code out of update_etah.F into new S/R UPDATE_ETAWS
130        and fix initialisation when using sigma-coords.
131    o model/src:
132     - improve Gael's changes from Jan 14, 2011 "addition of an 'update' of hfacc etc.
133       to their current value at the beginning of forward_step.F": add a new run-time
134       switch "doResetHFactors" (default=false) and use it to do (or not) the resetting.
135     - set doResetHFactors=T in the following test exp:
136        global_ocean.90x40x15/input (rStar) & input.dwnslp (linFS),
137        global_ocean.cs32x15/input.seaice (rStar), hs94.cs-32x32x5/input.impIGW (linFS)
138        and tutorial_global_oce_in_p (nonLinFS in p)
139    o pkg/ecco
140      - added IES cost term
141    o verification/advect_xz
142      - scale down the depth by 1/100 (from 200 km to just 2.km)
143      - add secondary test using divergent flow, r-star and implicit vertical advection.
144      - add note (check_conserve_TS.txt) and matlab script to check global
145        conservation of T & S with NonLin-FreeSurf and Adams-Bashforth.
146    o pkg/rbcs:
147      - add missing relaxUFile & relaxVFile in namelist (in rbcs_readparms.F).
148    o pkg/obcs (Stevens BCs):
149      - fix various problems in the phase speed computations of the Stevens
150        boundary conditions:
151        - sign error for western and southern boundaries,
152        - time tendencies were underestimated by factor of dTracerLev and some just
153          zero (for multidim advection schemes) -> now estimate time tendencies
154          from difference between previous (n) time level and the one before (n-1);
155          this requires storing a field per tracer per boundary, also in the pickup
156          files.
157        - replace deltaTmom in cflMer/Zon computation with dTracerLev
158        - set default phase velocity to cflMer/Zon
159      - update verification experiment exp4.stevens
160    o pkg/generic_advdiff (implicit_r):
161      - fix implicit vertical advection conservation with AB and/or NonLin-FreeSurf
162        (remove Tr*d/dz(w) in gad_implicit_r.F and add it in gad_calc_rhs.F);
163      - fix implicit vertical diffusion or advection with NonLin FreeSurf
164        (was using current recip_hFacC instead of future recip_hFacC): set future
165        recip_hFac in thermodynamics.F and pass & use it in all vertical implicit
166        solver S/R ;
167      - fill diagnostics of vertical advective fluxes (computed from tendency)
168        when using implicit vert. advection;
169      - update output of exp that uses NonLin-FreeSurf & implicit vertical diffusion:
170         global_ocean.90x40x15 (fwd+AD), global_ocean.cs32x15 (4 fwd +4 AD),
171         tutorial_global_oce_in_p (fwd), tutorial_tracer_adjsens (AD)
172         and cpl_aim+ocn (used in ocean); to be fixed: bottom_ctrl_5x5.
173    o pkg/diagnostics:
174      - add diags for T & S tendency which goes through Adams-Bashforth.
175    
176    checkpoint63f (2011/11/30)
177    o pkg/obcs/obcs_calc_stevens.F:
178      - join some loops to reduce number of if-statements
179      - fix a bug in code for northern and southern boundaries.
180    o pkg/seaice/seaice_init_varia.F
181      - undo resetting UVM=0 that has slipped in unnoticed in r1.49 and
182        caused zero ice-velocities for the B-grid code
183    o pkg/seaice/seaice_init_fixed.F
184      - fix a bug in the initialisation of the second metric terms
185        k2AtC and k2AtZ: k2AtC was set to the value of k2AtZ and k2AtZ was 0.
186      - this affects all seaice configurations with useCurviLinearGrid = .true.
187        and SEAICEuseDynamics = .true. (default) and SEAICEuseMetricTerms
188        = .true. (default)
189      - the only verification experiment affected is global_ocean.cs32x15:
190        icedyn, seaice, and seaice_dynmix (AD)
191    o pkg/thsice/thsice_diagnostics_state.F
192      - only for TARGET_NEC_SX: initialise all of tmpFld, so that overlap does
193        not contain garbage that can lead to surprises in diagstats_calc.F
194    o model/src:
195      - move bi,bj loops inside INTEGR_CONTINUITY ;
196      - call INTEGR_CONTINUITY directly from forward_step.F
197        (previously called from momentum_correction_step.F)
198      - call UPDATE_ETAH from integr_continuity.F and update initialise_varia.F,
199        forward_step.F and pkg/ecco/the_main_loop.F
200    o model/src/do_oceanic_phys.F:
201      - reset addMass to zero only if useICEFRONT ;
202      - separated k-loop for rhoInSitu calculation ;
203      - add 2 diagnostics for wVel*delta^k(Rho) at constant pressure (= WdRHO_P)
204        and at constant T,S (= WdRHOdP);
205      NOTE: change diagnostics WRHOMASS : this is now simply the Vertical transport
206        of In-Situ Density (Anomaly) (=wVel*rho^bar-k) (previously was Vertical
207        transport of locally-referenced potential density);
208        to recover old diag: (WRHOMASS)_old = (WRHOMASS)_new -1/2 * (WdRHOdP)
209    o gluemnc:
210      - replace ncrcat with ncks when adding variables to *.glob.nc
211      - change the way variables without record dimensions are handled so that
212        files that have variables with and without record variables can be glued:
213        add a record dimension with a new unique name to be able to differentiate
214        between variable with and without a-prior record dimensions. Remove
215        this record dimension before adding the variable to the *.glob.nc file.
216        This procedure automatically works also for grid.*.nc files that do not
217        have any record dimension.
218    o verification/cpl_aim+ocn:
219      - generate new reference output on baudelaire (gfortran, mpich2) (previously
220        from old aces-grid cluster, ao + ifort) and update 'run_cpl_test' script.
221    o pkg/obcs/obcs_calc_stevens.F:
222      - add code for northern and southern boundaries.
223      - reorder some loops to save some operations and so that drFBar can be scalar
224    o model/src:
225      - re-arrange extrapolation calculation in Adams-Bashforth S/R (affects machine
226        truncation) and add diagnostics for Adams-Bashforth tendency increment.
227      - update test-exp. AD output:
228        1D_ocean_ice_column, bottom_ctrl_5x5, lab_sea.noseaicedyn, obcs_ctrl;
229      and FWD output: exp4 (x3), fizhi-cs-32x32x40, fizhi-cs-aqualev20,
230        front_relax (x3), global_ocean.90x40x15 (x2), global_ocean.cs32x15 (x5),
231        global_ocean_ebm, ideal_2D_oce, internal_wave, isomip (x3), lab_sea (x4),
232        matrix_example, MLAdjust (x5), natl_box (x2), tutorial_advection_in_gyre,
233        tutorial_global_oce_in_p, tutorial_global_oce_latlon and
234        tutorial_plume_on_slope.
235    o pkg/diagnostics/diagstats_calc.F: add special code for TARGET_NEC_SX
236      that vectorises. This code uses 3 extra 2D fields, F90 array assignments
237      and F90 intrinsic routines SUM, MINVAL, MAXVAL, but since TARGET_NEC_SX
238      does not even come with an F77 compiler anymore, this should not be
239      a limitation
240    
241    checkpoint63e (2011/11/06)
242    o pkg/seaice adjoint of LSR:
243      - substantially rework STORE dirs.
244      - add new flag SEAICE_LSR_ADJOINT_ITER and parameter SOLV_MAX_FIXED
245        this flag will do SOLV_MAX_ITERS but only store SOLV_MAX_FIXED fields
246        and only perform SOLV_MAX_FIXED adjoint iters.
247        If flag SEAICE_LSR_ADJOINT_ITER is undef-ined, the store in the iteration
248        always goes to same record, meaning that the last forward field will be
249        the one used in the adjoint - an approximation.
250      - now produces non-zero LSR-related gradients, and acceptable gradients for
251        An's zonal (x-z) test case (to be checked in)
252      - lab_sea: produces acceptable gradients for lab_sea with forward/backward LSR
253        (but these are screwed up by the thermodynamics in the first place);
254        reduce from 4 to 3 timesteps to avoid t.d. issue as temporary solution;
255        output_adm.txt also reflects changes to seaice_lsr
256      - global_ocean.cs32x15:
257        * the "default" input_ad.seaice has been re-defined to always exclude dynamics
258          (output_adm.seaice.txt was updated)
259        * new input_ad.seaice_dynmix tests a forward LSR / backward free-drift
260          (output_adm.seaice_dynmix.txt)
261    o test-exp. exp4+stevens:
262      - switch off pTracers and nonHydrostatic (restart problems with NH); update output
263    o pkg/seaice (lsr solver):
264      - put coriolis term into FORCEX,Y (as in seaice_evp.F; previously in rhsU,V only);
265        update output (change truncation) of FWD test exp lab_sea & global_ocean.cs32x15
266      - fix SEAICEuseFREEDRIFT for new OBCS version (ndef OBCS_UVICE_OLD)
267      - new parameter "LSR_mixIniGuess" allows (if=2,4) to mix free-drift solution
268        into initial guess for linearised solver; use weight ~ (1/err)^2,4.
269      - compute (with new S/R) and print initial (+ free-driff sol. if available)
270        and final residual of linearised system.
271    o pkg/pp81: add diagnostics for vertical eddy viscosity and diffusivity
272      (requires new subroutines pp81_init_fixed.F/pp81_diagnostics_init.F)
273    o pkg/obcs: Stevens BCs (still only for east and west)
274      - fix Stevens BCs by using intermediate velocities of previous
275        time step as "baroclinic" contribution rather velocity of one grid cell
276        inside the boundaries; more consistent but makes the entire treatment
277        more complicated, requires new pickup files and two new S/Rs:
278        obcs_copy_uv_n and obcs_save_uv_n
279        keep old version with flag OBCS_STEVENS_USE_INTERIOR_VELOCITY
280        (undefined by default)
281      - silently move computation of some grid factors into separate loops to
282        save some recomputations
283      - add a hack for non-linear free surface
284      - add a verification experiment to exp4 that tests this code
285    o make gluemnc/xplodemnc work with (moron) non-GNU shell tools
286    
287    checkpoint63d (2011/10/25)
288    o pkg/obcs + seaice-dynamics:
289      - new implementation calls OBCS_APPLY_UVICE (in seaice_dynsolver.F) before
290        solving for uIce,vIce and prevent SEAICE_LSR or SEAICE_EVP to modify OB
291        values (consistent with an implicit method).
292      - add option OBCS_UVICE_OLD (in OBCS_OPTIONS.h, defined by default) to
293        return to older implementation (same results as before); note that none of
294        the "experimental" OBCS_SEAICE options are implemented in the new version.
295      - switch test exp. seaice_obcs to use new version (update output).
296    o pkg/seaice:
297      - add few stop (B-grid & CS-exch, B-grid & obcs, AUTODIFF & SEAICE_maskRHS)
298      - add parenthesis in Water-Ice drag calculations (evp & lsr);
299      - in seaice_lsr.F, simplify and fix AA3 setting in case sNx or sNy=1;
300        and fix case SEAICE_waterDrag=0 (but unstable if no or little seaice)
301      - update output of test exp lab_sea that uses evp or lsr (fwd+ad)
302        and global_ocean.cs32x15 (icedyn & seaice fwd+ad).
303    o pkg/layers:
304      - Include potential density as new coordinate (Thanks to David Munday)
305    o pkg/dic:
306      - Remove subroutine CALC_PCO2_APPROX_CO3 from carbon_chem.F and add
307        carbonate computation/output to CALC_PCO2_APPROX
308    o pkg/generic_advdiff
309      - make TAF generate code that vectorizes:
310        gad_dst3fl_adv_*.F, gad_u3c4_impl_r.F
311    o model/src:
312      - improve vectorization also for adjoint code of
313        solve_tridiagonal and solve_pentadiagonal. As this requires up to
314        5 new 3D-fields, this code is only turned on for the combination of
315        ALLOW_AUTODIFF_TAMC and TARGET_NEC_SX. Also remove error message
316        for singular matrix check (only for TARGET_NEC_SX).
317      - remove hard-wiring of CPP-flag ALLOW_SOLVERS_KLOOPINSIDE to
318        ALLOW_AUTODIFF. This flag now needs to be set outside of
319        solve_tri/pentadiagonal.F
320    o pkg/exf:
321      - fix previous modif in exf_readparms.F (revision 1.66: treatment of
322        optional namelist EXF_NML_OBCS).
323      - add many debug-print (to trace down where pkg/cal error msg comes from)
324    o pkg/mom_vecinv/mom_vi_hdissip.F
325      - rearrange loops so that vectorization is improved and in particular
326        the adjoint routine vectorizes. The code is a little longer now, but I
327        think easier to read.
328        Note: CPP-flag MOM_VI_ORIGINAL_VISCA4 is not tested.
329    o pkg/seaice:
330      - allow to specify initial seaice velocity from files (uIceFile,vIceFile)
331    o pkg/exch2:
332      - alternative code (without tile x tile matrix) for cumulated (global) sum;
333        used as default; keep using matrix version in adjustment.cs-32x32x1.
334    o tools/build_options:
335      - after merging some MPI and/or multi-threads specific optfiles so that
336        the modified default optfile support both built (using genmake2 -mpi
337        for the MPI built, using genmake2 -omp for OpenMP built),
338        move now obsolete optfiles to tools/build_options/unsupported/
339       (add copy of email sent to support list in doc/optfiles_changes.txt)
340    
341    checkpoint63c (2011/09/28)
342    o pkg/ebm:
343      - fix ebm_zonalmean.F for several procs in Ydir (nPy > 1); update output of
344        test exp. global_ocean_ebm (affects machine truncation, 12 digits for cg2d)
345    o pkg/seaice (SItracer pickup)
346    * Simple code for pickup of SItracer fields (#define ALLOW_SITRACER)
347      To be done:
348      - thorough testing of missing fields in S/R seaice_read_pickup
349      - thorough matching between generic tracers and specific fields used
350        (e.g. volume-weighted age, area-weighted age, salinity, ...)
351    o pkg/grdchk:
352      - all procs calculate and print finite-difference gradient (for testreport)
353      - change description output used by testreport;
354      - AD testing: also compare and report Finite-difference gradient;
355        => update all output_adm*.txt
356    o test exp. global_ocean_ebm:
357      - switch back useRealFreshWaterFlux (no problem anymore with run-off);
358        and turn on exactConserve; update (fwd) output.
359    o pkg/seaice (LSR):
360      - print to STDOUT number of solver iterations at SEAICE_monFreq interval.
361      - modify solver to deal cleanly with u/v switch at face edges (CS-grid):
362        * identical results with non-CS topology (but save up to half of EXCH calls)
363        * no much changes in cs-32 verification tests since no ice at face edges
364         (differences due to convergence criteria, since nb of iterations changed)
365        * expect some differences on lat-lon-cap grid.
366        update FWD results of global_ocean.cs32x15 test exp. (icedyn & seaice)
367    o pkg/exch2:
368      - add new CPP option to disable Cumul-Sum matrix (to save storage when using
369        many tiles); until alternative coding is added, just add a stop.
370    o pkg/kpp:
371      - move ptracer/salt correction to KPP diffusivity from calc_3d_diffusivity.F
372        to S/R KPP_CALC_DIFF_PTR (+ add tracer-index to argument list).
373    o optfiles:
374      - merged few MPI specific (*+mpi*) and multi-threads specific (*+mth) optfiles
375        into corresponding standard one, which now support different build:
376        (when using "genmake2 -mpi" for MPI built, "genmake2 -omp" for OpenMP built)
377      - add "darwin_amd64_gfortran" optfile (initially from Constantinos, tested by Gael)
378    o pkg/obcs (seaice):
379      - add missing EXCH for uIce,vIce after applying OBCS;
380      - remove S/R EXF_SWAPFFIELDS_X/Y , disable S/R EXF_SET_OBCS_X/Y by adding
381        argument = number of levels to S/R EXF_SWAPFFIELDS_XZ/YZ and S/R
382        EXF_SET_OBCS_XZ/YZ ; update obcs_exf_load.F;
383      - fix EXF_SET_OBCS_XZ/YZ for multi-threaded (assuming loaded arrays are shared)
384      - verification exp. seaice_obcs: split domain in 2 tiles ; add SIZE.h_mpi
385        and eedata.mth for MPI and mutlti-threaded testing.
386    o pkg/flt:
387      - make FLT EXCH working with multi-threads (and MPI + multi-threads);
388      - use buffer for floats IO (trajectories & profiles); size set in FLT_SIZE.h;
389      - fix pickup and trajectories + profiles output with multi-threads;
390      - add parameter to select group of fields to write along trajectory and
391        profile (default unchanged);
392      - only call PORT_RAND* function when flt_noise <> 0;
393      - add multi-threaded test for verification exp. flt_example.
394    o eesupp/src:
395      - fix S/R ALL_PROC_DIE for MPI+multi-threads.
396      - USE_OMP_THREADING: check that number of threads (from eedata) matches
397        actual number (from env.var. setting).
398    o pkg/ebm:
399      - fix multi-threading in ebm_area_t.F ; clean-up EBM.h header file.
400      - add multi-threaded test for verification exp. global_ocean_ebm
401    
402    checkpoint63b (2011/08/29)
403    o pkg/ebm:
404      - fix sign of runoff;
405      - update directly forcing fields (Qnet,EmPmR) to use standard
406        external_forcing_surf.F (remove ebm_forcing_surf.F);
407      - avoid loading forcing fields a 2nd time (1rst time from ini_forcing.F);
408      - set either tauThetaClimRelax (in data) or tauThetaZonRelax (in data.ebm)
409        and apply relaxation towards corresponding SST field (2-D map or ZonAver).
410      - update global_ocean_ebm parameters file data and update output (fwd+ad).
411    o verification/matrix_example:
412      - split domain in 8 tiles (2x4); add SIZE.h_mpi and eedata.mth for
413        MPI and mutlti-threaded testing.
414    o pkg/matrix:
415      - change name of S/R MATRIX_INIT to S/R MATRIX_INIT_VARIA ;
416      - fix for multi-tiles (add bi,bj indices to exp/impMatrixCounter);
417      - fix for multi-threaded (remove DATA statement);
418      - use standard DIFFERENT_MULTIPLE function;
419      - add MATRIX_OPTIONS.h
420    o verification/matrix_example:
421       To allow to split the domain in several tiles, change the domain size
422        from 31x31 to 32x32 by adding 1 row (on Southern side) + 1 column (on
423        Western side) of land points.
424    o (*_)write_pickup:
425      - fix few bugs in mypackage_read/write_pickup.F
426      - in MDS_WR_METAFILES calls, replace "myTime" by a local copy into
427        array of length 1 (was caught by compiler syntax-check).
428    o pkg/diagnostics (velocity potential solver):
429      - fix initialisation of main diagonal matrix (for overlap values)
430    o tools/build_options:
431      - towards single optfile for MPI and non-MPI built: merge few +mpi optfile
432        into previously non MPI one (linux_am64 pgf77,open64,pathf90,ifort11)
433      - linux_amd64_gfortran: merge +mpi_generic version into standard optfile:
434        * move IEEE flags to DEVEL section; take IEEE flags from +mpi_generic ;
435        * FAST case: for now, keep -O3 with ini_masks_etc.F in NOOPTFILES list;
436        and use "-devel" testreport option for standard testing on baudelaire.
437    o pkg/grdchk:
438      - Assume that all gradient-check position are within the same tile
439        corresponding to global indices (iGloTile,jGloTile) and that
440        positions (i,j indices or nbeg) are local to this tile;
441      - set tile local-indices and proc. number according to tile global-indices;
442      - remove grdchkwhichproc from namelist (retired param);
443      - send adjoint gradient to all procs so that all procs print it to STDOUT;
444      - switch on MPI test for global_ocean.90x40x15 AD test experiment.
445    o adding package bbl (Bottom Boundary Layer)
446      description in MITgcm/pkg/bbl/bbl_description.tex
447      example/test experiment in MITgcm_contrib/bbl
448    o adjoint verifications
449      - changed 5 experiments to multi-tiles
450        * global_ocean.90x40x15
451        * obcs_ctrl
452        * offline_exf_seaice
453        * tutorial_dic_adjoffline
454        * tutorial_tracer_adjsens
455        changed reference output for those that crossed tile boundaries
456        (changed choices of gradient check positions)
457      - with same tiling, switch on MPI test for the last 4 (add SIZE.h_mpi)
458      - temporary bug fix in grdchk_loc.F for obcs
459    o genmake2 & testreport
460      - add target "obj" (just for OBJFILES files) to Makefile;
461      - add option to specify FEXTRAFLAGS on command line.
462    o pkg/mypackage:
463      - remove bi,bj arguments from argument list of S/R MYPACKAGE_CALC_RHS
464    
465    checkpoint63a (2011/08/02)
466    o pkg/diagnostics (velocity potential):
467      - fix velocity-potential calculation when using OBCS: balance net inflow
468        at each level (new S/R OBCS_DIAG_BALANCE).
469      - fix some of the problems with OBCS in stream-function calculation.
470    o pkg/exf/exf_readparms.F
471      - make treatment of optional namelists (EXF_NML_04, EXF_NML_SGRUNOFF,
472        EXF_NML_OBCS) more consistent, so that you need not have these lists
473        in data.exf when they are not used.
474    o optim/optim_readdata.F:
475      - add some output about obcs variables that might help debugging
476      - add a check about nvarlength
477    o pkg/ctrl: once again, fix computation of endrec in s/r ctrl_init_rec
478    o pkg/diagnostics (velocity potential):
479      - fix mask for OBCS (still problems in stream-function with OBCS);
480      - add specific parameter (default = main code CG2D params) for solver;
481      - in case of poor convergence, use solution corresponding to lowest residual.
482    o pkg/seaice/seaice_growth.F: small changes that permit vectorizable
483      adjoint code. In general statements like tmpscal=fld(i,j) are problematic
484      and should be avoided where possible.
485    o model/src (rStar):
486      - include r* effect on reference-state (PhiRef) in totPhiHyd
487        (so that it's really the potential anomaly at the cell center);
488        affect solution only if z* with full pressure in EOS.
489      - test-exp global_ocean.90x40x15: reduce viscA4 (was not stable) and
490        update output (because of z* in totPhiHyd and viscA4 changes);
491      - keep the previous diagnostics as "PHIHYDcR" (closer to potential anomaly
492        @ constant r) until interpolation at constant r is implemented.
493    o pkg/diagnostics
494      - fix RCENTER diagnostics in case cell center is not at interface middle
495    o add code for TEOS-10 (www.teos-10.org, McDougall et al. 2011). Use
496      this eos with eosType = 'TEOS10', in data (PARM01). This eos implies
497      that THETA and SALT are "conservative temperature" and "absolute
498      salinity"
499    o pkg/ctrl
500      - fix computation of endrec in s/r ctrl_init_rec
501      - ctrl_pack/unpack_*: remove unused variables and some obsolete code
502    o pkg/seaice/seaice_growth.F
503      - fix recomputation with FENTY_AREA_EXPANSION_CONTRACTION code,
504        remove then obsolete STORE directives
505      - fix STORE directives for tice and tices, so that only the
506        appropriate part of the fields are stored (and not the entire
507        field); update global_ocean.cs32x15.seaice AD output.
508      - cosmetic changes: adjust CPP flags and indentation for better
509        legibilty
510    o pkg/autodiff: add mnc-output of adBottomDragFld (code contributed by
511      Chris Wilson)
512    o pkg/gmredi:
513       Add Sub-Meso Eddies parameterisation from Baylor (for now, disabled with TAF),
514       and test it in verification exp. "front_relax.bvp" (update output.bvp.txt)
515    
516    checkpoint63  (2011/07/11)
517    o pkg/exch2:
518     - rename+move: nTiles in W2_EXCH2_PARAMS.h --> exch2_nTiles in W2_EXCH2_TOPOLOGY.h
519     - exch2 version of Cumul-Sum routine: S/R W2_SET_MAP_CUMSUM set up the
520       (2*nTiles)x(nTiles) Cumul-Sum matrix and Master Proc collects all tiles X,Y
521       increments, calculates Cumul-Sum @ tile origin and sends results to each tile.
522    o pkg/diagnostics:
523     - deal with pairs of post-processed diags which are computed together; in
524       particular, re-order list of diags within 1 file to save 2nd computation.
525     - add S/R to compute velocity stream-function (called after velocity-potential
526       calculation) from divergence free transport -> new diagnostics "PsiVEL".
527     - add parameter to select grid-point location where PsiVEL == 0.
528    o eesupp/src:
529       new S/R to calculate cumulated sum on tiled array, corner grid-cell location
530       (specific S/R needed with exch2 topology - for now, just print an error msg)
531    o pkg/shelfice
532     - Implement friction velocity-dependent transfer coefficients following
533       Holland and Jenkins, JPO, 1999
534       Original code by M. Losch with small modifs.
535       Enable with CPP option SHI_ALLOW_GAMMAFRICT
536       and runtime flag SHELFICEuseGammaFrict
537    o verification lab_sea & global_ocean.cs32x15:
538     - use tools/xmakedepend (instead of cyrus_makedepend, in genmake_local):
539       does not miss some dependencies (but is slower) and also works with many files
540       (default makedepend limitation for AD built).
541     - use cyrus_makedepend in adjustment.128x64x1 (so that it still tested).
542    o pkg/diagnostics:
543     - add run-time parameter "useMissingValue" (def=False) to fill land-point
544        (i.e., where mask=0) with MissingValue ; used only in MNC output file.
545       This replaces CPP-option DIAGNOSTICS_MISSING_VALUE.
546     - Extend the use of "missing_value" setting from data.diagnostics for the case
547       of counter-diagnostics (where fraction-weight is zero). This applies both to
548       MNC and MDS output files.
549    o pkg/seaice/seaice_growth.F:
550      - add 'a priori' cap of latent heat flux based on actual mass considerations
551        when SEAICE_ADD_SUBLIMATION_TO_FWBUDGET is used in conjunction with the
552        non-legacy seaice_solve4temp.
553      - add diagnostic of the residual sublimation freshwater flux (the freshwater
554        flux taken from the ocean if the total actual latent heat fluxes exceed
555        the maximum)
556      - remove the CPP switch around the *_FWbySublim unit change and move diagnostic
557       fill for SIatmQnt, SIfwSubl, SIatmFW to the end of seaice_growth.F.
558      - add diagnostic of the actual sublimation freshwater flux (that is 0. ifndef
559       SEAICE_ADD_SUBLIMATION_TO_FWBUDGET) and of the latent heat flux (evap+sublim).
560      - bug fix : frWtrAtm needs a_FWbySublim ifdef SEAICE_ADD_SUBLIMATION_TO_FWBUDGET.
561      - bug fix : missing part to Martin's r_FWbySublim pathological case fix.
562    o verification 1D_ocean_ice_column:
563       made model domain truly 1x1x23 instead of 5x5x23 with only center cell (3,3,:) wet
564       update results
565  o pkg/diagnostics:  o pkg/diagnostics:
566   - Implement setting of "Post-Processed" diagnostics (corresponding to gdiag(5)='P')   - Implement setting of "Post-Processed" diagnostics (corresponding to gdiag(5)='P')
567     which are not filled-up but computed from other diags ; In this case, the mate     which are not filled-up but computed from other diags ; In this case, the mate
568     diag points to the primary (filled-up) diag to used for post processing.     diag points to the primary (filled-up) diag to used for post processing.
569   - Update Velocity-potential computation using post-processed diag framework.   - Update Velocity-potential computation using post-processed diag framework.
570   Change the ordering of fields and time-periods in MDS output file   ==> Change the ordering of fields and time-periods in MDS output file
571     when using periodic averaging: now writes one time record with the full set     when using periodic averaging: now writes one time record with the full set
572     of fields for this time period, then the next time reccord (it used to be     of fields for this time period, then the next time reccord (it used to be
573     one field with the full set of time records then the next field).     one field with the full set of time records then the next field).
574     Note: this is now similar to NetCDF (MNC) output file.       Note: this is now similar to NetCDF (MNC) output file. <==
575    
576  checkpoint62z (2011/06/21)  checkpoint62z (2011/06/21)
577  o adjoint monitor:  o adjoint monitor:

Legend:
Removed from v.1.1462  
changed lines
  Added in v.1.1568

  ViewVC Help
Powered by ViewVC 1.1.22