diff --git a/CHANGELOG.md b/CHANGELOG.md index 02cae785..12d6d0ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.10.1] - 2025-01-10 ### Added - Added optional LUN argument to ConfigInit to allow external models to pass LUN of existing log file diff --git a/src/Core/hco_config_mod.F90 b/src/Core/hco_config_mod.F90 index 03606a34..fd9693b7 100644 --- a/src/Core/hco_config_mod.F90 +++ b/src/Core/hco_config_mod.F90 @@ -2132,6 +2132,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 ) diff --git a/src/Core/hco_extlist_mod.F90 b/src/Core/hco_extlist_mod.F90 index e2488e0e..ab081231 100644 --- a/src/Core/hco_extlist_mod.F90 +++ b/src/Core/hco_extlist_mod.F90 @@ -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