/[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.1277 by mlosch, Fri May 21 10:16:59 2010 UTC revision 1.1294 by jmc, Mon Sep 6 00:13:43 2010 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/ptracers:
8       option for ptracer to convert Salt Relax into additional EmP.
9        tested in exp. global_ocean.90x40x15.dwnslp (update output)
10    
11    checkpoint62j (2010/08/25)
12    o pkg/ggl90:
13       other minor changes: remove 3-D temp array gTKE (+ add argument myIter)
14    o pkg/dic: car_flux.F, phos_flux.F
15      - reduce number of exp-calls in order to improve performance
16      - clean up a little (replace fields by their macros, etc., fix
17        typo in CPP-flag)
18    o pkg/ggl90: minor changes
19      - GGL90diffKrS was removed --> always use GGL90diffKr
20      - GGL90viscAr was removed --> replaced with GGL90viscArU, GGL90viscArV
21      - hack of mxlMaxFlag=2 --> ensure mixing between first and second level
22        (commented out for now)
23      - change in max/min operations to ensure that smoothing is ok
24      - smoothing of GGL90viscAr was moved to ggl90_calc.F (as done for GGL90diffKr)
25      - always use diffKrNrT as background profile (i.e. never use diffKr field)
26    o pkg/cfc: bug fix, AREA(i,j,1,bi,bj) -> AREA(i,j,bi,bj)
27    o pkg/dic:
28      - model/src/impldiff.F: if TARGET_NEC_SX, extend loop ranges for better
29        vectorization
30      - small bug fix in insol for the unlikely case of a cartesian grid
31      - towards vectorizing the dic package: bio_export.F, car_flux.F, phos_flux.F
32        + now vectorize, which also removes adjoint recomputations;
33        + replace integer maksp1 by _RL maskp1
34        + replace a**x by exp(x*log(a)) in phos_flux.F for speed
35    
36    checkpoint62i (2010/07/21)
37    o pkg/flt:
38      - with OBCS: stop floats which enter the OB region
39    o model/src:
40      - use tempVertAdvScheme & saltVertAdvScheme (instead of horizontal ones)
41        for implicit vertical advection.
42    o pkg/seaice:
43     - account for melting in seaice age evolution.
44     - remove double counting of seaice ridging effect on seaice age.
45    
46    checkpoint62h (2010/06/18)
47    o pkg/exch2:
48     - remove exch2_*xy_rx files: call was replaced with exch2_*3d_rx(myNz=1).
49    o tools/genmake2
50      - remove "-pdefault" option: redundant with the use of "packages.conf";
51      - remove file pkg/pkg_default : set the default as a pkg group
52        ("default_pkg_list") defined in pkg/pkg_groups;
53      - fix for case pkg/pkg_depend is missing (was hanging before);
54      - add option "-pgroups" to specify a different pkg_groups than the default.
55    o verification/adjustment.cs-32x32x1:
56       add a "minimal" set-up test (code_min & input_min) which only compiles
57       eesupp/src and the 2 pkgs (exch2 & debug) which don't need model/src & inc.
58    o tools/genmake2
59      - extend pkg_depend rules to model & eesupp (e.g., if model depend on [pkg]))
60      - fix details of checking for mnc & profile pkg when NetCDF is unavailable.
61  o pkg/exf: merge exf_bulk_largeyeager04 into exf_bulkformulae because these  o pkg/exf: merge exf_bulk_largeyeager04 into exf_bulkformulae because these
62    files are nearly the same anyway.    files are nearly the same anyway.
63    Step 1: make exf_bulkformulae look like exf_bulk_largeyeager04:    Step 1: make exf_bulkformulae look like exf_bulk_largeyeager04:
# Line 12  o pkg/exf: merge exf_bulk_largeyeager04 Line 65  o pkg/exf: merge exf_bulk_largeyeager04
65     - 1./exf(Const/T) -> exf(-Const/T) (big change in the results)     - 1./exf(Const/T) -> exf(-Const/T) (big change in the results)
66     - replace rhonil by rhoConstFresh in computation of evap (bug fix)     - replace rhonil by rhoConstFresh in computation of evap (bug fix)
67     - replace u/vstress=tau*rd*ws*cw by tau*rd*u/vwind (changes results)     - replace u/vstress=tau*rd*ws*cw by tau*rd*u/vwind (changes results)
68     - replace     - replace
69       rd(i,j)= rdn(i,j)/(exf_one - rdn(i,j)/karman*psimh )       rd(i,j)= rdn(i,j)/(exf_one - rdn(i,j)/karman*psimh )
70       shn    = sh(i,j,bi,bj)*rd(i,j)/rdn(i,j)       shn    = sh(i,j,bi,bj)*rd(i,j)/rdn(i,j)
71       by       by
72       shn    = sh(i,j,bi,bj)/(exf_one - rdn(i,j)/karman*psimh )       shn    = sh(i,j,bi,bj)/(exf_one - rdn(i,j)/karman*psimh )
73       (changes results)       (changes results)
74     -> exf_bulkformulae v1.22,     -> exf_bulkformulae v1.22,
75        update verification experiments lab_sea, offline_exf_seaice, seaice_obcs        update verification experiments lab_sea, offline_exf_seaice, seaice_obcs
76        (lab_sea: output.hb87.txt 1.11, output.lsr.txt 1.25, output.salt_plume.txt 1.13,        (lab_sea: output.hb87.txt 1.11, output.lsr.txt 1.25, output.salt_plume.txt 1.13,
77                  output.txt 1.63                        output.txt 1.63
78         offline_exf_seaice: output.seaicetd.txt 1.7         offline_exf_seaice: output.seaicetd.txt 1.7
79         seaice_obcs: output.txt 1.10)         seaice_obcs: output.txt 1.10)
80    Step 2: do the actual merge and remove exf_bulk_largeyeager04.F    Step 2: do the actual merge and remove exf_bulk_largeyeager04.F
81     -> exf_bulkformulae v1.23,     -> exf_bulkformulae v1.23,
82        unfortunately requires updating lab_sea.salt_plume (6 matching digits),        unfortunately requires updating lab_sea.salt_plume (6 matching digits),
83        and global_ocean.cs32x15.icedyn (only 11 matching digits)        and global_ocean.cs32x15.icedyn (only 11 matching digits)
84      Also update output_adm of exp. lab_sea (all 4) and offline_exf_seaice.
85  o adjoint of exch-1:  o adjoint of exch-1:
86   - pass high-level EXCH S/R through TAF (eesupp/src/exch_ad_diff.list)   - pass high-level EXCH S/R through TAF (eesupp/src/exch_ad_diff.list)
87     (note: was already like this when using EXCH-2) and remove flow dir     (note: was already like this when using EXCH-2) and remove flow dir

Legend:
Removed from v.1.1277  
changed lines
  Added in v.1.1294

  ViewVC Help
Powered by ViewVC 1.1.22