/[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.1823 by jmc, Tue Feb 12 22:26:11 2013 UTC revision 1.1839 by mlosch, Thu Mar 7 08:34:26 2013 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/seaice:
8      modify lsr-algorithm so that it vectorizes AND converges by using a
9      "zebra" method: split vector loop into two with step size 2; this
10      solves a general convergence problem for the JFNK solver on a vector
11      computer. It has the potential to even improve convergence for
12      non-vector machines, but it does change the results so it is turned
13      off by default. To turn on define CPP-flags SEAICE_VECTORIZE_LSR and
14      SEAICE_VECTORIZE_LSR_ZEBRA in SEAICE_OPTIONS.h
15    
16    checkpoint64e (2013/03/05)
17    o pkg/ecco and several verification experiments:
18       Remove special versions of the_model_main.F, the_main_loop.F, forward_step.F
19       from ecco package, and revert to unified routine in model/src/
20       Adjust verification experiments accordingly, especially gloal_oce_llc90
21       Should conclude long-standing work by Gael to reconsile the_main_loop with
22       ECCO and will enable OpenAD's revolve loop in ECCO setup.
23    o pkg/generic_advdiff:
24      - implement compressible flow method for multi-dim advection (similar to
25        gad_som_advect.F); add new option "GAD_MULTIDIM_COMPRESSIBLE" (since
26        TAF generates many recomputations) to use it; no yet coded with implicit
27        vertical advection.
28      - change experiment advect_cs (new output) and advect_xy (same output)
29        to test compressible flow multi-dim advection.
30    o pkg/generic_advdiff:
31      - fix SOM advection for unusual cases (linear Free-Surf in r*, other
32        cases where linear Free-Surf is not @ k=1, e.g., useShelfIce)
33    o pkg/seaice:
34      - fix bug in the no-slip implementation in seaice_calc_strainrates.F, this
35        bug affects two verification experiments (lab_sea and lab_sea.hb87),
36        recover old (wrong) results by setting noSlipFac = 2. in
37        seaice_calc_strainrates.F;
38      - add another averaging method for etaZ (etaZmethod=3), a mix of 2 and 0
39      - add runtime parameter SEAICE_JFNKepsilon for that finite difference
40        gradient in the Jacobian times vector operation (s/r seaice_jacvec)
41      - fix line search in seaice_jfnk.F (s/r seaice_jfnk_update)
42    o pkg/seaice: reorganize seaice_lsr.F to be able to reuse more code:
43      - new subroutines seaice_lsr_tridiagu/v
44      - introduce loop bounds i/jmin/max to be able to use a restricted
45        additive Schwarz method, but not used for now.
46      - rename SEAICE_CALC_LSR_COEFFS into SEAICE_LSR_CALC_COEFFS
47      - use new subroutines seaice_lsr_tridiagu/v in s/r seaice_preconditioner
48    o OpenAD support
49       Reorganize S/R call for overall time-stepping loop to facilitate
50       OpenAD revolve loop replacement
51       (new S/R main_do_loop.F)
52    o model/src:
53      - add 3-D array 3rd dimension to argument list of S/R ADAMS_BASHFORTH2/3;
54      - pkg/cheapaml: remove local S/R ADAMS2d and use instead standard S/R
55        ADAMS_BASHFORTH2.
56    o pkg/cheapaml:
57      - add new parameter (default=F, same as before) to disable full domain
58        (including land) periodicity in X & Y dir.
59      - new S/R CHEAPAML_COPY_EDGES to copy relaxation field into edges of
60        prognostics field ; merge the 2 S/R cycle_2d_tracer and timestep_2d_tracer
61        into single S/R CHEAPAML_TIMESTEP.
62    
63    checkpoint64d (2013/02/17)
64    o pkg/monitor (angular momentum):
65      - do not add Eta contribution to the total AM if using rigid-lid;
66      - correct for Adams-Bashforth in zonal-wind part (instead of in AM_eta).
67      - horizontal discretisation: compute Zonal wind contribution separately for
68        each component (instead of from cell centered averaged) and use the 4
69        grid-cell corner averaged value of Omega*(R*cos_Phi)^2 in AM_eta part.
70      - Check that AM is conserved with linear dynamics (momAdvection=F and linear
71        FreeSurf) if using vectorInvariant momentum.
72    o model/src (horizontal grid):
73      - move initialisation of all horizontal grid arrays to null value
74        from specific horizontal grid S/R to main S/R INI_GRID;
75      - add 2 new arrays to project model C-grid velocity on to zonal direction
76        (similar to AngleCosC & -AngleSinC but at U and V point location) and
77        compute them in S/R CALC_GRID_ANGLES.
78    o pkg/seaice: replace a hard coded parameter by a runtime parameter
79        SEAICE_JFNK_tolIter
80    o pkg/seaice: introduce a restricted additive Schwarz (RAS) method in
81        preconditioner for JFNK (run LSR into the overlaps as far as possible,
82        i.e OLx/y-2, but overwrite the solution in the overlaps)
83      - extend loop range in seaice_calc_viscosity
84      - add new parameters SEAICE_OLx/y (default = OLx/y-2)
85      - add flexible loop ranges to seaice_preconditioner, seaice_calc_lsr_coeffs
86      - slightly modify loops in tridiagonal solver lsr-preconditioner
87      - by default remove the extra exchange in seaice_preconditioner with a
88        replacement of an undocumented CPP flag by SEAICE_PRECOND_EXTRA_EXCHANGE
89      - modify offline_exf_seaice so that old results without RAS are reproduced
90        for output.dyn_jfnk.txt
91      in seaice_fgmres.F (unrelated to RAS)
92      - add a cpp-flag option for a re-ordered mapping (potentially more
93        efficient), but because this changes the results, turn it off by
94        default
95      - replace the save statement by local common blocks
96  o utils/matlab:  o utils/matlab:
97    - fix tile-offset in rdmnc.m when output was produced using EXCH2.    - fix tile-offset in rdmnc.m when output was produced using EXCH2.
98    - update cs_grid/bk_line scripts to use load_grid.m (in utils/matlab)    - update cs_grid/bk_line scripts to use load_grid.m (in utils/matlab)

Legend:
Removed from v.1.1823  
changed lines
  Added in v.1.1839

  ViewVC Help
Powered by ViewVC 1.1.22