OpenLB 1.7
Loading...
Searching...
No Matches
setSlipBoundaryWithDynamics3D.hh
Go to the documentation of this file.
1/* This file is part of the OpenLB library
2 *
3 * Copyright (C) 2020 Alexander Schulz, Davide Dapelo
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 with dynamics
25//This is a new version of the Boundary, which only contains free floating functions
26#ifndef SET_SLIP_BOUNDARY_WITH_DYNAMICS_HH
27#define SET_SLIP_BOUNDARY_WITH_DYNAMICS_HH
28
30
31namespace olb {
32
34template<typename T,typename DESCRIPTOR, class MixinDynamics>
35void setSlipBoundaryWithDynamics(SuperLattice<T, DESCRIPTOR>& sLattice, T omega, SuperGeometry<T,3>& superGeometry, int material)
36{
37 setSlipBoundaryWithDynamics<T,DESCRIPTOR,MixinDynamics>(sLattice, omega, superGeometry.getMaterialIndicator(material));
38}
39
41template<typename T, typename DESCRIPTOR, class MixinDynamics>
43{
44 OstreamManager clout(std::cout, "setSlipBoundaryWithDynamics");
45 int _overlap = 1;
46 bool includeOuterCells = false;
47 if (indicator->getSuperGeometry().getOverlap() == 1) {
48 includeOuterCells = true;
49 clout << "WARNING: overlap == 1, boundary conditions set on overlap despite unknown neighbor materials" << std::endl;
50 }
51 for (int iC = 0; iC < sLattice.getLoadBalancer().size(); ++iC) {
52 setSlipBoundaryWithDynamics<T,DESCRIPTOR,MixinDynamics>(sLattice.getBlock(iC),omega, indicator->getBlockIndicatorF(iC),includeOuterCells);
53 }
55 //the addPoints2CommBC function is initialised inside setLocalVelocityBoundary3D.h/hh
56 addPoints2CommBC(sLattice,std::forward<decltype(indicator)>(indicator), _overlap);
57}
58
59
60//set SlipBoundaryWithDynamics on indicated cells inside the block domain
61template<typename T, typename DESCRIPTOR, class MixinDynamics>
62void setSlipBoundaryWithDynamics(BlockLattice<T,DESCRIPTOR>& block, T omega,BlockIndicatorF3D<T>& indicator, bool includeOuterCells)
63{
64 using namespace boundaryhelper;
65 OstreamManager clout(std::cout, "setslipBoundaryWithDynamics");
66 auto& blockGeometryStructure = indicator.getBlockGeometry();
67 const int margin = includeOuterCells ? 0 : 1;
68 std::vector<int> discreteNormal(4,0);
69 blockGeometryStructure.forSpatialLocations([&](auto iX, auto iY, auto iZ) {
70 if (blockGeometryStructure.getNeighborhoodRadius({iX, iY, iZ}) >= margin
71 && indicator(iX, iY, iZ)) {
72 Dynamics<T,DESCRIPTOR>* dynamics = nullptr;
73 discreteNormal = indicator.getBlockGeometry().getStatistics().getType(iX, iY, iZ);
74 // Setting postProcessor as in setSlipBoundary3D
75 if (discreteNormal[1]!=0 || discreteNormal[2]!=0 || discreteNormal[3]!=0) {//set postProcessors for indicated cells
76 bool _output = false;
77 if (_output) {
78 clout << "setSlipBoundary<" << discreteNormal[1] << ","<< discreteNormal[2] << ","<< discreteNormal[3] << ">(" << iX << ", "<< iX << ", " << iY << ", " << iY << ", " << iZ << ", " << iZ << " )" << std::endl;
79 }
80 PostProcessorGenerator3D<T, DESCRIPTOR>* postProcessor = new SlipBoundaryProcessorGenerator3D<T, DESCRIPTOR>(iX, iX, iY, iY, iZ, iZ, discreteNormal[1], discreteNormal[2], discreteNormal[3]);
81 if (postProcessor) {
82 block.addPostProcessor(*postProcessor);
83 }
84 }
85 else {//define dynamics for indicated cells
86 clout << "Warning: Could not setSlipBoundary (" << iX << ", " << iY << ", " << iZ << "), discreteNormal=(" << discreteNormal[0] <<","<< discreteNormal[1] <<","<< discreteNormal[2] <<","<< discreteNormal[3] <<"), set to bounceBack" << std::endl;
87 block.template defineDynamics<BounceBack>({iX, iY, iZ});
88 }
89 // Setting dynamics and momenta as in interpolatedVelocityBoundary3D
90 if (discreteNormal[0] == 0) {
91 if (discreteNormal[1] != 0 && discreteNormal[1] == -1) {//set momenta, dynamics and postProcessors on indicated velocityBoundaryCells
92 dynamics = block.template getDynamics<typename MixinDynamics::template exchange_momenta<
94 >>();
95 }
96 else if (discreteNormal[1] != 0 && discreteNormal[1] == 1) {
97 dynamics = block.template getDynamics<typename MixinDynamics::template exchange_momenta<
99 >>();
100 }
101 else if (discreteNormal[2] != 0 && discreteNormal[2] == -1) {
102 dynamics = block.template getDynamics<typename MixinDynamics::template exchange_momenta<
104 >>();
105 }
106 else if (discreteNormal[2] != 0 && discreteNormal[2] == 1) {
107 dynamics = block.template getDynamics<typename MixinDynamics::template exchange_momenta<
109 >>();
110 }
111 else if (discreteNormal[3] != 0 && discreteNormal[3] == -1) {
112 dynamics = block.template getDynamics<typename MixinDynamics::template exchange_momenta<
114 >>();
115 }
116 else if (discreteNormal[3] != 0 && discreteNormal[3] == 1) {
117 dynamics = block.template getDynamics<typename MixinDynamics::template exchange_momenta<
119 >>();
120 }
121 }
122 else if (discreteNormal[0] == 1) {//set momenta,dynamics and postProcessors on indicated velocityBoundary External Corner cells
123 dynamics = block.template getDynamics<typename MixinDynamics::template exchange_momenta<
125 >>();
126 }
127 else if (discreteNormal[0] == 2) {//Internalvelocitycorner
128 dynamics = block.getDynamics(PlainMixinDynamicsForNormalMomenta<T,DESCRIPTOR,
130 >::construct(Vector<int,3>(discreteNormal.data() + 1)));
131 }
132 //ExternalVelocityEdge
133 else if (discreteNormal[0] == 3) {//set momenta,dynamics and postProcessors on indicated velocityBoundary External Edge cells
134 dynamics = block.template getDynamics<typename MixinDynamics::template exchange_momenta<
136 >>();
137 }
138 //InternalVelocityEdge
139 else if (discreteNormal[0] == 4) {//set momenta,dynamics and postProcessors on indicated velocityBoundary Inner Edge cells
140 dynamics = block.getDynamics(PlainMixinDynamicsForNormalSpecialMomenta<T,DESCRIPTOR,
142 >::construct(Vector<int,3>(discreteNormal.data() + 1)));
143 }
144 dynamics->getParameters(block).template set<descriptors::OMEGA>(omega);
145 setBoundary(block, iX,iY,iZ, dynamics);
146 }
147 });
148}
149
150}
151#endif
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.
virtual Dynamics< T, DESCRIPTOR > * getDynamics(DynamicsPromise< T, DESCRIPTOR > &&)=0
Return pointer to dynamics yielded by promise.
Regularized BGK collision followed by any other Dynamics.
Definition dynamics.h:193
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.
Plain old scalar vector.
Definition vector.h:47
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 setSlipBoundaryWithDynamics(SuperLattice< T, DESCRIPTOR > &sLattice, T omega, SuperGeometry< T, 2 > &superGeometry, int material)
Initialising the setSlipBoundaryWithDynamics function on the superLattice domain Interpolated Boundar...
void setBoundary(BlockLattice< T, DESCRIPTOR > &block, int iX, int iY, Dynamics< T, DESCRIPTOR > *dynamics, PostProcessorGenerator2D< T, DESCRIPTOR > *postProcessor)
Interface for per-cell dynamics.
Definition interface.h:54
virtual AbstractParameters< T, DESCRIPTOR > & getParameters(BlockLattice< T, DESCRIPTOR > &block)=0
Parameters access for legacy post processors.