OpenLB 1.7
Loading...
Searching...
No Matches
kbcDynamics.h
Go to the documentation of this file.
1/* This file is part of the OpenLB library
2 *
3 * Copyright (C) 2022 Louis Kronberg, Stephan Simonis
4 * E-mail contact: info@openlb.net
5 * The most recent release of OpenLB can be downloaded at
6 * <http://www.openlb.net/>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public
19 * License along with this program; if not, write to the Free
20 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301, USA.
22*/
23
24#ifndef KBC_DYNAMICS_H
25#define KBC_DYNAMICS_H
26
27#include "interface.h"
28
29#include "core/util.h"
30#include "core/postProcessing.h"
32#include "latticeDescriptors.h"
33
34#include "momenta/interface.h"
35#include "momenta/aliases.h"
36
37#include "collisionKBC.h"
38#include "equilibrium.h"
39#include "forcing.h"
40
41namespace olb {
42
43template <typename T, typename DESCRIPTOR, typename MOMENTA=momenta::BulkTuple>
45 T, DESCRIPTOR,
46 MOMENTA,
49>;
50}
51#endif
Instantiation of Momenta tuples which define the computation and definition of momenta in a specific ...
Descriptor for all types of 2D and 3D lattices.
Interface for post-processing steps – header file.
File provides a generic interface for the computation and definition of momenta (density,...
Top level namespace for all of OpenLB.
Interface for post-processing steps – header file.
Implementation of the KBC method. See 10.1103/PhysRevE.90.031302.
Dynamics constructed as a tuple of momenta, equilibrium and collision.
Definition interface.h:182
Set of functions commonly used in LB computations – header file.