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

[WIP] Add capability to run HEMCO at 0.125x0.15625 resolutionFeature/0.125x0.15625 resolution #290

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased] - TBD
### Added
- Added definition of 0.125x0.15625 grid resolution

## [3.9.1] - 2024-06-28
### Fixed
- Fixed formatting error in `.github/workflows/stale.yml` that caused the Mark Stale Issues action not to run
Expand Down
2 changes: 2 additions & 0 deletions src/Core/hco_config_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2138,6 +2138,8 @@ SUBROUTINE ReadSettings( HcoConfig, IU_HCO, EOF, RC )
GridRes = '0.5x0.625'
CASE( '025x03125', '0.25x0.3125' )
GridRes = '0.25x0.3125'
CASE( '0125x015625', '0.125x0.15625' )
GridRes = '0.125x0.15625'
CASE DEFAULT
Msg = 'Improperly formatted grid resolution: ' // TRIM( GridRes )
CALL HCO_Error( Msg, RC, Loc )
Expand Down
2 changes: 2 additions & 0 deletions src/Core/hco_extlist_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1579,6 +1579,8 @@ SUBROUTINE HCO_SetDefaultToken( CF, RC )
DEF_RES = '05x0625'
ELSE IF ( TRIM(CF%GridRes) == '0.25x0.3125' ) THEN
DEF_RES = '025x03125'
ELSE IF ( TRIM(CF%GridRes) == '0.125x0.15625' ) THEN
DEF_RES = '0125x015625'
ENDIF

! Wildcard character
Expand Down