Outlet

The flow outlet is mostly defined through a periodic or Neumann based boundary condition as those described below:

Periodic

Periodic boundaries can be seen as the most basic to be implemented in LBM since they only consist of performing the streaming operation such that it crosses the computational domain back to its opposite side, as illustrated below.

../../../_images/periodic.svg

Neumann

Neumann forces the normal derivative of all populations to be zero at the boundary. To implement that, the boundary nodes replicate the macroscopic values from the first node towards normal direction.

Use case

Neumann can be used for representation of open surfaces, which could be an outlet or free lateral surfaces of a open flow.

Note

Plain Neumann lets the density float at the boundary, which keeps it flexible but does not guarantee a stable domain-average density. The regularized Neumann variant below trades that flexibility for a fixed outlet pressure.

Regularized Neumann (Outlet)

An alternative that uses the Neumann BC framework to represent a free surface boundary consists of fixing a pressure through regularization of populations post application of Neumann BC:

\[ \rho\left(\mathbf{x}_{\mathrm{out}}\right) = \rho_{\mathrm{cte}} \]

Warning

Fixing the pressure assumes the macroscopics are nearly uniform across the outlet plane. Place the regularized Neumann outlet far from wakes, separation, or any region of high pressure gradient. Sitting it inside a steep gradient imposes a wrong pressure on the flow, contaminating the solution upstream.

../../../_images/outlet_placement.svg

Outlet placement for the regularized Neumann condition. Placed far downstream where the wake has recovered and the pressure is nearly uniform (top), fixing the outlet pressure is harmless. Placed inside the wake where the pressure still varies across the plane (bottom), imposing a uniform pressure is wrong and the error propagates upstream.