Skip to content

Commit 70a708b

Browse files
committed
Merge branch 'jonbob/mali/fix-globalstats-list' into next (PR #6627)
MALI update to fix issues from earlier PR causing sporadic test failures Including a variable that was deactivated in the globalStats stream caused sporadic failures during the second run of some ERS tests on several platform/compiler combinations. That variable is now only included when MALI is using Albany. Also updates a namelist default that had been missed but does not change answers. Fixes #6600 [NML] for configurations with MALI [BFB]
2 parents 0f22d06 + a8763c2 commit 70a708b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

components/mpas-albany-landice/bld/namelist_files/namelist_defaults_mali.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
<!-- advection -->
2020
<config_thickness_advection>'fo'</config_thickness_advection>
21-
<config_tracer_advection>'none'</config_tracer_advection>
21+
<config_tracer_advection>'fo'</config_tracer_advection>
2222
<config_horiz_tracer_adv_order>3</config_horiz_tracer_adv_order>
2323
<config_advection_coef_3rd_order>0.25</config_advection_coef_3rd_order>
2424
<config_restore_thickness_after_advection>.false.</config_restore_thickness_after_advection>

components/mpas-albany-landice/cime_config/buildnml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,9 @@ def buildnml(case, caseroot, compname):
280280
lines.append(' <var name="simulationStartTime"/>')
281281
lines.append(' <var name="allowableDtACFL"/>')
282282
lines.append(' <var name="allowableDtDCFL"/>')
283-
lines.append(' <var name="albanyVelocityError"/>')
283+
if mali_use_albany:
284+
lines.append(' <var name="albanyVelocityError"/>')
285+
284286
lines.append('</stream>')
285287
lines.append('')
286288
lines.append('<!--')

0 commit comments

Comments
 (0)