Skip to content

(1) update to MOM6 main branch 20220729 commit (GFDL-candidate-20220721) (2) cap update: supporting traditional and ESMF-managed threading#99

Merged
jiandewang merged 86 commits into
NOAA-EMC:dev/emcfrom
jiandewang:feature/update-to-main-20220729
Aug 12, 2022
Merged

Conversation

@jiandewang
Copy link
Copy Markdown
Collaborator

@jiandewang jiandewang commented Jul 30, 2022

(1) MOM6 main branch is updated on 20220729, need to make corresponding updating in dev/emc.
See detail in #98
(2) modify nuopc cap to supporting traditional and ESMF-managed threading, see detail at #100

Hallberg-NOAA and others added 30 commits April 26, 2022 03:21
  Removed unused module use statements for EOS_type, calculate_density or
calculate_density_derivs in 20 files.  All answers are bitwise identical.
  Added comments documenting the units of the variables in diagnoseMLDbyEnergy
and slightly refactored this routine to clean up its call to calculate_density
and eliminated a redundant array of interface depths.  Also fixed several
spelling errors in comments. All answers and diagnostics are bitwise identical.
  Documented the units of variables as they actually appear in subroutine calls
to various equation of state or density integral routines, eliminating the
potentially confusing lists of alternative units in comments.  Only comments are
changed, and all answers are bitwise identical.
  Revised the calculation of the drho_dT and drho_dS diagnostics to use
dimensional consistency testing, along with the newer interface to
calculate_density that takes dimensionally rescaled arguments.  With this
change, the units of most the variables in this section of code match their
descriptions in comments, although there is still the local re-use of some 3-d
arrays as temporaries with units that do not match.  All answers and output are
bitwise identical.
  Refactored MOM_density_integrals to use the newer calculate_density_1d() and
calculated_stanley_density_1d() interfaces to the equation of state routines,
and to thereby shift all related dimensional rescaling into MOM_EOS.F90.  Also
revised the comments describing the arguments to a number of the equation of
state routines to eliminate confusing options and clearly indicate the units of
each input and output variable.  As a part of this change, the units of the
rho_ref argument to calculate_stanley_density_1d were changed from [kg m-3] to
[R ~> kg m-3] to match the equivalent routine calculate_density_1d().  Because
this does not appear to have been used previously, this should not be a problem,
and answers will not change unless a dimensional consistency test is underway.
All answers are bitwise identical, but there is one minor change to the rescaled
units of one apparently unused optional argument.
  Modified the comments describing the units of the arguments to
int_density_dz_wright, int_spec_vol_dp_wright int_density_dz_linear and
int_spec_vol_dp_linear so that they reflect the units as they are used in
practice where they are called from analytic_int_density_dz or
analytic_int_specific_vol_dp.  All answers are bitwise identical.
  This commit has several interface changes to some little-called equation of
state routines to follow the patterns set by the most commonly used equation
of state routines.  All answers in test cases are bitwise identical.

 - Added calculate_TFreeze_1d to the overloaded interface calculate_TFreeze,
   with dimensional rescaling of its arguments taken from its EOS_type argument
   and an optional two-element domain, rather than two mandatory integer
   arguments used with calculate_TFreeze_array.  The older interface is also
   retained within the overloaded interface to calculate_TFreeze.

 - Modified calculate_density_scalar and calculate_stanley_density_scalar to use
   units of [R ~> kg m-3] for its rho_ref optional argument, following the
   pattern from calculate_density_1d.  These arguments were not previously used.

 - Renamed the internally visible routine calculate_density_second_derivs_array
   to calculate_density_second_derivs_1d and changed its argument list to take
   an optional two-element domain, rather than two mandatory integer arguments,
   to follow the pattern set by calculate_density_derivs_1d.  Because this
   routine was only being called in two places the older interface is not being
   preserved in the overloaded interface calculate_density_second_derivs.

 - Renamed the internally visible routine calculate_compress_array
   to calculate_compress_1d and changed its argument list to take
   an optional two-element domain, rather than two mandatory integer arguments,
   to follow the pattern set by calculate_density_derivs_1d.  Because this
   routine was only being called in one place the older interface is not being
   preserved in the overloaded interface calculate_compress.

 - Eliminated some unnecessary local variables (mostly p_scale) for brevity and
   code clarity.

 - Modified two calls to calculate_density_second_derivs in
   thickness_diffuse_full to use its revised interface.

 - Modified one call to calculate_compress in build_slight_column to use
   its revised interface.
  Corrected a bug in the calculation of drho_dS_dP and drho_dT_dP in the
