Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Purpose
The benchmark runs failed this weekend because
dt
was not specified correctly (see error here).The benchmark AMIP config files (e.g.
config/benchmark_configs/amip_diagedmf.yml
) were previously relying ondt
being specified in the atmos config files they use (e.g.config/benchmark_configs/climaatmos_diagedmf.yml
), rather than specifyingdt
explicitly in the AMIP configs. When the configs were merged inget_atmos_config_dict
, the atmos config'sdt
was inherited by the coupled config file (here). After #1059, we overwrite thedt
entry in the atmos config with the entry in the coupler config (here). This requires that the coupler config does have an entry fordt
(or all component dts), so we can no longer rely on the atmos dt.This is a change in behavior, but the previous behavior was not necessarily desired. It seems reasonable to me that the config file requires that
dt
is specified there, rather than inherited from an atmosphere config, so I think we can keep the current setup and just adddt
entries to the coupled configs that didn't have it before.To Do
dt
entry to AMIP benchmark configsdt
or component model dts