Skip to content

Commit

Permalink
Disable CatchmentCNCLM45 model (LSM_CHOICE=3) (#707)
Browse files Browse the repository at this point in the history
CatchCN-4.5 is no longer supported.
  • Loading branch information
gmao-rreichle authored Feb 15, 2024
2 parents 5e8eeec + c2ff5fb commit 2a3b721
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ MAPL:
GEOSgcm_GridComp:
local: ./src/Components/GEOSldas_GridComp/@GEOSgcm_GridComp
remote: ../GEOSgcm_GridComp.git
branch: develop
branch: feature/jkolassa_disable_cn45
sparse: ./config/GEOSgcm_GridComp_ldas.sparse
develop: develop
1 change: 0 additions & 1 deletion src/Applications/LDAS_App/GEOSldas_LDAS.rc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ CATCHMENT_SPINUP: 0
#
# 1 : Catchment model (default)
# 2 : CatchmentCN-CLM4.0
# 3 : CatchmentCN-CLM4.5
#
LSM_CHOICE: 1

Expand Down
5 changes: 3 additions & 2 deletions src/Applications/LDAS_App/ldas_setup
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,9 @@ class LDASsetup:
self.catch = 'catch'
if int(self.rqdExeInp['LSM_CHOICE']) == 2 :
self.catch = 'catchcnclm40'
if int(self.rqdExeInp['LSM_CHOICE']) == 3 :
self.catch = 'catchcnclm45'

assert int(self.rqdExeInp['LSM_CHOICE']) <= 2, "\nLSM_CHOICE=3 (Catchment-CN4.5) is no longer supported. Please set LSM_CHOICE to 1 (Catchment) or 2 (Catchment-CN4.0)"

if 'POSTPROC_HIST' not in self.rqdExeInp:
self.rqdExeInp['POSTPROC_HIST'] = 0

Expand Down

0 comments on commit 2a3b721

Please sign in to comment.