OpenLB 1.7
Loading...
Searching...
No Matches
superLattice2D.h
Go to the documentation of this file.
1/* This file is part of the OpenLB library
2 *
3 * Copyright (C) 2007-2014 Mathias J. Krause
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
28#ifndef SUPER_LATTICE_2D_H
29#define SUPER_LATTICE_2D_H
30
31#include <memory>
32#include <vector>
33#include <map>
34
35#include "superLattice.hh"
36#include "cellD.h"
38#include "postProcessing.h"
39#include "serializer.h"
43
44#include "core/olbDebug.h"
45
46// All OpenLB code is contained in this namespace.
47namespace olb {
48
49template<typename T> class CuboidGeometry2D;
50template<typename T, typename DESCRIPTOR> class SuperLattice;
51template<typename T> class LoadBalancer;
52template<typename T, unsigned D> class SuperGeometry;
53template<typename T, typename DESCRIPTOR> class SuperLatticeF2D;
54template<typename T> class SuperStructure2D;
55template<typename T> class SuperIndicatorF2D;
56
57//TODO: 200116 preliminary version
58template<typename T, typename DESCRIPTOR>
59void setSuperExternalPSMParticleField( SuperGeometry<T,2>& sGeometry, int material, AnalyticalF2D<T,T>& velocity,
60 T size,
63
64//Geng2019
65/* TODO: Change that it uses the new particle interface
66template<typename T, typename DESCRIPTOR>
67void setSuperZetaParticleField( SuperGeometry<T,2>& sGeometry, AnalyticalF<2,T,T>& velocity,
68 SmoothIndicatorF2D<T,T,true>& sIndicator,
69 SuperLattice<T, DESCRIPTOR>& sLattice );
70*/
71
72} // namespace olb
73
74#endif
AnalyticalF are applications from DD to XD, where X is set by the constructor.
Representation of a statistic for a parallel 2D geometry.
represents all functors that operate on a SuperLattice in general, e.g. getVelocity(),...
Super class maintaining block lattices for a cuboid decomposition.
Top level namespace for all of OpenLB.
void setSuperExternalPSMParticleField(SuperGeometry< T, 2 > &sGeometry, int material, AnalyticalF2D< T, T > &velocity, T size, SuperLatticeF2D< T, DESCRIPTOR > &epsilon, SuperLattice< T, DESCRIPTOR > &sLattice)
Interface for post-processing steps – header file.