Skip to content

Commit 7788b6b

Browse files
authored
Merge pull request #3268 from slevis-lmwg/prelim_upd_ctsm54_defaults
ctsm5.3.060: Preliminary update of ctsm54 defaults (answer changing)
2 parents 586286b + 5e894e2 commit 7788b6b

File tree

7 files changed

+170
-63
lines changed

7 files changed

+170
-63
lines changed

bld/CLMBuildNamelist.pm

Lines changed: 28 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1688,6 +1688,7 @@ sub process_namelist_inline_logic {
16881688
setup_logic_cnmatrix($opts, $nl_flags, $definition, $defaults, $nl, $envxml_ref);
16891689
setup_logic_spinup($opts, $nl_flags, $definition, $defaults, $nl);
16901690
setup_logic_supplemental_nitrogen($opts, $nl_flags, $definition, $defaults, $nl);
1691+
setup_logic_c_isotope($opts, $nl_flags, $definition, $defaults, $nl);
16911692
setup_logic_snowpack($opts, $nl_flags, $definition, $defaults, $nl);
16921693
setup_logic_fates($opts, $nl_flags, $definition, $defaults, $nl);
16931694
setup_logic_z0param($opts, $nl_flags, $definition, $defaults, $nl);
@@ -1737,7 +1738,6 @@ sub process_namelist_inline_logic {
17371738
# namelist group: ch4par_in #
17381739
###############################
17391740
setup_logic_methane($opts, $nl_flags, $definition, $defaults, $nl);
1740-
setup_logic_c_isotope($opts, $nl_flags, $definition, $defaults, $nl);
17411741

17421742
###############################
17431743
# namelist group: ndepdyn_nml #
@@ -3175,10 +3175,11 @@ sub setup_logic_do_grossunrep {
31753175

31763176
my $var = 'do_grossunrep';
31773177

3178-
# Start by assuming a default value of '.true.'. Then check a number of
3178+
# Start by assuming a default value of '.false.'. Then check a number of
31793179
# conditions under which do_grossunrep cannot be true. Under these
3180-
# conditions: (1) set default value to '.false.'; (2) make sure that the
3180+
# conditions: (1) set default value to '.false.' again; (2) make sure that the
31813181
# value is indeed false (e.g., that the user didn't try to set it to true).
3182+
# Ideally the default value would be set in namelist_defaults
31823183

31833184
my $default_val = ".false.";
31843185

@@ -3703,63 +3704,53 @@ sub setup_logic_c_isotope {
37033704
#
37043705
my ($opts, $nl_flags, $definition, $defaults, $nl) = @_;
37053706

3707+
add_default($opts, $nl_flags->{'inputdata_rootdir'}, $definition, $defaults, $nl, 'use_c13', 'bgc_mode'=>$nl_flags->{'bgc_mode'}, 'phys'=>$nl_flags->{'phys'});
3708+
add_default($opts, $nl_flags->{'inputdata_rootdir'}, $definition, $defaults, $nl, 'use_c14', 'bgc_mode'=>$nl_flags->{'bgc_mode'}, 'phys'=>$nl_flags->{'phys'});
37063709
my $use_c13 = $nl->get_value('use_c13');
37073710
my $use_c14 = $nl->get_value('use_c14');
37083711
if ( $nl_flags->{'bgc_mode'} ne "sp" && $nl_flags->{'bgc_mode'} ne "fates" ) {
37093712
if ( $nl_flags->{'bgc_mode'} ne "bgc" ) {
3710-
if ( defined($use_c13) && &value_is_true($use_c13) ) {
3713+
if ( &value_is_true($use_c13) ) {
37113714
$log->warning("use_c13 is ONLY scientifically validated with the bgc=BGC configuration" );
37123715
}
3713-
if ( defined($use_c14) && &value_is_true($use_c14) ) {
3716+
if ( &value_is_true($use_c14) ) {
37143717
$log->warning("use_c14 is ONLY scientifically validated with the bgc=BGC configuration" );
37153718
}
37163719
}
3717-
if ( defined($use_c14) ) {
3718-
if ( &value_is_true($use_c14) ) {
3719-
my $use_c14_bombspike = $nl->get_value('use_c14_bombspike');
3720-
if ( defined($use_c14_bombspike) && &value_is_true($use_c14_bombspike) ) {
3721-
add_default($opts, $nl_flags->{'inputdata_rootdir'}, $definition, $defaults, $nl, 'atm_c14_filename',
3722-
'use_c14'=>$use_c14, 'use_cn'=>$nl_flags->{'use_cn'}, 'use_c14_bombspike'=>$nl->get_value('use_c14_bombspike'),
3723-
'ssp_rcp'=>$nl_flags->{'ssp_rcp'} );
3724-
}
3725-
} else {
3726-
if ( defined($nl->get_value('use_c14_bombspike')) ||
3727-
defined($nl->get_value('atm_c14_filename')) ) {
3728-
$log->fatal_error("use_c14 is FALSE and use_c14_bombspike or atm_c14_filename set");
3729-
}
3720+
if ( &value_is_true($use_c14) ) {
3721+
add_default($opts, $nl_flags->{'inputdata_rootdir'}, $definition, $defaults, $nl, 'use_c14_bombspike', 'bgc_mode'=>$nl_flags->{'bgc_mode'}, 'phys'=>$nl_flags->{'phys'});
3722+
my $use_c14_bombspike = $nl->get_value('use_c14_bombspike');
3723+
if ( &value_is_true($use_c14_bombspike) ) {
3724+
add_default($opts, $nl_flags->{'inputdata_rootdir'}, $definition, $defaults, $nl, 'atm_c14_filename',
3725+
'use_c14'=>$use_c14, 'use_cn'=>$nl_flags->{'use_cn'}, 'use_c14_bombspike'=>$nl->get_value('use_c14_bombspike'),
3726+
'ssp_rcp'=>$nl_flags->{'ssp_rcp'} );
37303727
}
37313728
} else {
37323729
if ( defined($nl->get_value('use_c14_bombspike')) ||
37333730
defined($nl->get_value('atm_c14_filename')) ) {
3734-
$log->fatal_error("use_c14 NOT set to .true., but use_c14_bompspike/atm_c14_filename defined.");
3731+
$log->fatal_error("use_c14 is FALSE and use_c14_bombspike or atm_c14_filename set");
37353732
}
37363733
}
3737-
if ( defined($use_c13) ) {
3738-
if ( &value_is_true($use_c13) ) {
3739-
my $use_c13_timeseries = $nl->get_value('use_c13_timeseries');
3740-
if ( defined($use_c13_timeseries) && &value_is_true($use_c13_timeseries) ) {
3741-
add_default($opts, $nl_flags->{'inputdata_rootdir'}, $definition, $defaults, $nl, 'atm_c13_filename',
3742-
'use_c13'=>$use_c13, 'use_cn'=>$nl_flags->{'use_cn'}, 'use_c13_timeseries'=>$nl->get_value('use_c13_timeseries'),
3743-
'ssp_rcp'=>$nl_flags->{'ssp_rcp'} );
3744-
}
3745-
} else {
3746-
if ( defined($nl->get_value('use_c13_timeseries')) ||
3747-
defined($nl->get_value('atm_c13_filename')) ) {
3748-
$log->fatal_error("use_c13 is FALSE and use_c13_timeseries or atm_c13_filename set");
3749-
}
3734+
if ( &value_is_true($use_c13) ) {
3735+
add_default($opts, $nl_flags->{'inputdata_rootdir'}, $definition, $defaults, $nl, 'use_c13_timeseries', 'bgc_mode'=>$nl_flags->{'bgc_mode'}, 'phys'=>$nl_flags->{'phys'});
3736+
my $use_c13_timeseries = $nl->get_value('use_c13_timeseries');
3737+
if ( &value_is_true($use_c13_timeseries) ) {
3738+
add_default($opts, $nl_flags->{'inputdata_rootdir'}, $definition, $defaults, $nl, 'atm_c13_filename',
3739+
'use_c13'=>$use_c13, 'use_cn'=>$nl_flags->{'use_cn'}, 'use_c13_timeseries'=>$nl->get_value('use_c13_timeseries'),
3740+
'ssp_rcp'=>$nl_flags->{'ssp_rcp'} );
37503741
}
37513742
} else {
37523743
if ( defined($nl->get_value('use_c13_timeseries')) ||
37533744
defined($nl->get_value('atm_c13_filename')) ) {
3754-
$log->fatal_error("use_c13 NOT set to .true., but use_c13_bompspike/atm_c13_filename defined.");
3745+
$log->fatal_error("use_c13 is FALSE and use_c13_timeseries or atm_c13_filename set");
37553746
}
37563747
}
37573748
} else {
3758-
if ( defined($use_c13) ||
3759-
defined($use_c14) ||
3760-
defined($nl->get_value('use_c14_bombspike')) ||
3749+
if ( &value_is_true($use_c13) ||
3750+
&value_is_true($use_c14) ||
3751+
&value_is_true($nl->get_value('use_c14_bombspike')) ||
37613752
defined($nl->get_value('atm_c14_filename')) ||
3762-
defined($nl->get_value('use_c13_timeseries')) ||
3753+
&value_is_true($nl->get_value('use_c13_timeseries')) ||
37633754
defined($nl->get_value('atm_c13_filename')) ) {
37643755
$log->fatal_error("bgc=sp and C isotope namelist variables were set, both can't be used at the same time");
37653756
}

bld/namelist_files/namelist_defaults_ctsm.xml

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,17 @@ attributes from the config_cache.xml file (with keys converted to upper-case).
110110
<stomatalcond_method >Medlyn2011</stomatalcond_method>
111111
<stomatalcond_method phys="clm4_5" >Ball-Berry1987</stomatalcond_method>
112112

113+
<!-- Carbon isotope settings -->
114+
<use_c13>.false.</use_c13>
115+
<use_c14>.false.</use_c14>
116+
<use_c13_timeseries>.false.</use_c13_timeseries>
117+
<use_c14_bombspike>.false.</use_c14_bombspike>
118+
119+
<use_c13 phys="clm6_0" bgc_mode="bgc" >.true.</use_c13>
120+
<use_c14 phys="clm6_0" bgc_mode="bgc" >.true.</use_c14>
121+
<use_c13_timeseries phys="clm6_0" bgc_mode="bgc" >.true.</use_c13_timeseries>
122+
<use_c14_bombspike phys="clm6_0" bgc_mode="bgc" >.true.</use_c14_bombspike>
123+
113124
<!-- Carbon isotope concentration files -->
114125
<atm_c13_filename use_c13=".true." use_c13_timeseries=".true." ssp_rcp="hist" >lnd/clm2/isotopes/atm_delta_C13_CMIP6_1850-2015_yearly_v2.0_c190528.nc</atm_c13_filename>
115126
<atm_c13_filename use_c13=".true." use_c13_timeseries=".true." ssp_rcp="SSP1-1.9" >lnd/clm2/isotopes/atm_delta_C13_CMIP6_SSP119_1850-2100_yearly_c181209.nc</atm_c13_filename>
@@ -484,13 +495,11 @@ attributes from the config_cache.xml file (with keys converted to upper-case).
484495
<snow_thermal_cond_method>Jordan1991</snow_thermal_cond_method>
485496
<snow_thermal_cond_method phys="clm6_0">Sturm1997</snow_thermal_cond_method>
486497

487-
<!-- TODO change clm6 to Jordan with answer changing tag for glacier mass ballance -->
488498
<snow_thermal_cond_glc_method>Jordan1991</snow_thermal_cond_glc_method>
489-
<snow_thermal_cond_glc_method phys="clm6_0">Sturm1997</snow_thermal_cond_glc_method>
499+
<snow_thermal_cond_glc_method phys="clm6_0">Jordan1991</snow_thermal_cond_glc_method>
490500

491-
<!-- TODO change clm6 to Sturm with answer changing tag -->
492501
<snow_thermal_cond_lake_method>Jordan1991</snow_thermal_cond_lake_method>
493-
<snow_thermal_cond_lake_method phys="clm6_0">Jordan1991</snow_thermal_cond_lake_method>
502+
<snow_thermal_cond_lake_method phys="clm6_0">Sturm1997</snow_thermal_cond_lake_method>
494503

495504
<!-- Default glacier behavior is:
496505
Mountain glaciers: single_at_atm_topo
@@ -532,7 +541,7 @@ attributes from the config_cache.xml file (with keys converted to upper-case).
532541
<!-- The default filenames are given relative to the root directory
533542
for the CLM2 data in the CESM distribution -->
534543
<!-- Plant function types (relative to {csmdata}) -->
535-
<paramfile phys="clm6_0" >lnd/clm2/paramdata/ctsm60_params.c250311.nc</paramfile>
544+
<paramfile phys="clm6_0" >lnd/clm2/paramdata/ctsm5.3.041.Nfix_params.v13.c250221_upplim250.nc</paramfile>
536545
<paramfile phys="clm5_0" >lnd/clm2/paramdata/clm50_params.c250311.nc</paramfile>
537546
<paramfile phys="clm4_5" >lnd/clm2/paramdata/clm45_params.c250311.nc</paramfile>
538547

@@ -1288,15 +1297,15 @@ attributes from the config_cache.xml file (with keys converted to upper-case).
12881297
<finidat hgrid="0.9x1.25" mask="gx1v7" use_cn=".true." use_cndv=".false." use_fates=".false."
12891298
ic_ymd="18500101" sim_year="1850" do_transient_pfts=".false." use_excess_ice=".true."
12901299
ic_tod="0" glc_nec="10" use_crop=".true." irrigate=".false."
1291-
phys="clm6_0"
1292-
>lnd/clm2/initdata_esmf/ctsm5.3/ctsm53019_f09_BNF_pSASU.clm2.r.0161-01-01-00000.nc
1300+
phys="clm6_0" use_init_interp=".true."
1301+
>lnd/clm2/initdata_esmf/ctsm5.4/ctsm53041_54surfdata_snowTherm_100_pSASU.clm2.r.0161-01-01-00000_64bitoffset.nc
12931302
</finidat>
12941303
<!-- Corresponding ne30 -->
12951304
<finidat hgrid="ne30np4.pg3" mask="tx2_3v2" use_cn=".true." use_cndv=".false." use_fates=".false."
12961305
sim_year="1850" do_transient_pfts=".false." use_excess_ice=".true."
12971306
use_crop=".true." irrigate=".false."
12981307
phys="clm6_0" use_init_interp=".true."
1299-
>lnd/clm2/initdata_esmf/ctsm5.3/ctsm53019_f09_BNF_pSASU.clm2.r.0161-01-01-00000.nc
1308+
>lnd/clm2/initdata_esmf/ctsm5.4/ctsm53041_54surfdata_ne30_102_pSASU.clm2.r.0081-01-01-00000_64bitoffset.nc
13001309
</finidat>
13011310
<!-- Corresponding f19 -->
13021311
<finidat hgrid="1.9x2.5" mask="gx1v7" use_cn=".true." use_cndv=".false." use_fates=".false."
@@ -1431,13 +1440,13 @@ attributes from the config_cache.xml file (with keys converted to upper-case).
14311440
ic_ymd="20000101" sim_year="2000" use_excess_ice=".true."
14321441
ic_tod="0" glc_nec="10" use_crop=".true." irrigate=".true."
14331442
phys="clm6_0" use_init_interp=".true."
1434-
>lnd/clm2/initdata_esmf/ctsm5.3/ctsm53019_f09_BNF_hist.clm2.r.2000-01-01-00000.nc
1443+
>lnd/clm2/initdata_esmf/ctsm5.4/ctsm53041_54surfdata_ne30_102_HIST.clm2.r.2000-01-01-00000.nc
14351444
</finidat>
14361445
<finidat hgrid="ne30np4.pg3" maxpft="79" mask="tx2_3v2" use_cn=".true." use_cndv=".false." use_fates=".false."
14371446
ic_ymd="20000101" sim_year="2000" use_excess_ice=".true."
14381447
ic_tod="0" glc_nec="10" use_crop=".true." irrigate=".true."
14391448
phys="clm6_0" use_init_interp=".true."
1440-
>lnd/clm2/initdata_esmf/ctsm5.3/ctsm53019_f09_BNF_hist.clm2.r.2000-01-01-00000.nc
1449+
>lnd/clm2/initdata_esmf/ctsm5.4/ctsm53041_54surfdata_ne30_102_HIST.clm2.r.2000-01-01-00000.nc
14411450
</finidat>
14421451

14431452
<!-- clm5_0 and cam7.0 -->

cime_config/testdefs/ExpectedTestFails.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,20 @@
6262
</test>
6363

6464
<!-- aux_clm test suite failures -->
65+
<test name="LII2FINIDATAREAS_D_P256x2_Ld1.f09_t232.I1850Clm60BgcCrop.derecho_intel.clm-default">
66+
<phase name="RUN">
67+
<status>FAIL</status>
68+
<issue>#3252</issue>
69+
<comment>Works with finidat = 'ctsm53041_54surfdata_snowTherm_100_pSASU.clm2.r.0161-01-01-00000.nc' and fails with finidat = 'ctsm53041_54surfdata_snowTherm_100_pSASU.clm2.r.0161-01-01-00000_64bitoffset.nc'.</comment>
70+
</phase>
71+
</test>
72+
<test name="LII2FINIDATAREAS_D_P256x2_Ld1.f09_t232.I1850Clm60BgcCrop.derecho_intel.clm-default--clm-matrixcnOn_ignore_warnings">
73+
<phase name="RUN">
74+
<status>FAIL</status>
75+
<issue>#3252</issue>
76+
<comment>Works with finidat = 'ctsm53041_54surfdata_snowTherm_100_pSASU.clm2.r.0161-01-01-00000.nc' and fails with finidat = 'ctsm53041_54surfdata_snowTherm_100_pSASU.clm2.r.0161-01-01-00000_64bitoffset.nc'.</comment>
77+
</phase>
78+
</test>
6579
<test name="SMS_Ld2_D_PS.f09_g17.I1850Clm50BgcCropCmip6.derecho_intel.clm-basic_interp">
6680
<phase name="RUN">
6781
<status>FAIL</status>

cime_config/testdefs/testlist_clm.xml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
<machine name="izumi" compiler="nag" category="aux_clm"/>
151151
</machines>
152152
<options>
153-
<option name="wallclock">00:30:00</option>
153+
<option name="wallclock">00:40:00</option>
154154
<option name="comment">CESM3 development Exact restart test with change in the processor count at f10, for izumi nag</option>
155155
</options>
156156
</test>
@@ -561,23 +561,23 @@
561561
<machine name="izumi" compiler="nag" category="aux_clm"/>
562562
</machines>
563563
<options>
564-
<option name="wallclock">00:40:00</option>
564+
<option name="wallclock">00:50:00</option>
565565
</options>
566566
</test>
567567
<test name="ERI_D_Ld9_P48x1" grid="f10_f10_mg37" compset="I2000Clm50Sp" testmods="clm/SNICARFRC">
568568
<machines>
569569
<machine name="izumi" compiler="nag" category="aux_clm"/>
570570
</machines>
571571
<options>
572-
<option name="wallclock">00:40:00</option>
572+
<option name="wallclock">00:50:00</option>
573573
</options>
574574
</test>
575575
<test name="ERS_D" grid="f10_f10_mg37" compset="I1850Clm60Sp" testmods="clm/ExcessIceStreams">
576576
<machines>
577577
<machine name="izumi" compiler="nag" category="aux_clm"/>
578578
</machines>
579579
<options>
580-
<option name="wallclock">00:30:00</option>
580+
<option name="wallclock">00:40:00</option>
581581
<option name="comment">Include an excess ice test starting up from streams</option>
582582
</options>
583583
</test>
@@ -1349,7 +1349,7 @@
13491349
<machine name="izumi" compiler="nag" category="matrixcn"/>
13501350
</machines>
13511351
<options>
1352-
<option name="wallclock">00:20:00</option>
1352+
<option name="wallclock">00:30:00</option>
13531353
<option name="comment">Repeat last ERP_D_Ld5_P48x1...ciso test with matrixcnOn</option>
13541354
</options>
13551355
</test>
@@ -1605,7 +1605,7 @@
16051605
<machine name="izumi" compiler="nag" category="prealpha"/>
16061606
</machines>
16071607
<options>
1608-
<option name="wallclock">00:20:00</option>
1608+
<option name="wallclock">00:30:00</option>
16091609
</options>
16101610
</test>
16111611
<test name="ERP_D_P48x1" grid="f10_f10_mg37" compset="IHistClm60Bgc" testmods="clm/decStart--clm/matrixcnOn_ignore_warnings">
@@ -2283,7 +2283,7 @@
22832283
<option name="comment">Repeat LII_D... test with matrixcnOn</option>
22842284
</options>
22852285
</test>
2286-
<test name="LII2FINIDATAREAS_D_P256x2_Ld1" grid="f09_g17" compset="I1850Clm50BgcCrop" testmods="clm/default">
2286+
<test name="LII2FINIDATAREAS_D_P256x2_Ld1" grid="f09_t232" compset="I1850Clm60BgcCrop" testmods="clm/default">
22872287
<machines>
22882288
<machine name="derecho" compiler="intel" category="aux_clm"/>
22892289
</machines>
@@ -2292,7 +2292,7 @@
22922292
<option name="comment">Exercise the init_interp_method='use_finidat_areas' option. See documentation at the top of the python script implementing this test for more details and rationale. This test requires a compatible finidat file (i.e., a file that can be used without interpolation). If no such file is available out-of-the-box, then the test will need to use a testmod that points to a compatible file.</option>
22932293
</options>
22942294
</test>
2295-
<test name="LII2FINIDATAREAS_D_P256x2_Ld1" grid="f09_g17" compset="I1850Clm50BgcCrop" testmods="clm/default--clm/matrixcnOn_ignore_warnings">
2295+
<test name="LII2FINIDATAREAS_D_P256x2_Ld1" grid="f09_t232" compset="I1850Clm60BgcCrop" testmods="clm/default--clm/matrixcnOn_ignore_warnings">
22962296
<machines>
22972297
<machine name="derecho" compiler="intel" category="aux_clm"/>
22982298
<machine name="derecho" compiler="intel" category="matrixcn"/>
@@ -2759,7 +2759,7 @@
27592759
<machine name="izumi" compiler="nag" category="aux_clm"/>
27602760
</machines>
27612761
<options>
2762-
<option name="wallclock">00:20:00</option>
2762+
<option name="wallclock">00:30:00</option>
27632763
</options>
27642764
</test>
27652765
<test name="ERP_D_P64x2_Ld3" grid="f10_f10_mg37" compset="I2000Clm45BgcCrop" testmods="clm/no_subgrid_fluxes">
@@ -2889,7 +2889,7 @@
28892889
<machine name="derecho" compiler="intel" category="aux_clm_mpi_serial"/>
28902890
</machines>
28912891
<options>
2892-
<option name="wallclock">00:20:00</option>
2892+
<option name="wallclock">00:30:00</option>
28932893
<option name="tput_tolerance">0.5</option>
28942894
<option name="comment">Add at least one test of a NEON site with SP</option>
28952895
</options>
@@ -2931,7 +2931,7 @@
29312931
<machine name="izumi" compiler="nag" category="fates"/>
29322932
</machines>
29332933
<options>
2934-
<option name="wallclock">00:20:00</option>
2934+
<option name="wallclock">00:30:00</option>
29352935
<option name="tput_tolerance">0.5</option>
29362936
<option name="comment">Add at least one test of a FATES NEON site that needs lightning data</option>
29372937
</options>
@@ -2946,7 +2946,7 @@
29462946
<machine name="derecho" compiler="gnu" category="fates"/>
29472947
</machines>
29482948
<options>
2949-
<option name="wallclock">00:20:00</option>
2949+
<option name="wallclock">00:30:00</option>
29502950
<option name="tput_tolerance">0.5</option>
29512951
<option name="comment">Add at least one test of a FATES NEON site with PRISM precipitation</option>
29522952
</options>
@@ -3382,7 +3382,7 @@
33823382
<machine name="izumi" compiler="nag" category="aux_clm"/>
33833383
</machines>
33843384
<options>
3385-
<option name="wallclock">00:40:00</option>
3385+
<option name="wallclock">00:50:00</option>
33863386
<option name="comment">Ensure functionality of two-stream radiation option in FATES</option>
33873387
</options>
33883388
</test>
@@ -3431,7 +3431,7 @@
34313431
<machine name="izumi" compiler="nag" category="aux_clm"/>
34323432
</machines>
34333433
<options>
3434-
<option name="wallclock">00:40:00</option>
3434+
<option name="wallclock">00:50:00</option>
34353435
</options>
34363436
</test>
34373437
<test name="ERS_Ld397" grid="f10_f10_mg37" compset="I2000Clm50Fates" testmods="clm/FatesCold">
@@ -4398,7 +4398,7 @@
43984398
<machine name="izumi" compiler="nag" category="aux_clm"/>
43994399
</machines>
44004400
<options>
4401-
<option name="wallclock">00:30:00</option>
4401+
<option name="wallclock">00:40:00</option>
44024402
</options>
44034403
</test>
44044404

0 commit comments

Comments
 (0)