Resolved LES in Oceananigans #3129
Replies: 2 comments 15 replies
-
We believe this use case is important and so we explicitly test it: Oceananigans.jl/test/test_turbulence_closures.jl Lines 137 to 145 in 2fb0f77 in addition to some other tests for tuple closures. That said, there is probably room to expand the tests for tuple closures. But I'm not sure the tuple itself is your issue.
This error is probably associated with the code you are using for diagnostics. Can you share that? |
Beta Was this translation helpful? Give feedback.
-
Oh I just saw this! Nice to see you started running Oceananigans @mmr0 ! |
Beta Was this translation helpful? Give feedback.
-
I'm after some help setting up a resolved LES in Oceananigans. By resolved LES i'm specifically referring to resolving the viscous sublayer/wall stress for a wall-bounded flow, e.g. no wall model needed. Has anyone done this, and if so are you willing to share your experience?
Where I'm at: I'm currently trying to replicate a DIABLO simulation of an upside down bottom Ekman layer (i.e. the no-slip boundary is at the top of the domain) as a test but despite having the same resolution as I've used with DIABLO I don't have anything that looks like a viscous sublayer in my simulation, and the stress at the interface is also not what I expect. This was using
closure = AnisotropicMinimumDissipation()
. Code is below if interested. Note that the code runs and i get pretty sensible looking outer boundary layer and mixed layer, it's just the near-wall stuff that I'm a bit dubious of.A potentially related issue: I was looking into the Tuple closure method, which would suit me since I'd like to modify the molecular viscosity to something suitable for Polar oceans. I tried:
amd_closure = (AnisotropicMinimumDissipation(), ScalarDiffusivity(ν=2.0e-6, κ=1.4e-7))
but got the error
type Tuple has no field νₑ
. I saw that this was likely associated with a bug fixed a few versions ago by @tomcho, so I updated updated to the latest version, but I still get the error.A further potentially related issue: Also came across the issue #1879 regarding tests that the tuple closure method works, and wondered if these were ever carried out?
Sorry for the lengthy post! This is my first foray into Oceananigans, so I'm really not sure what's just user error at this point. Cheers!
Beta Was this translation helpful? Give feedback.
All reactions