Model in which flow is prescribed by geostrophic balance #2823
-
Hi, First of all, thank you for Oceananigans.jl. It a fantastic piece of work. I would like to run a First, I thought this can be simply achieved using a I couldn't find any examples using the pressure fields as forcing/background. Any ideas suggestions? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Can you be more specific about what you are trying to simulate? With If you impose an initial condition |
Beta Was this translation helpful? Give feedback.
Can you be more specific about what you are trying to simulate?
With
background_fields = (; u = u_bg)
, whereu_bg
is just a positive constant, then you'll simulate a situation in which everything moves to the right at a constant velocity. But this is probably not what you want, because it just amounts to a shift in the frame of reference.If you impose an initial condition
set!(model, u=u0)
whereu0
is a constant, and you're usingcoriolis=FPlane(1.0)
, then you'll obtain an inertial oscillation. Is that what you are looking for?