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

Add new res C1120 #94

Merged
merged 5 commits into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Added new res C1120
- NOTE: If running on SLES15 remap tests will not be zero diff for GOCART RST but are zero diff for all other

### Changed

- Update ESMF CMake target to `ESMF::ESMF`
Expand Down
1 change: 1 addition & 0 deletions pre/remap_restart/remap_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ def get_grid_kind(this, grid):
hgrd['C540'] = 'd'
hgrd['C720'] = 'e'
hgrd['C1080'] = 'e'
hgrd['C1120'] = 'e'
hgrd['C1440'] = 'e'
hgrd['C1536'] = 'e'
hgrd['C2160'] = 'e'
Expand Down
10 changes: 5 additions & 5 deletions pre/remap_restart/remap_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,16 +104,16 @@
message_bc_other_new = ("Select BCs version for new restarts:\n" + message_bc_other)

message_agrid_list = f'''
C12 C180 C1440
C24 C360 C2880
C48 C720 C5760
C90 C1000 \n'''
C12 C180 C1120
C24 C360 C1440
C48 C720 C2880
C90 C1000 C5760 \n'''

message_agrid_in = ("Enter atmospheric grid of input restarts:\n" + message_agrid_list)

message_agrid_new = ("Enter atmospheric grid for new restarts:\n" + message_agrid_list)

validate_agrid = ['C12','C24','C48','C90','C180','C360','C720','C1000','C1440','C2880','C5760']
validate_agrid = ['C12','C24','C48','C90','C180','C360','C720','C1000','C1120','C1440','C2880','C5760']

message_ogrid_in = "Select data ocean grid/resolution of input restarts:\n"

Expand Down
Loading