OpenLB 1.7
Loading...
Searching...
No Matches
setZeroDistributionBoundary3D.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 Zero Distribution Boundary.
25//This is a new version of the Boundary, which only contains free floating functions
26//This boundary is an Advection Diffusion Boundary
27//All functions, which are contained in this file are transferred and modified from:
28//superBoundaryCondition3D.h/hh
29//advectionDiffusionBoundaries.h/hh
30//advectionDiffusionBoundaryInstantiator3D.h/hh
31#ifndef SET_ZERO_DISTRIBUTION_BOUNDARY_3D_HH
32#define SET_ZERO_DISTRIBUTION_BOUNDARY_3D_HH
33
35
36namespace olb {
37
38
39//setZeroDistributionBoundary function on the superLattice domain
40template<typename T, typename DESCRIPTOR>
42{
43 setZeroDistributionBoundary<T,DESCRIPTOR>(sLattice, superGeometry.getMaterialIndicator(material));
44}
45
46//setZeroDistributionBoundary function on the superLattice domain
47//depending on the application, the first function can be skipped and this function can be called directly in the app
48// more information of this boundary can be found here (https://doi.org/10.1016/j.jocs.2016.03.013)
49template<typename T, typename DESCRIPTOR>
51{
52 int _overlap = 1;
53 OstreamManager clout(std::cout, "setZeroDistributionBoundary");
54 for (int iCloc = 0; iCloc < sLattice.getLoadBalancer().size(); ++iCloc) {
55 //sets ZeroDistributionBoundary on the block level
56 setZeroDistributionBoundary<T,DESCRIPTOR>(sLattice.getBlock(iCloc),
57 indicator->getBlockIndicatorF(iCloc));
58 }
60 addPoints2CommBC(sLattice,std::forward<decltype(indicator)>(indicator), _overlap);
61}
62
63//sets the ZeroDistributionBoundary on the block level
64template<typename T, typename DESCRIPTOR>
66{
67 OstreamManager clout(std::cout, "setZeroDistributionBoundary");
68 const auto& blockGeometryStructure = indicator.getBlockGeometry();
69 const int margin = 1;
70 std::vector<int> discreteNormal(4, 0);
71 blockGeometryStructure.forSpatialLocations([&](auto iX, auto iY, auto iZ) {
72 if (blockGeometryStructure.getNeighborhoodRadius({iX, iY, iZ}) >= margin
73 && indicator(iX, iY, iZ)) {
74 discreteNormal = blockGeometryStructure.getStatistics().getType(iX, iY, iZ);
75 if (discreteNormal[1]!=0 || discreteNormal[2]!=0 || discreteNormal[3]!=0) {
76 auto postProcessor = std::unique_ptr<PostProcessorGenerator3D<T, DESCRIPTOR>>{
77 new ZeroDistributionBoundaryProcessorGenerator3D<T, DESCRIPTOR>(iX, iX, iY, iY, iZ, iZ, -discreteNormal[1], -discreteNormal[2], -discreteNormal[3]) };
78 if (postProcessor) {
79 _block.addPostProcessor(*postProcessor);
80 }
81 }
82 else {
83 clout << "Warning: Could not setZeroDistributionBoundary (" << iX << ", " << iY << ", " << iZ << "), discreteNormal=(" << discreteNormal[0] <<","<< discreteNormal[1] <<","<< discreteNormal[2] << "," << discreteNormal[3] << ")" << std::endl;
84 }
85 }
86 });
87}
88
89
90} //namespace olb
91
92
93#endif
94
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
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.
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 setZeroDistributionBoundary(SuperLattice< T, DESCRIPTOR > &sLattice, SuperGeometry< T, 3 > &superGeometry, int material)