Skip to content

Commit

Permalink
parameter changes for wave coupling
Browse files Browse the repository at this point in the history
  • Loading branch information
alperaltuntas committed Oct 18, 2024
1 parent ac2c8c2 commit 0416d32
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 2 deletions.
26 changes: 25 additions & 1 deletion param_templates/MOM_input.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2210,7 +2210,7 @@ Global:
The background gustiness in the winds."
datatype: real
units: Pa
value: 0.02
value: 0.0004
FIX_USTAR_GUSTLESS_BUG:
description: |
"[Boolean] default = False
Expand Down Expand Up @@ -2730,6 +2730,23 @@ Global:
units: Boolean
value:
$OCN_GRID == "tx0.25v1": True
FPMIX:
description: |
"[Boolean] default = False
If true, add non-local momentum flux increments and diffuse down the Eulerian
gradient.
datatype: logical
units: Boolean
value:
$COMP_WAV == "ww3" and $WAV_GRID in ["wtx2_3v2", "wgx3v7"]: True
CEMP_NL:
description: |
"default = 3.6
Empirical coefficient of non-local momentum mixing."
datatype: real
units: nondim
value:
$COMP_WAV == "ww3" and $WAV_GRID in ["wtx2_3v2", "wgx3v7"]: 2.0

# MISOMIP-only variables:

Expand Down Expand Up @@ -3694,5 +3711,12 @@ KPP:
datatype: string
value:
$COMP_WAV == "ww3": VR12
STOKES_MOST:
description: |
default = False
If True, use Stokes Similarity package.
datatype: logical
value:
$COMP_WAV == "ww3" and $WAV_GRID in ["wtx2_3v2", "wgx3v7"]: True

...
25 changes: 24 additions & 1 deletion param_templates/json/MOM_input.json
Original file line number Diff line number Diff line change
Expand Up @@ -1731,7 +1731,7 @@
"description": "\"[Pa] default = 0.02\n The background gustiness in the winds.\"\n",
"datatype": "real",
"units": "Pa",
"value": 0.02
"value": 0.0004
},
"FIX_USTAR_GUSTLESS_BUG": {
"description": "\"[Boolean] default = False\nIf true correct a bug in the time-averaging of the gustless wind\nfriction velocity.\"\n",
Expand Down Expand Up @@ -2168,6 +2168,22 @@
"$OCN_GRID == \"tx0.25v1\"": true
}
},
"FPMIX": {
"description": "\"[Boolean] default = False\nIf true, add non-local momentum flux increments and diffuse down the Eulerian\ngradient.\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$COMP_WAV == \"ww3\" and $WAV_GRID in [\"wtx2_3v2\", \"wgx3v7\"]": true
}
},
"CEMP_NL": {
"description": "\"default = 3.6\nEmpirical coefficient of non-local momentum mixing.\"\n",
"datatype": "real",
"units": "nondim",
"value": {
"$COMP_WAV == \"ww3\" and $WAV_GRID in [\"wtx2_3v2\", \"wgx3v7\"]": 2.0
}
},
"REENTRANT_X": {
"description": "\"[Boolean] default = True\nIf true, the domain is zonally reentrant.\"\n",
"datatype": "logical",
Expand Down Expand Up @@ -2991,6 +3007,13 @@
"value": {
"$COMP_WAV == \"ww3\"": "VR12"
}
},
"STOKES_MOST": {
"description": "default = False\nIf True, use Stokes Similarity package.\n",
"datatype": "logical",
"value": {
"$COMP_WAV == \"ww3\" and $WAV_GRID in [\"wtx2_3v2\", \"wgx3v7\"]": true
}
}
}
}

0 comments on commit 0416d32

Please sign in to comment.