Skip to content

Commit

Permalink
Merge branch 'jonbob/seaice/fix-bgc-column-physics-type' (PR #6036)
Browse files Browse the repository at this point in the history
Make "column_package" the default column_physics_type for BGC

With icepack now the default seaice column physics package, we need to
make "column_package" the default when seaice BGC is on until it's
completely supported in icepack.

[non-BFB] only for BGC configurations with active seaice (which are
          currently broken)
  • Loading branch information
jonbob committed Nov 1, 2023
2 parents db42f2a + f92ce02 commit 3872f4c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/mpas-seaice/bld/build-namelist
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,11 @@ add_default($nl, 'config_recover_tracer_means_check');
# Namelist group: column_package #
##################################

add_default($nl, 'config_column_physics_type');
if ($ice_bgc eq 'ice_bgc') {
add_default($nl, 'config_column_physics_type', 'val'=>"column_package");
} else {
add_default($nl, 'config_column_physics_type');
}
add_default($nl, 'config_use_column_shortwave');
add_default($nl, 'config_use_column_vertical_thermodynamics');
if ($ice_bgc eq 'ice_bgc') {
Expand Down

0 comments on commit 3872f4c

Please sign in to comment.