calculate_density_second_derivs routines, where the inverse of the correct
rescaling was being used.  However, these routines are only called in a very few
places and these particular output fields are not being used, so this bug does
not alter any existing MOM6 solutions.
  Modified comments in 20 files to prepare for the addition of dimensional
rescaling of temperature and salinity.  All answers are bitwise identical.
  Added rescaling conversion factors for temperature and salinity to the
EOS_type and added code to all of the EOS routines that work with dimensionally
rescaled arguments to handle these new rescaling factors.  Also added new
optional arguments to int_density_dz_wright and int_spec_vol_dp_wright to handle
rescaling temperature and salinity.  There are also many places in MOM_EOS.F90
where comments are altered to reflect the new rescaled units. However, for now
these new rescaling factors are hard-coded to 1, so there is no new rescaling
yet, and all answers are bitwise identical.  There are, however, new optional
arguments in two public interfaces.
  Use the new, clearer interfaces for calculate_TFreeze in MOM6.F90 and
MOM_diabatic_aux.F90, and use tv%C_p instead of fluxes%C_p in several places.
tv%C_p is not used outside of the code under the MOM6 src directory, whereas
fluxes%C_p is, so it is preferable to use tv%C_p to permit clean rescaling of
the temperature-related variables without touching anything outside of the src
directories.  All answers are bitwise identical.
  Modified comments in 5 more files to prepare for the addition of dimensional
rescaling of temperature and salinity.  All answers are bitwise identical.
  Added optional scaling arguments to the set_up_ALE_sponge routines, to allow
input fields to be rescaled before use.  This change is necessary to permit the
dimensional rescaling of temperature, salinity, and other tracers because of the
way that some versions repeatedly read new values from files as the runs
progress.  All answers are bitwise identical, but there are new optional
arguments to public interfaces.
  Added dimensional rescaling for temperature and salinity, as determined by the
new runtime parameters C_RESCALE_POWER and S_RESCALE_POWER.  With this change
there are 4 new elements in the transparent unit_scale_type, and these are
widely used in the code.  In addition, ### other files were added that had
checksum calls or diagnostics rescaled by these new factors, and where comments
were changed, but were otherwise unaltered as a result of the new dimensional
rescaling.  There will be another commit very shortly that completes the changes
and leads to fully functional dimensional rescaling for temperatures and
salinities, but these will involve more extensive code or interface changes, but
this commit will be useful for any possible git-bisection of any potential
changes that do not involve dimensional rescaling.  All solutions in existing
test cases are bitwise identical.
  This commit completes the dimensional rescaling for temperature and salinity,
and it has been confirmed that the solutions for the existing test cases pass
these tests.  There are new unit_scale_type arguments to several publicly
visible interfaces, mostly related to temperature initialization.  There is also
a new optional argument, conc_scale to the register_tracer calls to specify the
conversion that should be done to tracer concentrations during output.
Additionally, there are new entries in the incorrect units on some runtime
parameters for user code were corrected in the MOM_parameter_doc files for some
test cases.  All answers are bitwise identical in the MOM6 regression suite,
including when the temperature and salinity rescaling are enabled.
  Corrected the units in comments describing some temperature and salinity
variables that had been accidentally omitted from the previous commits in this
sequence.  Also rescaled some local temperature and salinity variables used in
seamount_initialize_thickness and added missing unit conversion factors for
several diagnostics in MOM_oda_incupd.  All answers are bitwise identical.
  Works with rescaled temperatures and salinities for the internal calculations
