add ocean version to tile file header info #860
Merged
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.
In one of the previous merges, PR #695, we also changed the tile header information to update the ocean grid name.
To minimize confusion and help people better understand tile files and what they see in boundary conditions, we are adding an ocean version descriptor to coupled tile file header info. This tile header change is not a bug; users can run experiments and use these new sets of boundary conditions by adjusting the
AGCM.rc
file; this PR is to make it cleaner and easier to understand; with this change, it is easier forMAPL
andAGCM.rc
to recognize coupled grid based on tile header information.In legacy, how it used to be: (MOM6/CF0090x6C_TM0540xTM0458/CF0090x6C_TM0540xTM0458-Pfafstetter.til)
841477 291284 43200 21600
2
PE90x540-CF
90
540
PE540x458-TM
540
458
Now on develop (Nov 2023):
( NL3/geometry/CF0090x6C_M6TP0540x0458/CF0090x6C_M6TP0540x0458-Pfafstetter.til )
841477 291284 43200 21600
2
PE90x540-CF
90
540
PE540x458-
540
458
With this PR :
841477 291284 43200 21600
2
PE90x540-CF
90
540
PE540x458-M6TP
540
458
Changes for this PR are zero diff trivial since all changes are within the boundary conditions package (we are just adding info to the header of the coupled tile file as seen in the example above)
Boundary conditions in
bcs_shared
area created with these new ocean names will be updated to match information package will produce in tile file. @mathomp4 @gmao-rreichle