Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions param_templates/MOM_input.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1598,15 +1598,16 @@ Global:
value:
$OCN_GRID == "gx1v6": True
$OCN_GRID == "tx0.66v1": True
SMOOTH_RI:
N_SMOOTH_RI:
description: |
"[Boolean] default = False
If true, vertically smooth the Richardsonnumber by applying a 1-2-1 filter once."
datatype: logical
units: Boolean
"default = 0
If > 0, vertically smooth the Richardson number by applying a 1-2-1 filter
N_SMOOTH_RI times."
datatype: integer
units: nondim
value:
$OCN_GRID == "gx1v6": True
$OCN_GRID == "tx0.66v1": True
$OCN_GRID == "gx1v6": 1
$OCN_GRID == "tx0.66v1": 1
USE_CVMIX_DDIFF:
description: |
"[Boolean] default = False
Expand Down
12 changes: 6 additions & 6 deletions param_templates/json/MOM_input.json
Original file line number Diff line number Diff line change
Expand Up @@ -1192,13 +1192,13 @@
"$OCN_GRID == \"tx0.66v1\"": true
}
},
"SMOOTH_RI": {
"description": "\"[Boolean] default = False\nIf true, vertically smooth the Richardsonnumber by applying a 1-2-1 filter once.\"\n",
"datatype": "logical",
"units": "Boolean",
"N_SMOOTH_RI": {
"description": "\"default = 0\nIf > 0, vertically smooth the Richardson number by applying a 1-2-1 filter\nN_SMOOTH_RI times.\"\n",
"datatype": "integer",
"units": "nondim",
"value": {
"$OCN_GRID == \"gx1v6\"": true,
"$OCN_GRID == \"tx0.66v1\"": true
"$OCN_GRID == \"gx1v6\"": 1,
"$OCN_GRID == \"tx0.66v1\"": 1
}
},
"USE_CVMIX_DDIFF": {
Expand Down