in MOM_temp_salt_initialize_from_Z, taking advantage of the recently corrected
rescaling capabilities in horiz_interp_and_extrap_tracer.  This commit also
includes these other closely related changes.

 - Modified convert_temp_salt_for_TEOS10 to work with rescaled temperature and
   salinity units

 - Eliminated unused land_fill argument from determine_temperature

 - Slightly refactored tracer_z_init_array to avoid needing an extra set of do
   loop through the 3-d array when a scale argument is present

All answers are bitwise identical, but there are changes in the arguments to
publicly visible interfaces.
The wrong MOM_read_data interface was being used: a 2D slice of a 3D
field was expected, but the interface for a 2D field was being called.
  This commit adds new functionality to the MOM_EOS module to support the
dimensional rescaling of temperatures and salinities.

 - Added the new routines cons_temp_to_pot_temp and abs_saln_to_prac_saln to
   convert between forms of temperature and salinity variables, respectively.
   These work on arrays of rescaled variables.

 - Added the new optional argument scale_from_EOS to calculate_TFreeze_scalar,
   to indicate that this routine should use the unit scaling stored in their
   EOS_type arguments.

 - Also corrected some comments throughout MOM_EOS.F90.

All answers are bitwise identical, but there are new public interfaces.
  Rescaled the units of some salinities in dumbbell_initialize_thickness and
added comments or corrected the unit descriptions in comments describing several
variables.  All answers are bitwise identical.
+Revise equation of state interfaces for consistency
This patch introduces new features to support unit testing of the MOM6
source code.  The patch includes two new modules (MOM_unit_testing,
MOM_file_parser_tests), two new classes (UnitTest, TestSuite), and a new
driver (unit_testing).

A UnitTest object consists of the following:

* The test subroutine
* Test name (for reporting)
* A flag indicating whether the test should fail (FATAL)
* An optional cleanup subroutine

The UnitTest objects are gathered into a TestSuite object, which
provides a batch job for running all of its tests.

The use of these features is demonstrated in a driver, unit_tests, which
runs the tests provided in the MOM_file_parser_tests module

This patch also includes changes to the ".testing" build system.

* The optional FCFLAGS_COVERAGE has been removed from the testing
  Makefile.  Instead, a new "cov" target is optionally built if one
  wants to check the coverage.  It is currently based on "symmetric".

* A new "unit" target has been added to run the unit testing driver and
  report its code coverage.

* GitHub Actions has been modified to include the unit driver test.

* The gcov output now includes branching (-b), which allows reporting of
  partial line coverage in some cases.

* codecov.io "smart" report searching has been replaced with an explicit
  setting of the root directory (-R) and *.gcda paths.

Other minor changes:

* MOM_coms include an infra-level sync function (sync_PEs) as a wrapper
  to mpp_sync (or others in the future).
MOM_file_parser unit test implementation
  Fixed two minor bugs in the MOM6 output when run with Z_RESCALE_POWER not
equal to 0.  All solutions are bitwise identical, but some of the diagnostic
output files have minor changes.  With these corrections, several output files
are now unaltered by internal dimensional rescaling.  The specific bug fixes
are:

 - Avoid using a rescaled depth as the vertical coordinate label in z-space
   output files.  Only the coordinate label is impacted, but this bug fix avoids
   the chance of having silly values for this coordinate.

 - Rescale the depths back to mks units before taking their checksum for storage
   in the MOM_sum_output file.  With this bug, the depth list file might be
   unnecessarily recreated with a new run with different scaling, but the file
   itself is fine.
Add dimensional rescaling of temperature and salinity
Fix data read for on-grid interpolation
marshallward and others added 16 commits July 11, 2022 13:20
This patch makes several changes to to provide better support for MacOS
and BSD-like systems.

Autoconf now includes macros to determine the following:

* The name of sigsetjmp: `sigsetjmp` (BSD) or `__sigsetjmp` (Linux)

* The size of `jmp_buf` and `sigjmp_buf`.  Also renamed to `SIZEOF_*` to
  align with autoconf macro name conventions.

The Linux defaults are retained in `posix.h`, but autoconf will now
override these values.

Two CI tests for MacOS have also been added, replicating the "stencil"
and "regression" tests.

