-
Notifications
You must be signed in to change notification settings - Fork 65
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
Fix ALE sponge diagnostics #188
Fix ALE sponge diagnostics #188
Conversation
Codecov Report
@@ Coverage Diff @@
## dev/gfdl #188 +/- ##
============================================
- Coverage 37.22% 37.22% -0.01%
============================================
Files 261 261
Lines 72319 72334 +15
Branches 13533 13533
============================================
+ Hits 26921 26925 +4
- Misses 40407 40417 +10
- Partials 4991 4992 +1
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
I don't see much structure to these commits, so I will do a squash-merge. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A minor style change removing spaces around =
in optional. function arguments
Sorry, disregard this comment, was trying to use the editor...
@WenhaoChen89 I made a minor change to this PR fixing a style issue (removal of spaces around operators inside function arguments). (I admit that I also just wanted to try the in-browser editor and see if it would work 😅) |
Gaea regression: https://gitlab.gfdl.noaa.gov/ogrp/MOM6/-/pipelines/16468 ✔️ |
Gaea regression (v2): https://gitlab.gfdl.noaa.gov/ogrp/MOM6/-/pipelines/16476 ✔️ |
This PR is to fix the ALE sponge diagnostics.
In the module MOM_ALE_sponge, the ALE sponge diagnostics of tracers is initialized with a fixed order, i.e., the first one is 'temperature' and the second one is 'salinity' (line 604-609 in subroutine init_ALE_sponge_diags). However, when the data is posted for the diagnostics, it follows the order of how tracer sponges are set up (line 961-997 in subroutine apply_ALE_sponge).
The fix includes: