Skip to content

Commit 279be8d

Browse files
committed
Modified parameter name to be consistent with model variable
1 parent 2b25554 commit 279be8d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

components/elm/bld/namelist_files/namelist_defaults.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ attributes from the config_cache.xml file (with keys converted to upper-case).
123123
for the CLM2 data in the CESM distribution -->
124124
<!-- Plant function types (relative to {csmdata}) -->
125125
<paramfile use_cn=".false." use_fates=".false." >lnd/clm2/paramdata/clm_params_c180301.nc</paramfile>
126-
<paramfile use_crop=".true." >lnd/clm2/paramdata/clm_params_c250929.nc</paramfile>
126+
<paramfile use_crop=".true." >lnd/clm2/paramdata/clm_params_c251006.nc</paramfile>
127127
<paramfile nu_com="ECA" use_fates=".true." use_crop=".false." >lnd/clm2/paramdata/clm_params.cbgc.c07292018.nc</paramfile>
128128
<paramfile nu_com="ECA" use_cn=".true." use_crop=".false." >lnd/clm2/paramdata/clm_params.cbgc.c07292018.nc</paramfile>
129129
<paramfile use_crop=".false." use_cn=".true." >lnd/clm2/paramdata/clm_params_c211124.nc</paramfile>

components/elm/src/data_types/VegetationPropertiesType.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ module VegetationPropertiesType
7878
real(r8), pointer :: fm_root (:) => null() ! fire-related mortality factor for fine roots (0 to 1)
7979
real(r8), pointer :: fm_lroot (:) => null() ! fire-related mortality factor for live roots (0 to 1)
8080
real(r8), pointer :: fm_droot (:) => null() ! fire-related mortality factor for dead roots (0 to 1)
81-
real(r8), pointer :: manunitro (:) => null() ! fertilizer applied (crop)
81+
real(r8), pointer :: manunitro (:) => null() ! manure nitrogen applied (crop)
8282
real(r8), pointer :: fleafcn (:) => null() ! C:N during grain fill; leaf (crop)
8383
real(r8), pointer :: ffrootcn (:) => null() ! C:N during grain fill; froot (crop)
8484
real(r8), pointer :: fstemcn (:) => null() ! C:N during grain fill; stem (crop)

components/elm/src/main/pftvarcon.F90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ module pftvarcon
206206
real(r8), allocatable :: fsr_pft(:)
207207
real(r8), allocatable :: fd_pft(:)
208208
! pft parameters for crop code
209-
real(r8), allocatable :: manunitro(:) !fertilizer
209+
real(r8), allocatable :: manunitro(:) !manure nitrogen
210210
real(r8), allocatable :: fleafcn(:) !C:N during grain fill; leaf
211211
real(r8), allocatable :: ffrootcn(:) !C:N during grain fill; fine root
212212
real(r8), allocatable :: fstemcn(:) !C:N during grain fill; stem
@@ -780,7 +780,7 @@ subroutine pftconrd
780780
if ( .not. readv ) call endrun(msg=' ERROR: error in reading in pft data'//errMsg(__FILE__, __LINE__))
781781
call ncd_io('season_decid',season_decid, 'read', ncid, readvar=readv, posNOTonfile=.true.)
782782
if ( .not. readv ) call endrun(msg=' ERROR: error in reading in pft data'//errMsg(__FILE__, __LINE__))
783-
call ncd_io('fertnitro',manunitro, 'read', ncid, readvar=readv, posNOTonfile=.true.)
783+
call ncd_io('manunitro',manunitro, 'read', ncid, readvar=readv, posNOTonfile=.true.)
784784
if ( .not. readv ) call endrun(msg=' ERROR: error in reading in pft data'//errMsg(__FILE__, __LINE__))
785785
call ncd_io('fleafcn',fleafcn, 'read', ncid, readvar=readv, posNOTonfile=.true.)
786786
if ( .not. readv ) call endrun(msg=' ERROR: error in reading in pft data'//errMsg(__FILE__, __LINE__))

0 commit comments

Comments
 (0)