-
Notifications
You must be signed in to change notification settings - Fork 371
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
Update support for low-resolution Greenland tests #6445
Changes from 4 commits
6108997
e3f20af
bdaf63e
6cc88e6
08e9fa1
73a2e4d
f9feb58
c87ca0b
23c37c5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
config_am_globalstats_enable = .false. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did you mean to delete this file, as well as the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch. Yes, I think that is what I intended to do here. Let me look at that and re-test to confirm that everything still works when I make that change. Assuming it does, I'll push that correction. Thanks. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I removed this, re-tested, and the 20km SMS tests still work correctly, so I will push this update in a minute. Thanks again for catching that. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
./xmlchange STOP_OPTION=ndays | ||
./xmlchange STOP_N=2 | ||
./xmlchange STOP_N=1 | ||
./xmlchange REST_OPTION=ndays | ||
./xmlchange REST_N=2 | ||
./xmlchange REST_N=1 | ||
./xmlchange NCPL_BASE_PERIOD=year | ||
./xmlchange ATM_NCPL=17520 | ||
./xmlchange LND_NCPL=17520 | ||
./xmlchange OCN_NCPL=8760 | ||
./xmlchange GLC_NCPL=365 | ||
./xmlchange ROF_NCPL=17520 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
config_am_globalstats_enable = .false. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
./xmlchange STOP_OPTION=ndays | ||
./xmlchange STOP_N=1 | ||
./xmlchange REST_OPTION=ndays | ||
./xmlchange REST_N=1 | ||
./xmlchange NCPL_BASE_PERIOD=year | ||
./xmlchange ATM_NCPL=17520 | ||
./xmlchange LND_NCPL=17520 | ||
./xmlchange OCN_NCPL=8760 | ||
./xmlchange GLC_NCPL=365 | ||
./xmlchange ROF_NCPL=17520 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
config_am_globalstats_enable = .false. |
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.
@stephenprice , was this necessary to get the tests to run? It seems like it would be nice to have globalStats enabled in the tests unless there is problem doing so.
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.
I agree. This is a short-term workaround to get the mali hist files recognized by the testing framework. If the .am files are included in the outputs, the testing framework does the comparison on those rather than the full hist. files. This is some quirk with the current testing infrastructure, which seems to have very limited support for including / accounting for MPAS component outputs. I've been communicating with @jasonb5 about this and this was one of the suggested workarounds to allow MALI hist files to be included in the SMS comparison tests, for now.
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.
Ok, thanks, that's fine then. For these short tests, if the full output files are being compared, it's not that important that the globalStats files exist.