The testing-setup has also been restructured to account for multiple
platforms.  Currently only Ubuntu and MacOS are tested.
  Copy scaling factors for tracers in scale_factor_from_name, to accommodate the
possibility that calls to register_segment_tracer might occur before calls to
initialize_segment_data, as they do for temperature and salinity, or afterwards
as they do for many user-defined tracers.  This commit addresses the issue with
the dumbbell subdomain test case not exhibiting proper rescaling for salinity as
described in NOAA-GFDL#148.  Some incorrect unit
descriptions in comments were also corrected, and the tracer name comparisons
for setting rescaling were made case-insensitive to handle some inconsistently
cased name declarations.  All answers without dimensional rescaling are bitwise
identical.
Fix to reading of partial OBCs from file.
  Added missing unit conversion factors in two calls to register_diag_field and
modified the comments describing the units of some temperature and salinity
variables in code that was recently added to the recently main branch of MOM6
via dev/ncar, reflecting the rescaling of temperatures and salinities that is
now in the dev/gfdl branch.  Without this change, these diagnostics will fail
the dimensional consistency testing for temperature and salinity.  All answers
are bitwise identical, but there is a case change of the units of a variable
in the available_diags files.
  Removed a line resetting temperatures to 0 for the ZSTAR and SIGMA vertical
coordinates in DOME2d_initialize_temperature_salinity, after they had been set
to the intended values.  github.com/mom-ocean/issues/1560 highlights this
bug and can be closed after this commit is merged into the main branch of MOM6.
This changes the temperature fields (and ocean.stats files) for the
flow_downslopes/z and flow_downslopes/sigma test cases, but because temperature
does not influence density in these cases, the flows and salinities are
unchanged.
  Modified the DOME initialization to simplify some expressions and to use
run-time parameters, rather than hard-coded values, when initializing the DOME
test case.  By default, all expressions are mathematically equivalent, but there
are roundoff level changes in the topography and sponges due to the use of more
generally valid expressions with runtime parameters and the replacement of some
divisions for unit conversions by multiplication by a reciprocal.  Because the
DOME test cases are strongly nonlinear, these small changes cascade up to
macroscopic differences, but these are of comparable magnitude to the
differences between compilers.  There are 10 new runtime parameters that appear
in the MOM_parameter_doc.all files for the DOME test cases.
* Change dumbbell initialization

* Change in Dumbbell Layer Mode
  Made post_data_1d_k publicly visible once again, rather than requiring calls
to use post_data, to support backward compatibility with older versions of the
ocean_BGC code.  This interface was removed from public visibility as a part of
github.com/NOAA-GFDL/pull/107, but it caused problems with some of GFDL's
Earth System Models, as noted in NOAA-GFDL#168.
All answers are bitwise identical for any cases that compiled before.
  Overloaded MOM_tracer_chksum and MOM_tracer_chkinv with a simpler interface
that takes the tracer registry as an input argument, rather than requiring that
its elements be unpacked outside of the call.  This was done as an overload to
the existing interface to avoid breaking backward compatibility, but it seems
likely that in due course the older, more complicated interface can be
obsoleted.  All answers are bitwise identical, but there are new interfaces to
provide tracer debugging capabilities.
  Added calls to write tracer checksums from step_MOM_tracer_dyn when
DEBUG=True.  Also updated a number of MOM_tracer_chksum and MOM_tracer_chkinv
calls in MOM_offline_main and MOM_tracer_hor_diff to use the new and streamlined
form of the interfaces.  All answers are bitwise identical, but there are
additional output lines when debugging is enabled.
  Corrected two allocated tests for OBC-related arrays in advect_y, bringing
them into conformity with what was already being done in advect_x.  Given the
nature of these changes, it seems likely that any case that would have worked
before will give bitwise identical answers, but that segmentation faults might
now be avoided in certain configurations using OBCs.
  Corrected the dimensional rescaling factors in two calls to
