/[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.1802 by jmc, Sun Jan 6 20:36:27 2013 UTC revision 1.1834 by mlosch, Thu Feb 28 17:32:28 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      - fix bug in the no-slip implementation in seaice_calc_strainrates.F, this
9        bug affects two verification experiments (lab_sea and lab_sea.hb87),
10        recover old (wrong) results by setting noSlipFac = 2. in
11        seaice_calc_strainrates.F;
12      - add another averaging method for etaZ (etaZmethod=3), a mix of 2 and 0
13      - add runtime parameter SEAICE_JFNKepsilon for that finite difference
14        gradient in the Jacobian times vector operation (s/r seaice_jacvec)
15      - fix line search in seaice_jfnk.F (s/r seaice_jfnk_update)
16    o pkg/seaice: reorganize seaice_lsr.F to be able to reuse more code:
17      - new subroutines seaice_lsr_tridiagu/v
18      - introduce loop bounds i/jmin/max to be able to use a restricted
19        additive Schwarz method, but not used for now.
20      - rename SEAICE_CALC_LSR_COEFFS into SEAICE_LSR_CALC_COEFFS
21      - use new subroutines seaice_lsr_tridiagu/v in s/r seaice_preconditioner
22    o OpenAD support
23      Reorganize S/R call for overall time-stepping loop to facilitate
24      OpenAD revolve loop replacement
25      (new S/R main_do_loop.F)
26    o model/src:
27      - add 3-D array 3rd dimension to argument list of S/R ADAMS_BASHFORTH2/3;
28      - pkg/cheapaml: remove local S/R ADAMS2d and use instead standard S/R
29        ADAMS_BASHFORTH2.
30    o pkg/cheapaml:
31      - add new parameter (default=F, same as before) to disable full domain
32        (including land) periodicity in X & Y dir.
33      - new S/R CHEAPAML_COPY_EDGES to copy relaxation field into edges of
34        prognostics field ; merge the 2 S/R cycle_2d_tracer and timestep_2d_tracer
35        into single S/R CHEAPAML_TIMESTEP.
36    
37    checkpoint64d (2013/02/17)
38    o pkg/monitor (angular momentum):
39      - do not add Eta contribution to the total AM if using rigid-lid;
40      - correct for Adams-Bashforth in zonal-wind part (instead of in AM_eta).
41      - horizontal discretisation: compute Zonal wind contribution separately for
42        each component (instead of from cell centered averaged) and use the 4
43        grid-cell corner averaged value of Omega*(R*cos_Phi)^2 in AM_eta part.
44      - Check that AM is conserved with linear dynamics (momAdvection=F and linear
45        FreeSurf) if using vectorInvariant momentum.
46    o model/src (horizontal grid):
47      - move initialisation of all horizontal grid arrays to null value
48        from specific horizontal grid S/R to main S/R INI_GRID;
49      - add 2 new arrays to project model C-grid velocity on to zonal direction
50        (similar to AngleCosC & -AngleSinC but at U and V point location) and
51        compute them in S/R CALC_GRID_ANGLES.
52    o pkg/seaice: replace a hard coded parameter by a runtime parameter
53        SEAICE_JFNK_tolIter
54    o pkg/seaice: introduce a restricted additive Schwarz (RAS) method in
55        preconditioner for JFNK (run LSR into the overlaps as far as possible,
56        i.e OLx/y-2, but overwrite the solution in the overlaps)
57      - extend loop range in seaice_calc_viscosity
58      - add new parameters SEAICE_OLx/y (default = OLx/y-2)
59      - add flexible loop ranges to seaice_preconditioner, seaice_calc_lsr_coeffs
60      - slightly modify loops in tridiagonal solver lsr-preconditioner
61      - by default remove the extra exchange in seaice_preconditioner with a
62        replacement of an undocumented CPP flag by SEAICE_PRECOND_EXTRA_EXCHANGE
63      - modify offline_exf_seaice so that old results without RAS are reproduced
64        for output.dyn_jfnk.txt
65      in seaice_fgmres.F (unrelated to RAS)
66      - add a cpp-flag option for a re-ordered mapping (potentially more
67        efficient), but because this changes the results, turn it off by
68        default
69      - replace the save statement by local common blocks
70    o utils/matlab:
71      - fix tile-offset in rdmnc.m when output was produced using EXCH2.
72      - update cs_grid/bk_line scripts to use load_grid.m (in utils/matlab)
73        instead of local script "load_cs.m".
74    o pkg/seaice:
75      - fix a serious bug in seaice_fgmres.F, s/r seaice_scalprod, connected
76        to the scalarProductMetric and the unrolling. By chance this does not
77        change the verification experiment, because of the particular domain
78        decomposition
79    o pkg/diagnostics:
80      - change default missing_value from UNSET_RL to -999.
81    o pkg/layers: improve vectorization of layers_fluxcalc.F
82      - step 1: split loops, make TatU/V 2D arrays. This alone reduces the cpu
83        time spent in this routine by more than a factor of 3 on an NEC-SX8
84      - step 2: replace search algorithm by a bisection algorithm found in
85        Press et al. Numerical Recipes in Fortran. This algorithm can be
86        vectorized and finds the correct bin in approx. log2(Nlayers) steps.
87        For now, use this algorithm only for TARGET_NEC_SX defined.
88      - moved the search algorithm into a separate subroutine, that is kept
89        within the same file for automatic inlining.
90      - modified catching potential errors
91    o pkg/ecco:
92      - add compile switches ALLOW_SHALLOW_ALTIMETRY and ALLOW_HIGHLAT_ALTIMETRY.
93    o model/src, pkg/autodiff, pkg/ctrl, pkg/grdchk :
94      - modifications for ALLOW_GENTIM2D_CONTROL
95      -- forward_step.F, the_main_loop.F : pass options and arrays for adjoint tapes.
96      -- load_fields_driver.F : add call to CTRL_MAP_GENTIM2D( myTime, myIter, myThid )
97      -- add xx_gentim2d0/1 in ctrl_ad_check_lev1_dir.h checkpoint_lev1_directives.h etc
98      -- use ctrl_swapffields.F (new) instead of exf_SwapFFields.F in ctrl_get_gen.F
99    o model/src:
100      - account for moist thermodynamics in (dry) potential temperature equation;
101        update results of experiments: aim.5l_cs (x2), fizhi-cs (std + aqualev)
102        and cpl_aim+ocn.
103      - also switch to standard compiler (gfortran, was using ifort previously)
104        for fizhi-cs experiments reference output.
105    o pkg/ctrl:
106      - 1st step toward generic time-varying control variable (2D) via CPP option
107        ALLOW_GENTIM2D_CONTROL
108      - note new namelist ctrl_nml_genarr in data.ctrl
109    o verification/global_ocean.cs32x15:
110      - switch off OLD_THSICE_CALL_SEQUENCE (both forward and AD code) to use new
111        thsice calling sequence and update "output.icedyn.txt" output file.
112    o pkg/ptracers:
113      - from Ryan A.: code to allow to restart a tracer at regular time interval
114        specifying a reset frequency and a reset-phase (for each tracers).
115    o pkg/thsice:
116      - implement new sequence of calls for thsice+seaice:
117          previously:   ice-Dyn,ice-Advect,ice-Thermo(thsice)
118          new sequence: ice-Thermo(thsice),ice-Dyn,ice-Advect
119      - allows (with temporary CPP option "#define OLD_THSICE_CALL_SEQUENCE"
120        in CPP_OPTIONS.h) to recover old sequence;
121      - update diagnostics for Intermediate State thsice diagnostics: now filled
122        just before advection (instead of just after advection in old sequence);
123      - update output of experiment offline_exf_seaice (standard test);
124      - in global_ocean.cs32x15 exp., postpone output.icedyn.txt update
125        by setting #define OLD_THSICE_CALL_SEQUENCE in CPP_OPTIONS.h
126    o pkg/aim_v23:
127      - use tiled array for aim_CO2 and surface wind speed for export to coupler;
128      - use standard pkg/mdsio routines to read & write CO2 pickup file;
129      - in-line S/R AIM_AIM2DYN_EXCHANGES in aim_do_physics.F;
130      - Implement new sequence of calls for seaice advection (with thsice and
131        seaice diffusion): do ice advection after ice-Thermodynamic (previously
132        was done before); change aim_do_physics.F (split the bi,bj loops block);
133      - use same CPP option (OLD_THSICE_CALL_SEQUENCE) to recover old sequence;
134    o pkg/thsice:
135      - add a missing EXCH of sIceLoad in thsice_main.F (ocean set-up) for the case
136        where just seaice diffusion is used without seaice-dynamics.
137    
138    checkpoint64c (2013/01/18)
139    o pkg/seaice:
140      - add a parameter JFNKres_tFac that can replace JFNKres_t
141        (= JFNKres_tFac*JFNKresidual before JFNK solver)
142      - add a line search option to the JFNK solver
143      - move update of u/vIce and computation of initial residual into a separate
144        routine (same file); makes the code a little easier to read (?)
145      - the line search requires computation of the residual and for some reason
146        I cannot do the update of u/vIce at the beginning of the Newton loop
147        without changing the results, so we move computation of the new residual
148        also to the end of the Newton loop, even without the line search
149    o pkg/mdsio:
150      - write missing value (corresponding to undefined array value) to meta files;
151        skip this if missing value is one (UNSET_RL would be a better value for the
152        case of undefined missing value but it's current the default missing-value);
153        Also update mdsio_read_meta.F (reading timeInterval & missing-value).
154    o pkg/exf & thsice:
155      - for diagnostics purpose, fill-up and update Qsw array (+ fill the
156        diagnostics) even when SHORTWAVE_HEATING is #undef;
157    o verification/cfc_example:
158      - turn on pkg/layers with pkg/diagnostics (to test pkg/layers and to
159        illustrate how to use it).
160    o verification/offline_exf_seaice:
161      in input: add SEAICErestoreUnderIce=.TRUE., and reduce size of forcing
162        files to only one time-record.
163      in input.thermo: narrow the 2 bands of low initial ice-concentration near
164        N & S edges; switch on SEAICErestoreUnderIce=T; use pkg/diagnostics for
165        snapshot output; same mcPheePiston value as in thsice with
166        surf-current=0.2m/s.
167      in input.thsice: similar set-up as in input.thermo (channel with same seaice
168        initial conditions).
169    o verification/cfc_example:
170      - update file "data" with more standard choice (default rotationPeriod,
171        exactConserv=T, reduce ivdc_kappa to 10, remove multiDimAdvection=F,
172        set deltaTFreeSurf to deltaTtracer) and update the output.
173    o pkg/layers:
174      - fix bolus part so that it compiles with #undef GM_BOLUS_ADVEC;
175      - ensure that "layers_bolus" is switched to False when useGMRedi=False.
176    o verification/offline_exf_seaice:
177      - set all {field}period to zero for constant-in-time forcing (not tested
178        anywhere else).
179  o verification/offline_exf_seaice:  o verification/offline_exf_seaice:
180    - dyn_lsr  : use pkg/seaice S/R (instead of pkg/thsice) to advect sea-ice;    - dyn_lsr  : use pkg/seaice S/R (instead of pkg/thsice) to advect sea-ice;
181    - dyn_jfnk : use pkg/thsice S/R (instead of pkg/seaice) to advect sea-ice.    - dyn_jfnk : use pkg/thsice S/R (instead of pkg/seaice) to advect sea-ice.

Legend:
Removed from v.1.1802  
changed lines
  Added in v.1.1834

  ViewVC Help
Powered by ViewVC 1.1.22