Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MOM5 updates from ACCESS-ESM1.5 #381

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

matt-csiro
Copy link

Some minor changes were required to the MOM5 source code in order to run with ACCESS-ESM1.5.
There are also some updated diagnostics and commentary in the ocean BGC.
None of these affect the normal running of the model.
These changes compiled and tested OK with ESM1.5 on gadi.

In particular:

  • setenv OASIS_ROOT is added in environs.nci.
  • put 'sea ice to ocean' exchanges of nutrients and algae within a "sea_ice_bgc'-flagged block (sea ice BGC not defined in ESM and crashes model).
  • extra diagnostics are added for organic + inorganic export, and surface hydrogen ion concentration.
  • limit the 'Schmidt temperature' in surface gas exchange (was required for hot ESM experiments).

Cheers, Matt.

@@ -4,3 +4,4 @@ module load intel-compiler/2019.5.281
module load netcdf/4.7.4
module load openmpi/4.0.2
setenv mpirunCommand "mpirun --mca orte_base_help_aggregate 0 -np"
setenv OASIS_ROOT /g/data/p66/pbd562/test/t47-hxw/jan20/4.0.2/oasis3-mct
Copy link
Collaborator

@aekiss aekiss May 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure we want to hardwire a specific path like this, which is only useable for users with membership of p66

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm needing this setting otherwise the compile for the ESM fails, for instance...

.../src/accesscm_coupler/mom_oasis3_interface.F90(79): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MOD_PRISM]
use mod_prism
----^

Let me know if there are alternatives to try.

(-125.62 + t_prog(indtemp)%field(i,j,1,time%taum1) * &
(3.6276 + t_prog(indtemp)%field(i,j,1,time%taum1) * &
schmidt_temp = min(35.0, t_prog(indtemp)%field(i,j,1,time%taum1))! add max limit to temp used for Schmidt number calculation. mac, jan21.
sc_co2(i,j) = 2073.1 + schmidt_temp * &
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will this give numerically identical results to the old sc_co2 calculation?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, the Schmidt Number and gas exchange will not be identical wherever there is a surface temperature over 35 degC.

The change was made for the ESM after some points in extended warm climate CMIP6 experiments reached about 42 degC, where the Schmidt number went negative and blew up the model, as found by Tilo Z. and Martin D. in late 2020.
Checking the reference to the Schmidt formula (Wanninkhof 1992, https://agupubs.onlinelibrary.wiley.com/doi/epdf/10.1029/92JC00188), the temperature range of the calculation should only be up to 30 degC, which we have probably been abusing forever.
Martin found that the limit of 35 degC was already being used in the equivalent component of NEMO, so we adopted the same in the ESM1.5.
This way the model is stable for these hot climate experiments.

(-81.83 + t_prog(indtemp)%field(i,j,1,time%taum1) * &
(1.483 + t_prog(indtemp)%field(i,j,1,time%taum1) * &
schmidt_temp = min(35.0, t_prog(indtemp)%field(i,j,1,time%taum1))! add max limit to temp used for Schmidt number calculation. mac, jan21.
sc_o2(i,j) = 1638.0 + schmidt_temp * &
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

as above, will this give numerically identical results to the old sc_co2 calculation?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, the Schmidt Number and gas exchange will not be identical wherever there is a surface temperature over 35 degC.

The change was made for the ESM after some points in extended warm climate CMIP6 experiments reached about 42 degC, where the Schmidt number went negative and blew up the model, as found by Tilo Z. and Martin D. in late 2020.
Checking the reference to the Schmidt formula (Wanninkhof 1992, https://agupubs.onlinelibrary.wiley.com/doi/epdf/10.1029/92JC00188), the temperature range of the calculation should only be up to 30 degC, which we have probably been abusing forever.
Martin found that the limit of 35 degC was already being used in the equivalent component of NEMO, so we adopted the same in the ESM1.5.
This way the model is stable for these hot climate experiments.

@aekiss
Copy link
Collaborator

aekiss commented May 30, 2023

@russfiedler would you have time to review this PR please?

@aekiss
Copy link
Collaborator

aekiss commented May 31, 2023

Any idea why it's not building on ubuntu-18.04 ?

@matt-csiro
Copy link
Author

Not sure why it is not building.
Need more information.

@aidanheerdegen
Copy link
Contributor

Any idea why it's not building on ubuntu-18.04 ?

As you can see from the linked PR, 18.04 is now deprecated, so ignore the failures with that runner.

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.

None yet

3 participants