ivan-pi / periodic-lbm

A personal collection of research codes for LBM in periodic domains

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

periodic-lbm

A personal collection of research codes for lattice Boltzmann methods in periodic 2D domains.

For actual simulation work take a look at other codes.

Data layout

When organizing an LBM code, there are two main choices for the data layout

  • Structure of Arrays (SoA), and
  • Array of Structures (AoS)

In the SoA layout, the PDF's pointing in a given direction at different spatial points are stored contiguously. In the AoS layout, the PDF's pointing in different directions at a given spatial point are stored contiguously.

The chosen layout carries large performance implications. For optimum performance the collision and streaming kernels should be specialized for the chosen layout.

See also

Some of these libraries may also be used in the future:

Other codes

For large-scale simulations consider using one of the following freely availables codes

For industrial purpose simulations the following solvers can also be used

A bunch of other (mostly research oriented) codes are described in the list by Sthavishtha Bhopalam Rajakumar (@sthavishtha).

About

A personal collection of research codes for LBM in periodic domains

License:Apache License 2.0


Languages

Language:Fortran 89.9%Language:Python 9.2%Language:CMake 0.6%Language:C++ 0.3%Language:Gnuplot 0.1%