Skip to content

Commit 27f4ecb

Browse files
authored
Merge pull request #515 from billsacks/xgrid_default
Make xgrid the default aoflux_grid when atm and ocn are running on different grids
2 parents 0de751f + aa7f5c1 commit 27f4ecb

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

cime_config/namelist_definition_drv.xml

+4-1
Original file line numberDiff line numberDiff line change
@@ -925,7 +925,10 @@
925925
default: ogrid
926926
</desc>
927927
<values>
928-
<value>ogrid</value>
928+
<value>xgrid</value>
929+
<!-- xgrid introduces unnecessary cost and complexity if atm & ocn are on the same
930+
grid, so fall back to ogrid in that case -->
931+
<value samegrid_atm_ocn='true'>ogrid</value>
929932
</values>
930933
</entry>
931934
<entry id="ocn_surface_flux_scheme">

cime_config/testdefs/testlist_drv.xml

+10
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,16 @@
6565
</options>
6666
</test>
6767

68+
<test compset="X" grid="f19_g17" name="ERS_D_Ln9" testmods="drv/aoflux_ogrid">
69+
<machines>
70+
<machine name="derecho" compiler="intel" category="aux_cmeps"/>
71+
</machines>
72+
<options>
73+
<option name="wallclock"> 00:40:00 </option>
74+
<option name="comment">The default aoflux_grid is now xgrid; include a debug test with different atm/ocn grids with aoflux_grid=ogrid to make sure that option continues to work.</option>
75+
</options>
76+
</test>
77+
6878
<!-- ======================================= -->
6979
<!-- B compsets -->
7080
<!-- ======================================= -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
aoflux_grid = "ogrid"

0 commit comments

Comments
 (0)