You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
call get_param(param_file, mdl, "NEW_SPONGES", time_space_interp_sponge, &
"Set True if using the newer sponging code which "//&
"performs on-the-fly regridding in lat-lon-time.",&
"of sponge restoring data.", default=.false.)
if (time_space_interp_sponge) then
call MOM_error(WARNING, " initialize_sponges: NEW_SPONGES has been deprecated. "//&
"Please use INTERPOLATE_SPONGE_TIME_SPACE instead. Setting "//&
"INTERPOLATE_SPONGE_TIME_SPACE = True.")
endif
call get_param(param_file, mdl, "INTERPOLATE_SPONGE_TIME_SPACE", time_space_interp_sponge, &
"Set True if using the newer sponging code which "//&
"performs on-the-fly regridding in lat-lon-time.",&
"of sponge restoring data.", default=time_space_interp_sponge)
is that INTERPOLATE_SPONGE_TIME_SPACE registers as default = True and therefore not recorded in the .short file.
The text was updated successfully, but these errors were encountered:
Stop logging the deprecated run-time parameter NEW_SPONGES, and always log
INTERPOLATE_SPONGE_TIME_SPACE as if NEW_SPONGES were not used. This commit will
address MOM6 issue #46, which can be closed it is accepted. This will change
the MOM_parameter_doc entries in some cases, but all answers are bitwise
identical.
The result of this code:
is that INTERPOLATE_SPONGE_TIME_SPACE registers as default = True and therefore not recorded in the .short file.
The text was updated successfully, but these errors were encountered: