Skip to content

Front simulation weird patterns at the surface (no forcing) #2406

Discussion options

You must be logged in to vote

Both your closures are 3D ScalarDiffusivity:

horizontal_closure = ScalarDiffusivity=1, κ=1)
vertical_closure = ScalarDiffusivity=1e-5, κ=1e-5)

I think you may want

horizontal_closure = HorizontalScalarDiffusivity=1, κ=1)
vertical_closure = VerticalScalarDiffusivity=1e-5, κ=1e-5)

Or even

using Oceananigans.TurbulenceClosures: VerticallyImplicitTimeDiscretization
horizontal_closure = HorizontalScalarDiffusivity=1, κ=1)
vertical_closure = VerticalScalarDiffusivity(VerticallyImplicitTimeDiscretization(), ν=1e-5, κ=1e-5)

Replies: 5 comments 3 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

iuryt
Mar 31, 2022
Collaborator Author

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@iuryt
Comment options

iuryt Mar 31, 2022
Collaborator Author

@glwagner
Comment options

Answer selected by iuryt
Comment options

You must be logged in to vote
1 reply
@glwagner
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #2405 on March 31, 2022 19:03.