Skip to content
Open
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
14 changes: 7 additions & 7 deletions bld/namelist_files/namelist_defaults_ctsm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1326,6 +1326,12 @@ attributes from the config_cache.xml file (with keys converted to upper-case).
lnd_tuning_mode="clm5_0_GSWP3v1" use_init_interp=".true."
>lnd/clm2/initdata_esmf/ctsm5.3/clmi.interp_from.I1850Clm50BgcCrop-ciso.1366-01-01.0.9x1.25_gx1v7_simyr1850_c240223.nc
</finidat>
<finidat hgrid="0.9x1.25" maxpft="79" mask="tx2_3v2" use_cn=".true." use_cndv=".false." use_fates=".false."
ic_ymd="18500101" sim_year="1850" do_transient_pfts=".false." use_excess_ice=".true."
ic_tod="0" glc_nec="10" use_crop=".true." irrigate=".false."
phys="clm6_0"
>lnd/clm2/initdata_esmf/ctsm5.4/clmi.f09_interp_from.ctsm5.4.CMIP7_ciso_ctsm5.3.075_f09_124_pSASU.clm2.r.0161_c251118.nc
</finidat>


<finidat hgrid="0.9x1.25" maxpft="79" mask="gx1v7" use_cn=".true." use_cndv=".false." use_fates=".false."
Expand Down Expand Up @@ -1430,13 +1436,7 @@ attributes from the config_cache.xml file (with keys converted to upper-case).
<finidat hgrid="1.9x2.5" maxpft="79" mask="gx1v7" use_cn=".true." use_cndv=".false." use_fates=".false."
ic_ymd="20110101" sim_year="2000" do_transient_pfts=".false." use_excess_ice=".false."
ic_tod="0" glc_nec="10" use_crop=".true." irrigate=".true."
lnd_tuning_mode="clm5_0_GSWP3v1" use_init_interp=".false."
>lnd/clm2/initdata_esmf/ctsm5.4/clmi.f19_twiceinterp_from.I1850Clm50BgcCrop-ciso.1366-01-01.0.9x1.25_gx1v7_simyr1850_c251030.nc
</finidat>
<finidat hgrid="1.9x2.5" maxpft="79" mask="gx1v7" use_cn=".true." use_cndv=".false." use_fates=".false."
ic_ymd="20110101" sim_year="2000" do_transient_pfts=".false." use_excess_ice=".false."
ic_tod="0" glc_nec="10" use_crop=".true." irrigate=".true."
lnd_tuning_mode="clm5_0_GSWP3v1" use_init_interp=".true."
lnd_tuning_mode="clm5_0_GSWP3v1"
>lnd/clm2/initdata_esmf/ctsm5.4/clmi.f19_twiceinterp_from.I1850Clm50BgcCrop-ciso.1366-01-01.0.9x1.25_gx1v7_simyr1850_c251030.nc
</finidat>
<!-- NB: This f19 2000 finidat comes from a spin-up with use_crop=".false." -->
Expand Down
4 changes: 2 additions & 2 deletions python/ctsm/test/test_unit_subset_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def test_inputdata_setup_files_basic(self):
files = setup_files(self.args, self.defaults, self.cesmroot, testing=True)
self.assertEqual(
files["fsurf_in"],
"surfdata_0.9x1.25_hist_2000_16pfts_c240908.nc",
"surfdata_0.9x1.25_hist_2000_16pfts_c251022.nc",
"fsurf_in filename not whats expected",
)
self.assertEqual(
Expand All @@ -117,7 +117,7 @@ def test_inputdata_setup_files_basic(self):
)
self.assertEqual(
files["main_dir"],
"/glade/campaign/cesm/cesmdata/cseg/inputdata",
"/glade/campaign/cesm/cesmdata/inputdata",
"main_dir directory not whats expected",
)

Expand Down
4 changes: 2 additions & 2 deletions src/biogeophys/CanopyStateType.F90
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,11 @@ subroutine InitHistory(this, bounds)
this%vegwp_ln_patch(begp:endp,:) = spval
call hist_addfld2d (fname='VEGWPLN', units='mm', type2d='nvegwcs', &
avgflag='A', long_name='vegetation water matric potential for sun/sha canopy,xyl,root at local noon', &
ptr_patch=this%vegwp_ln_patch, default='active')
ptr_patch=this%vegwp_ln_patch, default='inactive')
this%vegwp_pd_patch(begp:endp,:) = spval
call hist_addfld2d (fname='VEGWPPD', units='mm', type2d='nvegwcs', avgflag='A', &
long_name='predawn vegetation water matric potential for sun/sha canopy,xyl,root', &
ptr_patch=this%vegwp_pd_patch, default='active')
ptr_patch=this%vegwp_pd_patch, default='inactive')
end if

end subroutine InitHistory
Expand Down
Loading