A bug was introduced in #6310 in MPAS-Ocean's standalone init mode. In the global_ocean test case, the bottom depth is incorrectly altered, such that all but the shallowest layers have zero layer thickness.
As an example, see:
#6310 (comment)
This appears to be an incorrect change from a max() to a min() operator on this line:
|
bottomDepth(iCell) = min(bottomDepth(iCell), refBottomDepth(minimum_levels)) |
A bug was introduced in #6310 in MPAS-Ocean's standalone init mode. In the
global_oceantest case, the bottom depth is incorrectly altered, such that all but the shallowest layers have zero layer thickness.As an example, see:
#6310 (comment)
This appears to be an incorrect change from a
max()to amin()operator on this line:E3SM/components/mpas-ocean/src/mode_init/mpas_ocn_init_global_ocean.F
Line 897 in ef925d1