OpenLB 1.8.1
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"
44
45#include "core/olbDebug.h"
46
47// All OpenLB code is contained in this namespace.
48namespace olb {
49
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,
61 SuperLatticeF2D<T,DESCRIPTOR>& epsilon,
62 SuperLattice<T, DESCRIPTOR>& sLattice );
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
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)
AnalyticalF< 2, T, S > AnalyticalF2D
Interface for post-processing steps – header file.