-
Notifications
You must be signed in to change notification settings - Fork 27
Add more infrastructure for water tracers #82
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
Draft
billsacks
wants to merge
13
commits into
ESCOMP:main
Choose a base branch
from
billsacks:water_tracers_part2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 12 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
d6e357e
Add shr_wtracers_check_tracer_ratios
billsacks 00c3ad9
Add unit tests of shr_wtracers_check_tracer_ratios
billsacks 780def8
Merge remote-tracking branch 'billsacks/water_tracers' into water_tra…
billsacks 6132245
In the init-for-testing, set is_maintask to always true
billsacks 13c4c52
Merge remote-tracking branch 'billsacks/water_tracers' into water_tra…
billsacks 9d288e7
Revert "In the init-for-testing, set is_maintask to always true"
billsacks 51c5e0f
Merge remote-tracking branch 'origin/main' into water_tracers_part2
billsacks efdbd47
Fix formatting of a comment
billsacks 5d6dd22
Introduce shr_wtracers_get_bulk_fieldname subroutine
billsacks fa78e0a
Add a version of shr_wtracers_check_tracer_ratios for 2-d arrays
billsacks 4952bdc
Change dimension order convention for rank-3 tracer fields
billsacks 1af04f1
Merge branch 'main' into water_tracers_part2
billsacks b234928
Simplify conditional for tracer consistency check
billsacks File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| list(APPEND share_sources | ||
| shr_wtracers_mod.F90) | ||
|
|
||
| sourcelist_to_parent(share_sources) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| set (pf_sources | ||
| test_shr_wtracers.pf | ||
| ) | ||
|
|
||
| set(sources_needed | ||
| shr_wtracers_mod.F90 | ||
| shr_assert_mod.F90 | ||
| shr_infnan_mod.F90 | ||
| shr_kind_mod.F90 | ||
| shr_log_mod.F90 | ||
| shr_strconvert_mod.F90 | ||
| shr_string_mod.F90 | ||
| shr_sys_mod.nompi_abortthrows.F90 | ||
| shr_abort_mod.abortthrows.F90 | ||
| shr_timer_mod.F90 | ||
| nuopc_shr_methods.F90 | ||
| gptl.F90) | ||
|
|
||
| extract_sources("${sources_needed}" "${share_sources}" test_sources) | ||
|
|
||
| add_pfunit_ctest(shr_wtracers | ||
| TEST_SOURCES "${pf_sources}" | ||
| OTHER_SOURCES "${test_sources}") | ||
|
|
||
| declare_generated_dependencies(shr_wtracers "${share_genf90_sources}") | ||
|
|
||
| target_link_libraries(shr_wtracers esmf) | ||
| # The following adds all dependencies of ESMF, including PIO, NetCDF, etc.: | ||
| target_link_libraries(shr_wtracers ESMF::ESMF) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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'm not sure whether it's better to write to logunit or use ESMF_LogWrite. I see a lot of uses of both, and it isn't clear to me if there's a general principle.