/[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.1765 by heimbach, Fri Nov 9 22:51:48 2012 UTC revision 1.1835 by jmc, Sat Mar 2 02:41:35 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/generic_advdiff:
8      - fix SOM advection for unusual cases (linear Free-Surf in r*, other
9        cases where linear Free-Surf is not @ k=1, e.g., useShelfIce)
10    o pkg/seaice:
11      - fix bug in the no-slip implementation in seaice_calc_strainrates.F, this
12        bug affects two verification experiments (lab_sea and lab_sea.hb87),
13        recover old (wrong) results by setting noSlipFac = 2. in
14        seaice_calc_strainrates.F;
15      - add another averaging method for etaZ (etaZmethod=3), a mix of 2 and 0
16      - add runtime parameter SEAICE_JFNKepsilon for that finite difference
17        gradient in the Jacobian times vector operation (s/r seaice_jacvec)
18      - fix line search in seaice_jfnk.F (s/r seaice_jfnk_update)
19    o pkg/seaice: reorganize seaice_lsr.F to be able to reuse more code:
20      - new subroutines seaice_lsr_tridiagu/v
21      - introduce loop bounds i/jmin/max to be able to use a restricted
22        additive Schwarz method, but not used for now.
23      - rename SEAICE_CALC_LSR_COEFFS into SEAICE_LSR_CALC_COEFFS
24      - use new subroutines seaice_lsr_tridiagu/v in s/r seaice_preconditioner
25    o OpenAD support
26      Reorganize S/R call for overall time-stepping loop to facilitate
27      OpenAD revolve loop replacement
28      (new S/R main_do_loop.F)
29    o model/src:
30      - add 3-D array 3rd dimension to argument list of S/R ADAMS_BASHFORTH2/3;
31      - pkg/cheapaml: remove local S/R ADAMS2d and use instead standard S/R
32        ADAMS_BASHFORTH2.
33    o pkg/cheapaml:
34      - add new parameter (default=F, same as before) to disable full domain
35        (including land) periodicity in X & Y dir.
36      - new S/R CHEAPAML_COPY_EDGES to copy relaxation field into edges of
37        prognostics field ; merge the 2 S/R cycle_2d_tracer and timestep_2d_tracer
38        into single S/R CHEAPAML_TIMESTEP.
39    
40    checkpoint64d (2013/02/17)
41    o pkg/monitor (angular momentum):
42      - do not add Eta contribution to the total AM if using rigid-lid;
43      - correct for Adams-Bashforth in zonal-wind part (instead of in AM_eta).
44      - horizontal discretisation: compute Zonal wind contribution separately for
45        each component (instead of from cell centered averaged) and use the 4
46        grid-cell corner averaged value of Omega*(R*cos_Phi)^2 in AM_eta part.
47      - Check that AM is conserved with linear dynamics (momAdvection=F and linear
48        FreeSurf) if using vectorInvariant momentum.
49    o model/src (horizontal grid):
50      - move initialisation of all horizontal grid arrays to null value
51        from specific horizontal grid S/R to main S/R INI_GRID;
52      - add 2 new arrays to project model C-grid velocity on to zonal direction
53        (similar to AngleCosC & -AngleSinC but at U and V point location) and
54        compute them in S/R CALC_GRID_ANGLES.
55    o pkg/seaice: replace a hard coded parameter by a runtime parameter
56        SEAICE_JFNK_tolIter
57    o pkg/seaice: introduce a restricted additive Schwarz (RAS) method in
58        preconditioner for JFNK (run LSR into the overlaps as far as possible,
59        i.e OLx/y-2, but overwrite the solution in the overlaps)
60      - extend loop range in seaice_calc_viscosity
61      - add new parameters SEAICE_OLx/y (default = OLx/y-2)
62      - add flexible loop ranges to seaice_preconditioner, seaice_calc_lsr_coeffs
63      - slightly modify loops in tridiagonal solver lsr-preconditioner
64      - by default remove the extra exchange in seaice_preconditioner with a
65        replacement of an undocumented CPP flag by SEAICE_PRECOND_EXTRA_EXCHANGE
66      - modify offline_exf_seaice so that old results without RAS are reproduced
67        for output.dyn_jfnk.txt
68      in seaice_fgmres.F (unrelated to RAS)
69      - add a cpp-flag option for a re-ordered mapping (potentially more
70        efficient), but because this changes the results, turn it off by
71        default
72      - replace the save statement by local common blocks
73    o utils/matlab:
74      - fix tile-offset in rdmnc.m when output was produced using EXCH2.
75      - update cs_grid/bk_line scripts to use load_grid.m (in utils/matlab)
76        instead of local script "load_cs.m".
77    o pkg/seaice:
78      - fix a serious bug in seaice_fgmres.F, s/r seaice_scalprod, connected
79        to the scalarProductMetric and the unrolling. By chance this does not
80        change the verification experiment, because of the particular domain
81        decomposition
82    o pkg/diagnostics:
83      - change default missing_value from UNSET_RL to -999.
84    o pkg/layers: improve vectorization of layers_fluxcalc.F
85      - step 1: split loops, make TatU/V 2D arrays. This alone reduces the cpu
86        time spent in this routine by more than a factor of 3 on an NEC-SX8
87      - step 2: replace search algorithm by a bisection algorithm found in
88        Press et al. Numerical Recipes in Fortran. This algorithm can be
89        vectorized and finds the correct bin in approx. log2(Nlayers) steps.
90        For now, use this algorithm only for TARGET_NEC_SX defined.
91      - moved the search algorithm into a separate subroutine, that is kept
92        within the same file for automatic inlining.
93      - modified catching potential errors
94    o pkg/ecco:
95      - add compile switches ALLOW_SHALLOW_ALTIMETRY and ALLOW_HIGHLAT_ALTIMETRY.
96    o model/src, pkg/autodiff, pkg/ctrl, pkg/grdchk :
97      - modifications for ALLOW_GENTIM2D_CONTROL
98      -- forward_step.F, the_main_loop.F : pass options and arrays for adjoint tapes.
99      -- load_fields_driver.F : add call to CTRL_MAP_GENTIM2D( myTime, myIter, myThid )
100      -- add xx_gentim2d0/1 in ctrl_ad_check_lev1_dir.h checkpoint_lev1_directives.h etc
101      -- use ctrl_swapffields.F (new) instead of exf_SwapFFields.F in ctrl_get_gen.F
102    o model/src:
103      - account for moist thermodynamics in (dry) potential temperature equation;
104        update results of experiments: aim.5l_cs (x2), fizhi-cs (std + aqualev)
105        and cpl_aim+ocn.
106      - also switch to standard compiler (gfortran, was using ifort previously)
107        for fizhi-cs experiments reference output.
108    o pkg/ctrl:
109      - 1st step toward generic time-varying control variable (2D) via CPP option
110        ALLOW_GENTIM2D_CONTROL
111      - note new namelist ctrl_nml_genarr in data.ctrl
112    o verification/global_ocean.cs32x15:
113      - switch off OLD_THSICE_CALL_SEQUENCE (both forward and AD code) to use new
114        thsice calling sequence and update "output.icedyn.txt" output file.
115    o pkg/ptracers:
116      - from Ryan A.: code to allow to restart a tracer at regular time interval
117        specifying a reset frequency and a reset-phase (for each tracers).
118    o pkg/thsice:
119      - implement new sequence of calls for thsice+seaice:
120          previously:   ice-Dyn,ice-Advect,ice-Thermo(thsice)
121          new sequence: ice-Thermo(thsice),ice-Dyn,ice-Advect
122      - allows (with temporary CPP option "#define OLD_THSICE_CALL_SEQUENCE"
123        in CPP_OPTIONS.h) to recover old sequence;
124      - update diagnostics for Intermediate State thsice diagnostics: now filled
125        just before advection (instead of just after advection in old sequence);
126      - update output of experiment offline_exf_seaice (standard test);
127      - in global_ocean.cs32x15 exp., postpone output.icedyn.txt update
128        by setting #define OLD_THSICE_CALL_SEQUENCE in CPP_OPTIONS.h
129    o pkg/aim_v23:
130      - use tiled array for aim_CO2 and surface wind speed for export to coupler;
131      - use standard pkg/mdsio routines to read & write CO2 pickup file;
132      - in-line S/R AIM_AIM2DYN_EXCHANGES in aim_do_physics.F;
133      - Implement new sequence of calls for seaice advection (with thsice and
134        seaice diffusion): do ice advection after ice-Thermodynamic (previously
135        was done before); change aim_do_physics.F (split the bi,bj loops block);
136      - use same CPP option (OLD_THSICE_CALL_SEQUENCE) to recover old sequence;
137    o pkg/thsice:
138      - add a missing EXCH of sIceLoad in thsice_main.F (ocean set-up) for the case
139        where just seaice diffusion is used without seaice-dynamics.
140    
141    checkpoint64c (2013/01/18)
142    o pkg/seaice:
143      - add a parameter JFNKres_tFac that can replace JFNKres_t
144        (= JFNKres_tFac*JFNKresidual before JFNK solver)
145      - add a line search option to the JFNK solver
146      - move update of u/vIce and computation of initial residual into a separate
147        routine (same file); makes the code a little easier to read (?)
148      - the line search requires computation of the residual and for some reason
149        I cannot do the update of u/vIce at the beginning of the Newton loop
150        without changing the results, so we move computation of the new residual
151        also to the end of the Newton loop, even without the line search
152    o pkg/mdsio:
153      - write missing value (corresponding to undefined array value) to meta files;
154        skip this if missing value is one (UNSET_RL would be a better value for the
155        case of undefined missing value but it's current the default missing-value);
156        Also update mdsio_read_meta.F (reading timeInterval & missing-value).
157    o pkg/exf & thsice:
158      - for diagnostics purpose, fill-up and update Qsw array (+ fill the
159        diagnostics) even when SHORTWAVE_HEATING is #undef;
160    o verification/cfc_example:
161      - turn on pkg/layers with pkg/diagnostics (to test pkg/layers and to
162        illustrate how to use it).
163    o verification/offline_exf_seaice:
164      in input: add SEAICErestoreUnderIce=.TRUE., and reduce size of forcing
165        files to only one time-record.
166      in input.thermo: narrow the 2 bands of low initial ice-concentration near
167        N & S edges; switch on SEAICErestoreUnderIce=T; use pkg/diagnostics for
168        snapshot output; same mcPheePiston value as in thsice with
169        surf-current=0.2m/s.
170      in input.thsice: similar set-up as in input.thermo (channel with same seaice
171        initial conditions).
172    o verification/cfc_example:
173      - update file "data" with more standard choice (default rotationPeriod,
174        exactConserv=T, reduce ivdc_kappa to 10, remove multiDimAdvection=F,
175        set deltaTFreeSurf to deltaTtracer) and update the output.
176    o pkg/layers:
177      - fix bolus part so that it compiles with #undef GM_BOLUS_ADVEC;
178      - ensure that "layers_bolus" is switched to False when useGMRedi=False.
179    o verification/offline_exf_seaice:
180      - set all {field}period to zero for constant-in-time forcing (not tested
181        anywhere else).
182    o verification/offline_exf_seaice:
183      - dyn_lsr  : use pkg/seaice S/R (instead of pkg/thsice) to advect sea-ice;
184      - dyn_jfnk : use pkg/thsice S/R (instead of pkg/seaice) to advect sea-ice.
185    o model/src:
186      - implement Finite-Volume method for (hydrostatic) presure gradient
187        from S.-J. Lin (QJRMS 1997), for atmosphere using sigma-coordinate.
188    o pkg/seaice: implement EVP* by Lemieux et al. (2012).
189      - In order to be compatible with the default EVP code, this requires changing
190        the EVP code around a little; and because any small change immediately
191        breaks the lab_sea.hb87 verification experiment, the reference output is
192        updated two times (each time the remaining aggrement was only 2 digits):
193        - after replacing 1/dt by 1*recip_dt with a precomputed recip_dt
194        - after replacing 1/(1+0.5*dt/tau) by a/(a+1), with a=2*tau/dt
195        The adjoint test lab_sea.evp also needed to be updated.
196      - Turn on EVP* by setting SEAICE_deltaTevp as before, and setting
197        SEAICEuseEVPstar=.true.; for EVP* SEAICE_deltaTevp does not need to be
198        a factor of SEAICE_deltaTdyn, and you can set the number of EVP steps
199        explicitly with SEAICEnEVPstarSteps (thereby overriding the default of
200        INT(SEAICE_deltaTdyn/SEAICE_deltaTevp)). Controlling EVP* is deliberately
201        kept obscure, because I need to test it a little more.
202    o pkg/cheapaml:
203      - fix few incorrect type (_RL/_RS) in subroutine calls.
204    o pkg/seaice:
205      - new S/R SEAICE_MAP_RS2VEC (similar to SEAICE_MAP2VEC) to map _RS arrays
206        to _RL vector; this fixes JFNK code when compiling with "-use_r4" option.
207    o model/src:
208      - add a warning if using select_rStar=2 with nonlinFreeSurf <> 4;
209        change (in input_ad*/data) select_rStar from 2 to 1 for AD verification
210        experiments global_ocean.cs32x15 & tutorial_tracer_adjsens (+ update output)
211    o pkg/cheapaml:
212      - replace "273.1 _d 0" by celsius2K in pkg/cheapaml/cheapaml.F and
213        update output of experiment cheapAML_box.
214      - store in CHEAPAML.h coeffs ssq[0:2] for saturation specific humidity,
215        and set them only in one place (cheapaml_readparms.F).
216      - replace "273.16 _d 0" by celsius2K & replace "3.14159 _d 0" by constant "PI"
217      - remove re-setting of main-model parameter "celsius2K" (in cheapaml_readparms)
218        and re-setting of cheapAML params "lath" & "p0" (in cheapaml_init_varia).
219    o model/src/the_main_loop.F:
220      - fix revision 129 : need both ALLOW_ECCO and ALLOW_ECCO_EVOLUTION.
221    o pkg/seaice:
222      - remove legacy branch code.
223      - retire SEAICE_GROWTH_LEGACY and SEAICE_CAP_HEFF accordingly.
224    o verification/*/code*/SEAICE_OPTIONS.h:
225      - remove documentation for retired CPP flags (SEAICE_GROWTH_LEGACY,
226        SEAICE_CAP_HEFF).
227    o pkg/cheapaml:
228      - use standard routine (S/R GET_PERIODIC_INTERVAL) to decide when it is time
229        to load new forcing fields.
230      - add missing "_d 0" where it's needed; + some editing (improve indentation).
231      - remove switch to "-r8" compiler option (no longer needed) in verification
232        cheapAML_box, keep same output (small trucation error differences).
233    o verification/offline_exf_seaice:
234      - add thermodynamics only test.
235    o verification/cheapAML_box:
236      - split the domain in 8 (2x4) tiles; add MPI and multi-threaded test;
237        keep same output (same 14 digits for cg2d).
238      - switch on "-r8" compiler option (some numerical values are missing
239        the "_d 0") and update output (only 6 digits for cg2d were preserved).
240    
241    checkpoint64b (2012/12/24)
242    o pkg/cheapaml:
243      - remove un-used variables (Qnet,EmPmR) from pickup files.
244      - store tendency of advected variables into cheapaml pickup file
245        and fix the AB-2 restart.
246    o verification/offline_exf_seaice and lab_sea adjoint:
247      - switch to new code (#undef SEAICE_GROWTH_LEGACY).
248      - switch to 4 time steps in offline, consistent with lab_sea.
249      - match parameters from SEAICE_GROWTH_LEGACY branch in data.seaice.
250      - update results after change of experiment seaice.
251    o pkg/seaice:
252      - remove option SEAICE_MULTICATEGORY; has been replaced with run-time
253        parameter SEAICE_multDim. Issue a warning if SEAICE_MULTICATEGORY is
254        still defined since SEAICE_multDim needs to be set to MULTDIM value (from
255        SEAICE_SIZE.h) to recover previous #define SEAICE_MULTICATEGORY default.
256    o model/src:
257      - add run-time parameter to select CG2D solver minimum-residual solution
258        (in case of a poor convergence).
259    o pkg/seaice/seaice_lsr.F
260      - move calculation of matrix coefficients into new
261        S/R SEAICE_CALC_LSR_COEFFS; for now this routine remains in the same
262        file; the main purpose of this change is to be able to reuse the code
263        in S/R SEAICE_PRECONDITIONER
264      - modify the computation of the residual so that the mass of sea-ice
265        is not used twice; this simplifies the calculations, but since
266        the residual is never used except when LSR_mixIniGuess.ge.4---and this is
267        not tested in testreport---this does not affect the testreport results.
268    o verification/seaice_obcs:
269      - disable SEAICE_GROWTH_LEGACY; reset input files to match those of
270        verification/lab_sea/input.salt_plume; changes results/output.txt*
271    o model/src:
272      - adapt quasi-hydrostatic formulation to work with p or p* coordinate.
273    o pkg/seaice:
274      - improve description of parameters in seaice_fgmres.F and start
275        cleaning up the code
276      - change name of SCALPROD to SEAICE_SCALPROD and modify meaning of
277        second argument
278      - add a metric based on grid cell area to SEAICE_SCALPROD; update
279        results of offline_exf_seaice.dyn_jfnk
280      - compute initial residual norm in seaice_jfnk based on SEAICE_SCALPROD
281    o pkg/aim_v23:
282      - fix an other bug in dissipation heating (grid-cell area was missing).
283    o model/src + pkg/seaice:
284      - add global (multi-tile) linear solver for pair of tri-diagonal system
285        along X and Y lines, respectively for U and V component.
286        Note: 1) MPI and cube-exchange not yet coded.
287            2) probably not accurate for poorly conditioned / large size problem.
288      - add option for SEAICE_LSR to use global (multi-tile) tri-diagonal solver;
289        default: not compiled and not used.
290    o pkg/seaice:
291      - first attempt at a multi-threaded fgmres solver for the JFNK solver:
292        introduce bi/bj loops and use global_sum_tile_rl instead of
293        mpi_allreduce in seaice_fgmres.F
294      - improve diagnostics output for fgmres solver (seaice_fgmres.F)
295      - replace a few unnecessary goto statements by if-blocks  (seaice_fgmres.F)
296      - add a verification experiment for JFNK in offline_exf_seaice
297    o verification:
298      - change (for now, only fwd test) offline_exf_seaice experiment:
299        use a re-entrant channel with idealized coastline (trapezoidal shape)
300        at southern boundary to explore seaice dynamics and thermodynamics
301        with simple forcing. Main set-up has dynamics+thermo and SST relaxation;
302        secondary test (input.thsice) use thermodynamics only with SST relaxation.
303      - add seaice-dynamics only secondary test using LSR and pkg/thsice advection.
304    o pkg/exf:
305      - disable "sstExtrapol" when Nr=1
306    o verification:
307      - add new experiment "cheapAML_box" (simple 1 layer set-up from Bruno Deremble)
308        to test pkg/cheapaml.
309    o pkg/aim_v23 & pkg/shap_filt:
310      - fix dissipation heating (erroneous gravity multiplication factor).
311    o pkg/seaice:
312      - remove unused field pressPre from jfnk solver
313      - rename two subroutines in seaice_preconditioner.F
314    o eesupp/src:
315       - S/R MDSFINDUNIT avoids reserved unit numbers (scrUnit1, eeDataUnit ...)
316    o pkg/seaice/seaice_preconditioner.F: fix preconditioner once again
317       - remove wrong parts of the rhs and the lhs (were in there
318         because I did not understand the concept of this preconditioner)
319       - add an exchange between u- and v-sweep. This increases communication
320         by a factor of two but improves the convergence of jfnk. Ideally,
321         one would like the u- and v-sweep to be independent. So far within
322         undocumented ifdefs
323       - reorganize the extra computations for printing the residuals
324    o tools/genmake2:
325      - comment out the "mpif.h" include in NetCDF test programm (for MPI built)
326        since it's not necessary (and was preventing to use MNC in some cases).
327    
328    checkpoint64a (2012/11/16)
329    o pkg/autodiff:
330      - improve pkg-internal logical parameter switch (inAd/inFwd mode) so that
331        autodiff_readparms.F no longer depends on calling order (within
332        packages_readparms.F) and no longer requires to include ${PKG}_PARMS.h):
333        rename param turnFreeDriftInAdMode to SEAICEuseFREEDRIFTswitchInAd
334        and change param SEAICEuseDYNAMICSinAdMode to SEAICEuseDYNAMICSswitchInAd.
335    o pkg/obcs:
336      - adding tidal velocity forcing capability to obcs
337        for usage example, see verification/seaice_obcs/input.tides
338    o pkg/seaice:
339      - turn the LSR-relaxation parameters WFAU/V into runtime parameters
340        SEAICE_LSRrelaxU/V
341      - introduce runtime parameter SEAICEetaZmethod (=0 by default)
342    o pkg/aim_v23:
343      - implement heating from friction (bottom friction and stratospheric drag).
344    o pkg/shap_filt:
345      - fix diagnostic "SHAP_dKE" (was 2 time smaller); implement heating from
346        dissipation but only for Shap_funct=2, active when addFrictionHeating=T.
347    o model/src:
348      - move AddMass common block from DYNVARS.h to FFIELDS.h; allow to read-in
349        time-constant addMass field from file (addMassFile);
350      - support for heating due to friction (and Kinetic Energy dissipation):
351        add option, run-time switch and 3-D field array + support code ; each pkg
352        or S/R can add heating contribution (if there is a sink of KE); the sum is
353        accounted for as a Temperature tendency term (EXTERNAL_FORCING_T).
354  o pkg/seaice:  o pkg/seaice:
355    - complete merge of ITD code into seaice_growth.F    - complete merge of ITD code into seaice_growth.F
356      from MITgcm_contrib/torge/itd/code/      from MITgcm_contrib/torge/itd/code/
# Line 15  o pkg/seaice: Line 362  o pkg/seaice:
362      + introduce global field etaZ      + introduce global field etaZ
363      + add different methods for computing etaZ, for now the old      + add different methods for computing etaZ, for now the old
364        method (simple averages of eta to Z-points) is hardwired        method (simple averages of eta to Z-points) is hardwired
365      + replace etaMeanZ by etaZ in seaice_lsr, seaice_calc_residual,      + replace etaMeanZ by etaZ in seaice_lsr, seaice_calc_residual,
366        seaice_preconditioner        seaice_preconditioner
367    - simplify computations for SEAICE_ZETA_SMOOTHREG    - simplify computations for SEAICE_ZETA_SMOOTHREG
368    - seaice_preconditioner:    - seaice_preconditioner:
369      + replace one remaining press by pressLoc (mistake)      + replace one remaining press by pressLoc (mistake)
370      + adjust printing of residuals      + adjust printing of residuals
371    - improve I/O of diagnostics of JFNK in seaice_jfnk.F:    - improve I/O of diagnostics of JFNK in seaice_jfnk.F:
372      + add (SEAICE.h) and rename some counters (initiliased in      + add (SEAICE.h) and rename some counters (initiliased in
373        seaice_init_fixed.F)        seaice_init_fixed.F)
374      + add _BEGIN/END_MASTER (myThid)  around print statements      + add _BEGIN/END_MASTER (myThid)  around print statements
375      + print total number of iterations and failures over SEAICE_monFreq      + print total number of iterations and failures over SEAICE_monFreq
# Line 34  o pkg/seaice: Line 381  o pkg/seaice:
381      (seaice_jfnk.F, seaice_fgmres.F)      (seaice_jfnk.F, seaice_fgmres.F)
382    - seaice_calc_l/rhs.F: replace maskW/S by maskInW/S; this fixes    - seaice_calc_l/rhs.F: replace maskW/S by maskInW/S; this fixes
383      a serious convergence problem when open boundaries are involved      a serious convergence problem when open boundaries are involved
384  o pkg/ggl90: fix computation of control volumes for the case of  o pkg/ggl90: fix computation of control volumes for the case of
385    ALLOW_GGL90_HORIZDIFF (probably not used very often): move control volumes    ALLOW_GGL90_HORIZDIFF (probably not used very often): move control volumes
386    up half a grid cell from C-centered to W-centered (pointed out by C. Eden)    up half a grid cell from C-centered to W-centered (pointed out by C. Eden)
387  o pkg/seaice: simplify seaice_evp by avoiding use of extra fields u/vIceC  o pkg/seaice: simplify seaice_evp by avoiding use of extra fields u/vIceC
388  o pkg/autodiff  o pkg/autodiff
389    - Add inAdMode switch for SEAICEuseDYNAMICS:    - Add inAdMode switch for SEAICEuseDYNAMICS:
390      SEAICEuseDYNAMICSinAdMode      SEAICEuseDYNAMICSinAdMode
391      (extend logic in ADAUTODIFF_INADMODE_SET)      (extend logic in ADAUTODIFF_INADMODE_SET)
392  o pkg/seaice  o pkg/seaice
393    - Step 1 of merging ice-thickness distribution (ITD) code from    - Step 1 of merging ice-thickness distribution (ITD) code from

Legend:
Removed from v.1.1765  
changed lines
  Added in v.1.1835

  ViewVC Help
Powered by ViewVC 1.1.22