OpenLB 1.7
Loading...
Searching...
No Matches
setSlipBoundary2D.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 Slip Boundary
25//This is a new version of the Boundary, which only contains free floating functions
26#ifndef SET_SLIP_BOUNDARY_2D_HH
27#define SET_SLIP_BOUNDARY_2D_HH
28
29#include "setSlipBoundary2D.h"
30
31
32
33namespace olb {
34template <typename,typename,int NX, int NY>
37
38 int getPriority() const {
39 return -1;
40 }
41
42
43 template <typename CELL, typename V = typename CELL::value_t>
44 void apply(CELL& x_b) any_platform {
45 using DESCRIPTOR = typename CELL::descriptor_t;
46 int reflectionPop[DESCRIPTOR::q];
47 int mirrorDirection0;
48 int mirrorDirection1;
49 int mult = 2 / (NX*NX + NY*NY);
50 reflectionPop[0] =0;
51 for (int iPop = 1; iPop < DESCRIPTOR::q; iPop++) {
52 reflectionPop[iPop] = 0;
53 // iPop are the directions which pointing into the fluid, discreteNormal is pointing outwarts
54 int scalarProduct = descriptors::c<DESCRIPTOR>(iPop,0)*NX + descriptors::c<DESCRIPTOR>(iPop,1)*NY;
55 if ( scalarProduct < 0) {
56 // bounce back for the case discreteNormalX = discreteNormalY = 1, that is mult=1
57 if (mult == 1) {
58 mirrorDirection0 = -descriptors::c<DESCRIPTOR>(iPop,0);
59 mirrorDirection1 = -descriptors::c<DESCRIPTOR>(iPop,1);
60 }
61 else {
62 mirrorDirection0 = descriptors::c<DESCRIPTOR>(iPop,0) - mult*scalarProduct*NX;
63 mirrorDirection1 = descriptors::c<DESCRIPTOR>(iPop,1) - mult*scalarProduct*NY;
64 }
65
66 // run through all lattice directions and look for match of direction
67 for (int i = 1; i < DESCRIPTOR::q; i++) {
68 if (descriptors::c<DESCRIPTOR>(i,0)==mirrorDirection0
69 && descriptors::c<DESCRIPTOR>(i,1)==mirrorDirection1) {
70 reflectionPop[iPop] = i;
71 break;
72 }
73 }
74 }
75 }
76 for (int iPop = 1; iPop < DESCRIPTOR::q ; ++iPop) {
77 if (reflectionPop[iPop]!=0) {
78 //do reflection
79 x_b[iPop] = x_b[reflectionPop[iPop]];
80 }
81 }
82 }
83
84};
85
87template<typename T, typename DESCRIPTOR>
88void setSlipBoundary(SuperLattice<T, DESCRIPTOR>& sLattice, SuperGeometry<T,2>& superGeometry, int material)
89{
90 setSlipBoundary<T,DESCRIPTOR>(sLattice, superGeometry.getMaterialIndicator(material));
91}
92
94template<typename T, typename DESCRIPTOR>
96{
97 OstreamManager clout(std::cout, "setSlipBoundary");
98 int _overlap = 1;
99 bool includeOuterCells = false;
100 if (indicator->getSuperGeometry().getOverlap() == 1) {
101 includeOuterCells = true;
102 clout << "WARNING: overlap == 1, boundary conditions set on overlap despite unknown neighbor materials" << std::endl;
103 }
104 for (int iCloc = 0; iCloc < sLattice.getLoadBalancer().size(); ++iCloc) {
105 setSlipBoundary<T, DESCRIPTOR>(sLattice.getBlock(iCloc),
106 indicator->getBlockIndicatorF(iCloc), includeOuterCells);
107 }
108 //defined inside setLocalVelocityBoundary2D.h/hh
110 addPoints2CommBC<T, DESCRIPTOR>(sLattice, std::forward<decltype(indicator)>(indicator), _overlap);
111}
112
114template<typename T, typename DESCRIPTOR>
115void setSlipBoundary(BlockLattice<T,DESCRIPTOR>& block, BlockIndicatorF2D<T>& indicator, bool includeOuterCells)
116{
117 OstreamManager clout(std::cout, "setSlipBoundary");
118 auto& blockGeometryStructure = indicator.getBlockGeometry();
119 const int margin = includeOuterCells ? 0 : 1;
120 std::vector<int> discreteNormal(3, 0);
121 blockGeometryStructure.forSpatialLocations([&](auto iX, auto iY) {
122 if (blockGeometryStructure.getNeighborhoodRadius({iX, iY}) >= margin
123 && indicator(iX, iY)) {
124 discreteNormal = indicator.getBlockGeometry().getStatistics().getType(iX, iY);
125 if (discreteNormal[1]!=0 || discreteNormal[2]!=0) {
126 //set slip boundary on indicated cells
127 bool _output = false;
128 if (_output) {
129 clout << "setSlipBoundary<" << discreteNormal[1] << ","<< discreteNormal[2] << ">(" << iX << ", "<< iX << ", " << iY << ", " << iY << " )" << std::endl;
130 }
131 block.addPostProcessor(
132 typeid(stage::PostStream), {iX,iY},
133 boundaryhelper::promisePostProcessorForNormal<T, DESCRIPTOR, FullSlipBoundaryPostProcessor2D>(
134 Vector <int,2> (discreteNormal.data()+1)
135 )
136 );
137 }
138 else {
139 clout << "Warning: Could not addSlipBoundary (" << iX << ", " << iY << "), discreteNormal=(" << discreteNormal[0] <<","<< discreteNormal[1] <<","<< discreteNormal[2] <<"), set to bounceBack" << std::endl;
140 block.template defineDynamics<BounceBack>({iX, iY});
141 }
142 }
143 });
144}
145
146
147}//namespace olb
148
149#endif
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 setSlipBoundary(SuperLattice< T, DESCRIPTOR > &sLattice, SuperGeometry< T, 2 > &superGeometry, int material)
Initialising the SlipBoundary on the superLattice domain.
OperatorScope
Block-wide operator application scopes.
Definition operator.h:54
@ PerCell
Per-cell application, i.e. OPERATOR::apply is passed a CELL concept implementation.
#define any_platform
Define preprocessor macros for device-side functions, constant storage.
Definition platform.h:78
void apply(CELL &x_b) any_platform
static constexpr OperatorScope scope
Communication after propagation.
Definition stages.h:36