Skip to content

Commit aeb708d

Browse files
authored
Modified default parameter package (#1447)
Issue #1445: Resolves #1445; Resolves #1447 (PR);
1 parent 99f92df commit aeb708d

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

config/mesh_defaults.sh

+8-2
Original file line numberDiff line numberDiff line change
@@ -1127,7 +1127,7 @@ case $GRIDNAME in
11271127
time_weighting_coefficients="0.0 1.0 0.0" # A00 B00 C00 in fort.15
11281128
lateral_turbulence="smagorinsky" # "smagorinsky" or "eddy_viscosity"
11291129
eddy_viscosity_coefficient="20.0" # ESLM
1130-
smagorinsky_coefficient="0.05"
1130+
smagorinsky_coefficient="2.0"
11311131
bottom_friction_limit=0.001 # min when using Manning's n (CF/FFACTOR)
11321132
h0=0.1 # min depth (m) to be considered wet
11331133
velmin=0.01
@@ -1137,6 +1137,7 @@ case $GRIDNAME in
11371137
nodal_attribute_activate+=( primitive_weighting_in_continuity_equation )
11381138
nodal_attribute_activate+=( surface_canopy_coefficient )
11391139
nodal_attribute_activate+=( surface_directional_effective_roughness_length )
1140+
nodal_attribute_activate+=( elemental_slope_limiter )
11401141
# tidal forcing
11411142
tidalConstituents=( "k1" "o1" "p1" "q1" "n2" "m2" "s2" "k2" )
11421143
# nodal attributes file
@@ -1149,7 +1150,12 @@ case $GRIDNAME in
11491150
nodal_attribute_default_values["surface_directional_effective_roughness_length"]="0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0"
11501151
nodal_attribute_default_values["elemental_slope_limiter"]="0.02"
11511152
# meteorological forcing
1152-
metControl["WindDragLimit"]="0.003" # max wind drag coefficient, unitless
1153+
metControl["WindDragLimit"]="0.0025" # max wind drag coefficient, unitless
1154+
metControl["invertedBarometerOnElevationBoundary"]="yes" # yes|no to include inverse barometer effect on boundary
1155+
# wetting and drying
1156+
wetDryControl["slim"]=1000000000.0 # value of slope limiter for wet/dry
1157+
# SWAN coupling
1158+
SWANDT=1800
11531159
;;
11541160
*)
11551161
fatal "The parameter package '$parameterPackage' is not supported for the mesh '$GRIDNAME'."

input/meshes/EGOMv20b/EGOMv20b.15.ASGS2024.1.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
7.0 ! %DRAMP-Line%
2727
%A00B00C00% ! %A00B00C00-Line%
2828
%H0% 12 12 %VELMIN% ! %H0-Line%
29-
265.5 29.0 ! %SLAM0-Line%
29+
-81.29 28.38 ! %SLAM0-Line%
3030
%FFACTOR% 1.0 10. 0.33333 ! %FFACTOR-Line%
3131
%ESLM% ! %ESLM-Line%
3232
0.00010 ! %CORI-Line%

0 commit comments

Comments
 (0)