set_up_ALE_sponge_field for temperature and salinity for time-varying fields
being read in from an input file.  These had been given the inverse of the
correct values.  An optional scale argument was also added (with its default
value) in the call to set up ALE sponge velocities, for greater clarity of what
this call is doing.  This commit should address an issue noted by Kate Hedstrom
when evaluating the first draft of PR mom-ocean#1577 from dev/gfdl to main.  All answers
are bitwise identical in cases where dimensional rescaling of temperature and
salinity are not being applied, and answers with the rescaling of temperature
and salinity should now reproduce those without the rescaling.
@codecov-commenter
Copy link
Copy Markdown

codecov-commenter commented Jul 30, 2022

Codecov Report

Merging #99 (ee6047b) into dev/emc (ec1d17e) will increase coverage by 5.37%.
The diff coverage is 50.04%.

❗ Current head ee6047b differs from pull request most recent head 5747461. Consider uploading reports for the commit 5747461 to get more accurate results

@@             Coverage Diff             @@
##           dev/emc      #99      +/-   ##
===========================================
+ Coverage    28.62%   33.99%   +5.37%     
===========================================
  Files          252      259       +7     
  Lines        73515    70267    -3248     
  Branches         0    13021   +13021     
===========================================
+ Hits         21040    23885    +2845     
+ Misses       52475    41880   -10595     
- Partials         0     4502    +4502     
Impacted Files Coverage Δ
src/ALE/MOM_hybgen_regrid.F90 0.00% <0.00%> (ø)
src/ALE/MOM_hybgen_unmix.F90 0.00% <0.00%> (ø)
src/ALE/MOM_regridding.F90 23.43% <0.00%> (+1.39%) ⬆️
src/ALE/coord_adapt.F90 0.00% <0.00%> (ø)
src/ALE/coord_hycom.F90 0.00% <ø> (ø)
src/ALE/coord_rho.F90 12.17% <0.00%> (+1.65%) ⬆️
src/ALE/coord_slight.F90 0.00% <0.00%> (ø)
src/core/MOM_checksum_packages.F90 25.00% <0.00%> (-5.83%) ⬇️
src/diagnostics/MOM_wave_structure.F90 0.00% <0.00%> (ø)
src/equation_of_state/MOM_EOS_linear.F90 19.37% <ø> (+1.69%) ⬆️
... and 343 more

📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more

…ESMF-managed threading.

authored-by: Gerhard Theurich <gerhard.j.theurich@noaa.gov>
@jiandewang jiandewang changed the title update to MOM6 main branch 20220729 commit (GFDL-candidate-20220721) (1) update to MOM6 main branch 20220729 commit (GFDL-candidate-20220721) (2) cap update: supporting traditional and ESMF-managed threading Aug 10, 2022
@jkbk2004
Copy link
Copy Markdown

@DeniseWorthen @JessicaMeixner-NOAA RT tests are done on ufs-community/ufs-weather-model#1358. Can we merge in this PR first?

@jiandewang
Copy link
Copy Markdown
Collaborator Author

@DeniseWorthen @JessicaMeixner-NOAA RT tests are done on ufs-community/ufs-weather-model#1358. Can we merge in this PR first?

I need to merge MOM6 first, needs review from @DeniseWorthen and @JessicaMeixner-NOAA

@jiandewang jiandewang merged commit 55e0472 into NOAA-EMC:dev/emc Aug 12, 2022
@jiandewang
Copy link
Copy Markdown
Collaborator Author

MOM6 has been merged, let me know when it's the time for me to switch MOM6 submodule in my UFS branch

binli2337 pushed a commit to binli2337/MOM6 that referenced this pull request Sep 27, 2022
* Add a deta_dt diagnostic to the split BT/BC mode

The SSH tendency can now be computed for the split baroclinic/
bartropic (integrated with RK2) way of calculating the dynamics.
This extra diagnostic is needed for computing vertical mass
transport (wmo) in z* coordinates offline from the convergence
of the horizontal mass transports.

The meaning, units, and conversion factors associated with the
deta_dt diagnostic change between Boussinesq and non-Boussinesq
modes. This commit accounts for these differences and reports the
units consistent with the mass transports.

(A. Shao gets the credit for the substance of this commit.)
@jiandewang jiandewang deleted the feature/update-to-main-20220729 branch July 24, 2023 03:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.