From 2864735c2e78bba4fe211b24c272171cdafae8d7 Mon Sep 17 00:00:00 2001 From: Robert Hallberg Date: Fri, 5 Jun 2020 18:33:42 -0400 Subject: [PATCH] +(*)Set the default of OBC_RADIATION_MAX to 1.0 Changed the default value of OBC_RADIATION_MAX from 10.0 to 1.0, which makes much more physical sense. This will change answers in test cases where open boundary conditions are used and OBC_RADIATION_MAX is not set explicitly, and there are changes to the MOM_parameter_doc files for cases with open boundary conditions. --- src/core/MOM_open_boundary.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/MOM_open_boundary.F90 b/src/core/MOM_open_boundary.F90 index 58e3fb63fc..076acd9fe4 100644 --- a/src/core/MOM_open_boundary.F90 +++ b/src/core/MOM_open_boundary.F90 @@ -502,7 +502,7 @@ subroutine open_boundary_config(G, US, param_file, OBC) "The maximum magnitude of the baroclinic radiation velocity (or speed of "//& "characteristics), in gridpoints per timestep. This is only "//& "used if one of the open boundary segments is using Orlanski.", & - units="nondim", default=10.0) !### Should the default be changed to 1.0? + units="nondim", default=1.0) call get_param(param_file, mdl, "OBC_RAD_VEL_WT", OBC%gamma_uv, & "The relative weighting for the baroclinic radiation "//& "velocities (or speed of characteristics) at the new "//&