/[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.1670 by jmc, Fri Jun 15 22:01:45 2012 UTC revision 1.1702 by jmc, Thu Aug 2 22:48:11 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/autodiff:
8      re-write active I/O high-level (control) S/R:
9      - rename  S/R ACTIVE_READ/WRITE_RL to ACTIVE_READ/WRITE_3D_RL
10      - add 1 more argument (useCurrentDir) to replace the "_LOC" 2nd set of S/R.
11      - use standard pkg/mdsio I/O routines (MDS_READ/WRITE_SEC_XZ/YZ  and
12        MDS_READ/WRITE_FIELD); change loops to multi-threads.
13      - update and merge active_file_control_slice.flow into active_file_control.flow
14      - update the calls in lower level S/R (active_file.F, active_file_g.F and
15        active_file_ad.F) keeping the argument list and function unchanged.
16    o autodiff and RS=real*4:
17      - call the right type (_RS instead of _RL) of S/R in few output S/R (pkg/exf
18        ad-monitor and snapshots); disable arrType='RS' in mdsio_gl*.F ;
19      - change argument type of 3-D mask argument to _RS to match type in the call
20        (in seaice_cost*.F, ctrl_*_gen.F and *ctrl_bound.F); to be continued.
21    o pkg/thsice:
22      - re-anable balanceEmPmR when useSEAICE=T with useThSIce=T.
23      - option to correct ocean fresh-water flux for imbalance of Atmos+Land
24        fresh-water flux: uniform correction or proportional to local precip.
25    o pkg/ctrl:
26      - new header file CTRL_SIZE.h for parameters maxCtrlArr2D, maxCtrlArr3D
27      - redefine CPP option ALLOW_BOTTOMDRAG_CONTROL to
28                            ALLOW_BOTTOMDRAG_CONTROL_NONGENERIC
29      - verification/hs94.1x64x5/ tests ALLOW_GENARR{2D,3D}_CONTROL
30    
31    checkpoint63q (2012/07/30)
32    o pkg/autodiff:
33      note about monitor and snap-shot of ad-variables:
34      a) need to apply ADEXCH before monitor or output of ad-vars to include
35       overlap contributions (was done for adjDump but missing for monitor).
36      b) since ADEXCH implies adding overlap values to interior array, machine
37       truncation error is expected when adding an ADEXCH call in the middle of
38       the time-stepping (although mathematically identical).
39      modifs:
40      - fix some incorrect type (RL/RS, UV/scalar) in ADEXCH calls and ad-vars
41        declaration (adEddyPsiX,adEddyPsiY in adcommon.h).
42      - add new run-time params (dumpAdVarExch & mon_AdVarExch) to select how  to
43        apply ADEXCH before monitor or snap-shot of ad-variables:
44           =0 : no ADEXCH ; =1 : do ADEXCH ; =2 : apply ADEXCH on a local copy.
45      - implement new method (copy+adexch) for snap-shot and monitor of main model
46        ad-vars (initially not used by default -> output unchanged).
47      - change default (set to 2) to use new method and update few output_adm.txt
48        with accurate ad-monitor (global_ocean.90x40x15, tutorial_global_oce_biogeo
49        and both tutorial_tracer_adjsens tests).
50      - switch 2 global_ocean.cs32x15 AD-tests to AB-2 (seaice_dynmix & thsice)
51        and turn off momDissip_In_AB in the 2 other (needed for stable AB-3).
52    o pkg/ctrl:
53      enable the use of a variable number (maxCtrlArr2D, maxCtrlArr3D) of
54      generic control variables via
55      #define ALLOW_GENARR2D_CONTROL and/or #define ALLOW_GENARR3D_CONTROL
56      Only required customization should be S/R ctrl_map_ini_genarr.F
57      (routine in repository contains example)
58    o pkg/exf:
59      - fix and refine checking of surface-relaxation setting when using EXF
60    o verification (adjoint exp):
61      - reduce length of simulation by half for experiment global_ocean.cs32x15
62        (std, seaice & seaice_dynmix) and exp tutorial_dic_adjoffline; update output.
63    o pkg/mom_common (mom_u/v_bottomdrag), pkg/shelfice (shelfice_u/v_drag)
64      - replace if statements KE.ne.0 with KE.gt.0 to avoid sqrt of negative numbers
65        of KE that can occur with aggressive optimization
66      + put quadratic bottom drag calculation in separated loops (only done if
67        using bottomDragQuadratic)
68    o model/src: CG2D_NSA
69      - clean-up:  stop if cg2dNormaliseRHS=T and AUTODIFF
70         and replace GLOBAL_SUM calls with GLOBAL_SUM_TILE.
71      - in test-exp that uses CG2D_NSA (bottom_ctrl & tutorial_tracer_adjsens),
72         change cg2d residual target to be expressed in Wunits (=> do not normalise
73         RHS ; this fix global_max Pb with TAF); update output.
74    o verification/tutorial_tracer_adjsens:
75       improve parameter consistency (and get rid of warnings):
76       - use deltaTFreeSurf=deltaTtracer (better with NonLin FreeSurf);
77       - switch Temp Adv Scheme from 81 to 80 (no limiter since theta < 0 is physical)
78       - use staggerTimeStep (for stability) in som81; use default rotation period.
79    o pkg/exch2:
80      - with empty facet: fix compact-format (W2_mapIO=1) definition (was previously
81        reset to 0 = 1 long line in X)
82    o pkg/mdsio:
83      - fix reading of dimensions from meta file for large-size domain
84    o model/src:
85      - fix saltIsActiveTr setting for IdealGas eosType (eosType is 6 character long);
86      - to refine CS-grid check, add logical flag "hasWetCSCorners": true if using
87        Cubed-Sphere Exch with CS-corners inside the domain;
88        make new S/R INI_GLOBAL_DOMAIN from code in ini_linear_phisurf.F to calculate
89        globalArea and to set hasWetCSCorners.
90      - add warning if usingCurvilinearGrid and momAdvection in flux-form (missing
91        metric terms); stop if hasWetCSCorners=T and momAdvection in flux-form.
92      - re-activate the stop if useCDscheme and hasWetCSCorners=T (previously if
93        useCDscheme and useCubedSphereExchange).
94    o pkg/seaice/seaice_growth.F :
95      - compute the SEAICE_DISABLE_HEATCONSFIX term accordingly
96        for the (.NOT.useRealFreshWaterFlux).OR.(nonlinFreeSurf.EQ.0)
97        when the previous code was not correct.
98      - in all cases diagnoze the boundary condition mismatch to SIaaflux
99      - in the case of useRealFreshWaterFlux.AND.(nonlinFreeSurf.GT.0) add
100        that term to QNET (essentially to set the melt/freeze water to 0degC).
101        when SEAICEheatConsFix is true, so that the ocean+ice budget heat is closed.
102    o verification/global_ocean.cs32x15/input.seaice :
103      - add SEAICEheatConsFix in data.seaice, ensuring closed ocean+ice heat budget.
104      - add diagnostics (commented out) for budget test using my matlab codes (gcmfaces).
105      - update results (output.seaice.txt) accordingly.
106    o verification/lab_sea/input/data.seaice :
107      - remove SEAICEheatConsFix, which is now be tested
108        in global_ocean.cs32x15. The presently coded fix
109        is only consistent with real fresh water + nlfs.
110      - update results (output.txt) accordingly.
111    o pkg/salt_plume: added diagnotic for salt tendency (oceSPtnd).
112    o AD_CONFIG.h file:
113      - in genmake2: remove "#undef ALLOW_ECCO_OPTIMIZATION" from AD_CONFIG.h;
114      - remove #include "AD_CONFIG.h" from all included OPTIONS files and
115        add it explicitly in each fortran src file where it is needed.
116        motivation: header file AD_CONFIG.h is generated/modified after "make depend"
117        thus introducing potentially wrong dependency; therefore, better to include
118        it only where it's really needed, and after any other included OPTIONS file
119        (less tempting to bring conditional includes according to ALLOW_ADJOINT_RUN
120        or ALLOW_TANGENTLINEAR_RUN).
121    
122    checkpoint63p (2012/07/06)
123    o pkg/autodiff:
124      - rename S/R INI_AUTODIFF to AUTODIFF_INIT_VARIA ;
125      - create new header file "AUTODIFF_PARAMS.h" for pkg/autodiff parameters
126        which are now read from new parameter file "data.autodiff" (inAdExact
127        previously in "data", use{KPP/GMRedi/SEAICE}inAdMode previously in data.pkg)
128      - add file "data.autodiff" in all verification/*/input_ad/ directories.
129      - add run-time parameter to turn On/Off SEAICEuseFREEDRIFT in adjoint/forward
130        mode (used in global_ocean.cs32x15.seaice_dynmix test exp.)
131    o verification/tutorial_tracer_adjsens/
132      - add extra sub-verification which uses "SOM" advection scheme
133        (2nd Order-Moment Advection Scheme, Prather Limiter) with
134          #define GAD_ALLOW_TS_SOM_ADV in GAD_OPTIONS.h
135        and in data:
136          multiDimAdvection=.TRUE.,
137          tempAdvScheme=81,
138          saltAdvScheme=81,
139    o model/src:
140      - introduce ALLOW_BALANCE_RELAX which allow the removal
141       of the global mean of relaxation terms by setting
142       balanceThetaClimRelax and balanceSaltClimRelax
143      - disable balanceEmPmR and balanceQnet in the case when useSeaice.
144       This case is now treated appropriately in seaice_growth.F
145    o pkg/seaice:
146      - do balanceEmPmR and balanceQnet based on the net fluxes
147        (SItflux) that enter the ocean+ice system rather than QNET
148        and EMPMR. Works best in real fresh water.
149      - SIatmFW, SIatmQnet, and SItflux computations had to be moved
150        out of the diagnotics bloc, and stored in global arrays.
151    
152    checkpoint63o (2012/06/29)
153    o vertical mixing schemes:
154      - remove unused S/R CALC_BUOYANCY (left from branch-atmos merging)
155      - replace computation of density (in Function STATE1, opps_calc.F) by a call
156        to S/R FIND_RHO_SCALAR
157      - pass sigmaR to S/R PP81_CALC, MY82_CALC (but not yet used) and to GGL90_CALC
158        and use it for N^2 calculation in ggl90_calc.F (save 2 density computations);
159        affects output (vermix.ggl90) at truncation level.
160    o testreport:
161      - change adjustment of SIZE.h for mpi+mth testing: preserve enough tiles
162        (nSx,nSy) for the number of threads (from eedata.mth)
163    o model/src:
164      - remove 2nd set of calls at the top of initialise_varia.F (Adjoint part)
165        related to Non_Lin Free-Surf or Bottom-Control (but not longer necessary).
166    o verification/tutorial_tracer_adjsens/
167      - compile with ALLOW_CG2D_NSA
168      - run with nonlinFreeSurf=3
169      - update reference output_adm.txt
170    o tools/genmake2:
171      - add "-DHAVE_NETCDF" to the DEFINES list when NetCDF is available ;
172        refine usePROFILES switching off (only when NetCDF is not available).
173    o verification (atmospheric set-up):
174      - change eosType='IDEALGAS' to eosType='IDEALG' to match variable declaration
175    o pkg/profiles : refine profiles and files handling.
176    o model/src and pkg/ecco : introduce run-time switch usePROFILES.
177    o model/src/the_main_loop.F, forward_step.F and pkg/exf/EXF_OPTIONS.h :
178      - changes to use model/src/the_main_loop.F rather than the ecco version
179        in ecco type adjoint runs.
180    o model/src:
181      - move computation of recip of grid distance & area from INI_MASKS_ETC to INI_GRID
182      - move setting of h0Fac[C,W,S] from INI_LINEAR_PHISURF to INI_MASKS_ETC
183      - update_masks_etc.F: rename SMOOTH*_R4,R8 function to the corresponding type (RS,RL)
184  o model/src:  o model/src:
185    - fix S/R UPDATE_CG2D for ALLOW_DEPTH_CONTROL case (was empty before);    - fix S/R UPDATE_CG2D for ALLOW_DEPTH_CONTROL case (was empty before);
186      update output of test experiment bottom_ctrl_5x5.      update output of test experiment bottom_ctrl_5x5.
187  o pkg/generic_advdiff:  o pkg/generic_advdiff:
188    - implement vertical bi-harmonic diffusion (for now, only for T & S and    - implement vertical bi-harmonic diffusion (for now, only for T & S and

Legend:
Removed from v.1.1670  
changed lines
  Added in v.1.1702

  ViewVC Help
Powered by ViewVC 1.1.22