Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[0.25deg] Disable TIDES and associated parameters #77

Merged
merged 2 commits into from
Jun 21, 2024
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
9 changes: 0 additions & 9 deletions MOM_input
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,6 @@ USE_KH_IN_MEKE = True ! [Boolean] default = False
! === module MOM_porous_barriers ===

! === module MOM_dynamics_split_RK2 ===
TIDES = True ! [Boolean] default = False
! If true, apply tidal momentum forcing.

! === module MOM_continuity ===

Expand All @@ -370,13 +368,6 @@ BOUND_CORIOLIS = True ! [Boolean] default = False
! possible to use centered difference thickness fluxes.

! === module MOM_tidal_forcing ===
TIDE_M2 = True ! [Boolean] default = False
! If true, apply tidal momentum forcing at the M2 frequency. This is only used
! if TIDES is true.
TIDE_SAL_SCALAR_VALUE = 0.094 ! [m m-1]
! The constant of proportionality between sea surface height (really it should
! be bottom pressure) anomalies and bottom geopotential anomalies. This is only
! used if TIDES and TIDE_USE_SAL_SCALAR are true.

! === module MOM_PressureForce ===

Expand Down
6 changes: 3 additions & 3 deletions docs/MOM_parameter_doc.all
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,7 @@ PORBAR_ETA_INTERP = "MAX" ! default = "MAX"
! HARMONIC - harmonic mean of the adjacent cells

! === module MOM_dynamics_split_RK2 ===
TIDES = True ! [Boolean] default = False
TIDES = False ! [Boolean] default = False
! If true, apply tidal momentum forcing.
BE = 0.6 ! [nondim] default = 0.6
! If SPLIT is true, BE determines the relative weighting of a 2nd-order
Expand Down Expand Up @@ -1219,7 +1219,7 @@ PV_ADV_SCHEME = "PV_ADV_CENTERED" ! default = "PV_ADV_CENTERED"
! PV_ADV_UPWIND1 - upwind, first order

! === module MOM_tidal_forcing ===
TIDE_M2 = True ! [Boolean] default = False
TIDE_M2 = False ! [Boolean] default = False
! If true, apply tidal momentum forcing at the M2 frequency. This is only used
! if TIDES is true.
TIDE_S2 = False ! [Boolean] default = False
Expand Down Expand Up @@ -1255,7 +1255,7 @@ TIDAL_SAL_FROM_FILE = False ! [Boolean] default = False
USE_PREVIOUS_TIDES = False ! [Boolean] default = False
! If true, use the SAL from the previous iteration of the tides to facilitate
! convergent iteration. This is only used if TIDES is true.
TIDE_USE_SAL_SCALAR = True ! [Boolean] default = True
TIDE_USE_SAL_SCALAR = True ! [Boolean] default = True
! If true and TIDES is true, use the scalar approximation when calculating
! self-attraction and loading.
TIDE_SAL_SCALAR_VALUE = 0.094 ! [m m-1]
Expand Down