OpenLB 1.7
Loading...
Searching...
No Matches
setWallFunctionBoundary3D.hh
Go to the documentation of this file.
1/* This file is part of the OpenLB library
2 *
3 * Copyright (C) 2020 Alexander Schulz
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//This file contains the WallFunctionBoundary
25//This is a new version of the Boundary, which only contains free floating functions
26#ifndef SET_WALL_FUNCTION_BOUNDARY_3D_HH
27#define SET_WALL_FUNCTION_BOUNDARY_3D_HH
28
30
31namespace olb {
32
34template<typename T, typename DESCRIPTOR>
35void setWallFunctionBoundary(SuperLattice<T, DESCRIPTOR>& sLattice, SuperGeometry<T,3>& superGeometry, int material,
36 UnitConverter<T, DESCRIPTOR> const& converter,
38 IndicatorF3D<T>* geoIndicator)
39{
40 setWallFunctionBoundary<T,DESCRIPTOR>(sLattice, superGeometry.getMaterialIndicator(material),
41 converter, wallFunctionParam, geoIndicator);
42}
43
45template<typename T, typename DESCRIPTOR>
47 UnitConverter<T, DESCRIPTOR> const& converter,
49 IndicatorF3D<T>* geoIndicator)
50{
51 int _overlap = 1;
52 bool includeOuterCells = false;
53 OstreamManager clout(std::cout, "setWallFunctionBoundary");
54 if (indicator->getSuperGeometry().getOverlap() == 1) {
55 includeOuterCells = true;
56 clout << "WARNING: overlap == 1, boundary conditions set on overlap despite unknown neighbor materials" << std::endl;
57 }
58 for (int iCloc = 0; iCloc < sLattice.getLoadBalancer().size(); ++iCloc) {
59 setWallFunctionBoundary<T,DESCRIPTOR>(sLattice.getBlock(iCloc),
60 indicator->getBlockIndicatorF(iCloc),
61 converter, wallFunctionParam, geoIndicator, includeOuterCells);
62 }
64 addPoints2CommBC(sLattice, std::forward<decltype(indicator)>(indicator), _overlap);
65
66}
67
68
70template<typename T, typename DESCRIPTOR>
72 UnitConverter<T, DESCRIPTOR> const& converter,
74 IndicatorF3D<T>* geoIndicator,
75 bool includeOuterCells)
76{
77 OstreamManager clout(std::cout, "setWallFunctionBoundary");
78 bool _output = false;
79 const auto& blockGeometryStructure = indicator.getBlockGeometry();
80 const int margin = includeOuterCells ? 0 : 1;
81 std::vector<int> discreteNormal(4, 0);
82 blockGeometryStructure.forSpatialLocations([&](auto iX, auto iY, auto iZ) {
83 if (blockGeometryStructure.getNeighborhoodRadius({iX, iY, iZ}) >= margin
84 && indicator(iX, iY, iZ)) {
85 discreteNormal = blockGeometryStructure.getStatistics().getType(iX, iY, iZ);
86 std::vector<int> missingIndices;
87 for (int x = -1 ; x < 2; ++x) {
88 for (int y = -1 ; y < 2; ++y) {
89 for (int z = -1 ; z < 2; ++z) {
90 if (blockGeometryStructure.getMaterial(iX + x, iY + y, iZ + z) == 0) {
91 for (int iPop = 0; iPop < DESCRIPTOR::q; ++iPop) {
92 if (descriptors::c<DESCRIPTOR>(iPop,0) == x &&
93 descriptors::c<DESCRIPTOR>(iPop,1) == y &&
94 descriptors::c<DESCRIPTOR>(iPop,2) == z) {
95 missingIndices.push_back(descriptors::opposite<DESCRIPTOR>(iPop));
96 }
97 }
98 }
99 }
100 }
101 }
102 if (discreteNormal[1]!=0 || discreteNormal[2]!=0 || discreteNormal[3]!=0) {
103 discreteNormal.erase(discreteNormal.begin());
104 //OLB_PRECONDITION(x0==x1 || y0==y1 || z0==z1);
105 if (_output) {
106 clout << "setWallFunctionBoundary<" << discreteNormal[0] << ","<< discreteNormal[1] << ","<< discreteNormal[2] << ">(" << iX << ", "<< iX << ", " << iY << ", " << iY << ", " << iZ << ", " << iZ << " )" << std::endl;
107 }
108 auto postProcessor = std::unique_ptr<PostProcessorGenerator3D<T, DESCRIPTOR>>{ new WallFunctionBoundaryProcessorGenerator3D<T, DESCRIPTOR>(iX, iX, iY, iY, iZ, iZ, indicator.getBlockGeometry(), discreteNormal, missingIndices,
109 converter, wallFunctionParam, geoIndicator) };
110 if (postProcessor) {
111 _block.addPostProcessor(*postProcessor);
112 }
113 }
114 else {
115 clout << "Warning: Could not setWallFunctionBoundary (" << iX << ", " << iY << ", " << iZ << "), discreteNormal=(" << discreteNormal[0] <<","<< discreteNormal[1] <<","<< discreteNormal[2] <<","<< discreteNormal[3] <<"), set to bounceBack" << std::endl;
116 _block.template defineDynamics<BounceBack>({iX, iY, iZ});
117 }
118 }
119 });
120}
121
122
123} //namespace olb
124
125
126#endif
127
Base block indicator functor.
BlockGeometry< T, 3 > & getBlockGeometry()
Get underlying block geometry structure.
Platform-abstracted block lattice for external access and inter-block interaction.
virtual void addPostProcessor(std::type_index stage, LatticeR< DESCRIPTOR::d > latticeR, PostProcessorPromise< T, DESCRIPTOR > &&promise)=0
Schedule post processor for application to latticeR in stage.
Smart pointer for managing the various ways of passing functors around.
Definition functorPtr.h:60
IndicatorF3D is an application from .
class for marking output with some text
Representation of a statistic for a parallel 2D geometry.
std::unique_ptr< SuperIndicatorF< T, D > > getMaterialIndicator(std::vector< int > &&materials)
Returns a material indicator using the given vector of materials.
Base indicator functor (discrete)
Super class maintaining block lattices for a cuboid decomposition.
BlockLattice< T, DESCRIPTOR > & getBlock(int locC)
Return BlockLattice with local index locC.
LoadBalancer< T > & getLoadBalancer()
Read and write access to the load balancer.
Conversion between physical and lattice units, as well as discretization.
Top level namespace for all of OpenLB.
void addPoints2CommBC(SuperLattice< T, DESCRIPTOR > &sLattice, FunctorPtr< SuperIndicatorF2D< T > > &&indicator, int _overlap)
Adds needed Cells to the Communicator _commBC in SuperLattice.
void setWallFunctionBoundary(SuperLattice< T, DESCRIPTOR > &sLattice, SuperGeometry< T, 3 > &superGeometry, int material, UnitConverter< T, DESCRIPTOR > const &converter, wallFunctionParam< T > const &wallFunctionParam, IndicatorF3D< T > *geoIndicator=NULL)
Initialising the WallFunctionBoundary on the superLattice domain.