Skip to content

Releases: GEOS-ESM/FVdycoreCubed_GridComp

Fix ak/bk via interp_restarts

29 Aug 15:46
73ea037

Choose a tag to compare

This release of FVdycoreCubed_GridComp fixes #309 by correcting the ak/bk written to an fv restart via interp_restarts.x to better match those in m_set_eta. The difference was mainly due to writing out r4 data as r8 leading to slightly different values. See below for more.

This is non-zero-diff in a subtle way. The NZD-ness comes in if you compare restarts remapped by v2.14 and older vs v2.15. So, if a user uses old restarts, then v2.14 and v2.15 are zero-diff. But if a user remaps restarts with v2.15 then the resulting restarts will cause the run to be non-zero-diff due to the changes in ak/bk.

Since our model uses the ak/bk from fvcore_internal_rst when running the model, this will then cause runs to be NZD.


The change makes the ak/bk match the ak/bk from m_set_eta.

v2.14:

 AK = 1, 2.00000023841858, 3.27000045776367, 4.75850105285645,
    6.60000133514404, 8.93450164794922, 11.9703016281128, 15.9495029449463,
    21.1349029541016, 27.8526058197021, 36.5041084289551, 47.5806083679199,
    61.6779098510742, 79.5134124755859, 101.944023132324, 130.051025390625,
...
 BK = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.17541323527848e-09,
    0.00696002459153533, 0.0280100405216217, 0.0637200623750687,
    0.113602079451084, 0.156224086880684, 0.200350105762482,
...

v2.15:

 AK = 1, 2.0000002, 3.2700005, 4.7585009, 6.6000011, 8.9345014, 11.970302,
    15.949503, 21.134903, 27.852606, 36.504108, 47.58061, 61.677911,
    79.513413, 101.94402, 130.05102, 165.07903, 208.49704, 262.02105,
    327.64307, 407.6571, 504.6801, 621.68012, 761.98417, 929.2942, 1127.6902,
...
 BK = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.175413e-09,
    0.0069600246, 0.028010041, 0.063720063, 0.11360208, 0.15622409,
    0.20035011, 0.24674112, 0.29440312, 0.34338113, 0.39289115, 0.44374018,
...

m_set_eta:

        data a72 / &
         1.0000000,       2.0000002,       3.2700005,       4.7585009,       6.6000011, &
         8.9345014,       11.970302,       15.949503,       21.134903,       27.852606, &
         36.504108,       47.580610,       61.677911,       79.513413,       101.94402, &
         130.05102,       165.07903,       208.49704,       262.02105,       327.64307, &
...

        data b72 / &
         0.0000000,       0.0000000,       0.0000000,       0.0000000,       0.0000000, &
...
         0.0000000,       0.0000000,       0.0000000,       0.0000000,       0.0000000, &
         0.0000000,   8.1754130e-09,    0.0069600246,     0.028010041,     0.063720063, &
        0.11360208,      0.15622409,      0.20035011,      0.24674112,      0.29440312, &
        0.34338113,      0.39289115,      0.44374018,      0.49459020,      0.54630418, &
...

What's Changed

Full Changelog: v2.14.1...v2.15.0

Add MZ Export

19 May 14:12
329ab6d

Choose a tag to compare

This is a patch on v2.14 which adds a new MZ export which is a single-precision analogue to MFZ (which is double-precision). The X and Y already had both variants as an export.

This is brought over from v2.13.1


Full Changelog: v2.14.0...v2.14.1

v2.13: Add MZ export

19 May 14:18

Choose a tag to compare

This is a patch on v2.13 which adds a new MZ export which is a single-precision analogue to MFZ (which is double-precision). The X and Y already had both variants as an export.


Full Changelog: v2.13.0...v2.13.1

Remove OS Detection at NCCS

19 Mar 14:44
714c2fe

Choose a tag to compare

This release removes some now-unneeded OS detection at NCCS in fv3_setup as we no longer have the dual OSs.


What's Changed

Full Changelog: v2.13.0...v2.14.0

Add dependency to fms_r4

06 Jan 14:50
3405efa

Choose a tag to compare

This release adds a dependency to fms_r4. We need this because of the weird way we build FV3 as r4 but link to the r8 version of FMS. In that case, we still need to point to the include files from r4 FMS.

But, CMake in that case has no idea that to build, say, Moist, that we need to build fms_r4 before building this.

NOTE

This change is NOT needed in GEOSgcm v12 (i.e., v3) because in that case FMS is in Baselibs/Spack and so CMake doesn't need to know.

v1.2: Updates for CTM

09 Dec 14:26

Choose a tag to compare

This is a patch update to v1.2 with fixes for the AdvCore needed by CTM


Full Changelog: v1.2.17...v1.2.18

Fixes for Spack Runs of FV3 Standalone

26 Aug 13:19
b31d8b5

Choose a tag to compare

This release of FVdycoreCubed_GridComp has minor fixes to fv3_setup and fv3.j for spack based runs of GEOSfvdycore


What's Changed

Full Changelog: v2.11.1...v2.12.0

Fix use of variable before set

29 Apr 16:03
cc9e8fd

Choose a tag to compare

This patch release of v2.11 fixes a bug where in a variable was evaluated before set.

All testing shows this as zero-diff to v2.11.0


What's Changed

Full Changelog: v2.11.0...v2.11.1

Use CMake to detect MPI Stack

21 Feb 16:12
a0d924a

Choose a tag to compare

This release of FVdycoreCubed_GridComp updates fv3_setup to use CMake detection of MPI stack rather than relying on $BASEDIR. This requires ESMA_cmake v3.41.0


What's Changed

Full Changelog: v2.10.0...v2.11.0

v1: Modify LONG_NAME of DOXDTDYN

26 Jan 15:50
245791d

Choose a tag to compare

This is an update to the v1 release of FVdycoreCubed_GridComp. The release modifies the LONG_NAME of DOXDTDYN


What's Changed

Full Changelog: v1.13.0...v1.13.1