Description
Hi all,
I am looking to run a buoyancy-driven flow that is open to atmospheric conditions. However, when running a simulation with boundary conditions specified as "Outflow" normal to the direction of gravity, the hydrostatic condition induced by the gravitational field disappears.
To show this most clearly, starting from the HotBubble tutorial case, the following conditions
geometry.is_periodic = 1 0 # For each dir, 0: non-perio, 1: periodic
peleLM.lo_bc = Interior NoSlipWallAdiab
peleLM.hi_bc = Interior Outflow
produced an avg_pressure
field (using yt
)
as expected for the first snapshot with a hydrostatic condition.
Using
geometry.is_periodic = 0 0 # For each dir, 0: non-perio, 1: periodic
peleLM.lo_bc = NoSlipWallAdiab NoSlipWallAdiab
peleLM.hi_bc = NoSlipWallAdiab Outflow
produced
Again, this is expected.
And finally, using
geometry.is_periodic = 0 0 # For each dir, 0: non-perio, 1: periodic
peleLM.lo_bc = Outflow NoSlipWallAdiab
peleLM.hi_bc = Outflow Outflow
This last image I would have expected to be quite similar to the other two. Is there a physical justification for this behavior or a bug? If the former, is there a way to introduce the hydrostatic condition?
Thank you very much!!