OpenLB 1.7
Loading...
Searching...
No Matches
setPartialSlipBoundary2D.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 Partial Slip Boundary
25//This is a new version of the Boundary, which only contains free floating functions
26#ifndef SET_PARTIAL_SLIP_BOUNDARY_2D_HH
27#define SET_PARTIAL_SLIP_BOUNDARY_2D_HH
28
29
31
32
33namespace olb {
34
36template<typename T, typename DESCRIPTOR>
37void setPartialSlipBoundary(SuperLattice<T, DESCRIPTOR>& sLattice, T tuner, SuperGeometry<T,2>& superGeometry, int material)
38{
39 setPartialSlipBoundary<T,DESCRIPTOR>(sLattice, tuner, superGeometry.getMaterialIndicator(material));
40}
41
43template<typename T, typename DESCRIPTOR>
45{
46 OstreamManager clout(std::cout, "setPartialSlipBoundary");
47 bool includeOuterCells = false;
48 int _overlap = 1;
49
50 if (indicator->getSuperGeometry().getOverlap() == 1) {
51 includeOuterCells = true;
52 clout << "WARNING: overlap == 1, boundary conditions set on overlap despite unknown neighbor materials" << std::endl;
53 }
54 for (int iCloc = 0; iCloc < sLattice.getLoadBalancer().size(); ++iCloc) {
55 setPartialSlipBoundary<T,DESCRIPTOR>(sLattice.getBlock(iCloc),
56 tuner, indicator->getBlockIndicatorF(iCloc), includeOuterCells);
57 }
59 //the addPoints2CommBC function is initialised inside setLocalVelocityBoundary2D.h/hh
60 addPoints2CommBC<T,DESCRIPTOR>(sLattice, std::forward<decltype(indicator)>(indicator), _overlap);
61}
62
64template<typename T, typename DESCRIPTOR>
65void setPartialSlipBoundary(BlockLattice<T,DESCRIPTOR>& block, T tuner, BlockIndicatorF2D<T>& indicator, bool includeOuterCells)
66{
67 OstreamManager clout(std::cout, "setPartialSlipBoundary");
68 auto& blockGeometryStructure = indicator.getBlockGeometry();
69 const int margin = includeOuterCells ? 0 : 1;
70 std::vector<int> discreteNormal(3, 0);
71 blockGeometryStructure.forSpatialLocations([&](auto iX, auto iY) {
72 if (blockGeometryStructure.getNeighborhoodRadius({iX, iY}) >= margin
73 && indicator(iX, iY)) {
74 if (tuner < 0. || tuner > 1.) {
75 clout << "Warning: Could not setPartialSlipBoundary (" << iX << ", " << iY << "), tuner must be between 0.1 and instead is=" << tuner <<", set to bounceBack" << std::endl;
76 block.template defineDynamics<BounceBack>({iX, iY});
77 }
78 else {
79 discreteNormal = indicator.getBlockGeometry().getStatistics().getType(iX, iY);
80 if (discreteNormal[1]!=0 || discreteNormal[2]!=0) {
81 //set partial slip boundary on indicated cells
82 bool _output = false;
83 if (_output) {
84 clout << "setPartialSlipBoundary<" << discreteNormal[1] << ","<< discreteNormal[2] << ">(" << iX << ", "<< iX << ", " << iY << ", " << iY << " )" << std::endl;
85 }
86 PostProcessorGenerator2D<T, DESCRIPTOR>* postProcessor = new PartialSlipBoundaryProcessorGenerator2D<T, DESCRIPTOR>(tuner, iX, iX, iY, iY, discreteNormal[1], discreteNormal[2]);
87 if (postProcessor) {
88 block.addPostProcessor(*postProcessor);
89 }
90 }
91 else {
92 clout << "Warning: Could not setPartialSlipBoundary (" << iX << ", " << iY << "), discreteNormal=(" << discreteNormal[0] <<","<< discreteNormal[1] <<","<< discreteNormal[2] <<"), set to bounceBack" << std::endl;
93 block.template defineDynamics<BounceBack>({iX, iY});
94 }
95 }
96 }
97 });
98}
99}//namespace olb
100
101
102#endif
const BlockGeometryStatistics< T, D > & getStatistics() const
Read only access to the associated block statistic.
Base block indicator functor (discrete)
BlockGeometry< T, 2 > & 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.
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 setPartialSlipBoundary(SuperLattice< T, DESCRIPTOR > &sLattice, T tuner, SuperGeometry< T, 2 > &superGeometry, int material)
Initialising the Partial slip boundary on the superLattice domain.