OpenLB 1.7
Loading...
Searching...
No Matches
setSlipBoundaryWithDynamics2D.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_2D_HH
27#define SET_SLIP_BOUNDARY_WITH_DYNAMICS_2D_HH
28
30
31namespace olb {
33template<typename T, typename DESCRIPTOR, class MixinDynamics>
34void setSlipBoundaryWithDynamics(SuperLattice<T, DESCRIPTOR>& sLattice, T omega, SuperGeometry<T,2>& superGeometry, int material)
35{
36 setSlipBoundaryWithDynamics<T,DESCRIPTOR,MixinDynamics>(sLattice, omega, superGeometry.getMaterialIndicator(material));
37}
38
40template<typename T, typename DESCRIPTOR, class MixinDynamics>
42{
43 bool includeOuterCells = false;
44 int _overlap = indicator->getSuperGeometry().getOverlap();
45 OstreamManager clout(std::cout, "setOnBCInterpolatedBoundary");
46 if (indicator->getSuperGeometry().getOverlap() == 1) {
47 includeOuterCells = true;
48 clout << "WARNING: overlap == 1, boundary conditions set on overlap despite unknown neighbor materials" << std::endl;
49 }
50 for (int iCloc = 0; iCloc < sLattice.getLoadBalancer().size(); ++iCloc) {
51 setSlipBoundaryWithDynamics<T,DESCRIPTOR,MixinDynamics>(sLattice.getBlock(iCloc), omega,
52 indicator->getBlockIndicatorF(iCloc), includeOuterCells);
53 }
55 //the addPoints2CommBC function is initialised inside setLocalVelocityBoundary2D.h/hh
56 addPoints2CommBC<T,DESCRIPTOR>(sLattice, std::forward<decltype(indicator)>(indicator), _overlap);
57}
58
60template<typename T, typename DESCRIPTOR, class MixinDynamics>
61void setSlipBoundaryWithDynamics(BlockLattice<T,DESCRIPTOR>& block, T omega,BlockIndicatorF2D<T>& indicator, bool includeOuterCells)
62{
63 using namespace boundaryhelper;
64 OstreamManager clout(std::cout, "setSlipBoundaryWithDynamics");
65 auto& blockGeometryStructure = indicator.getBlockGeometry();
66 const int margin = includeOuterCells ? 0 : 1;
67 std::vector<int> discreteNormal(3, 0);
68 blockGeometryStructure.forSpatialLocations([&](auto iX, auto iY) {
69 if (blockGeometryStructure.getNeighborhoodRadius({iX, iY}) >= margin
70 && indicator(iX, iY)) {
71 Dynamics<T, DESCRIPTOR>* dynamics = nullptr;
72 PostProcessorGenerator2D<T, DESCRIPTOR>* postProcessor = nullptr;
73 discreteNormal = indicator.getBlockGeometry().getStatistics().getType(iX, iY);
74 if (discreteNormal[0] == 0) {
76 dynamics = block.getDynamics(MixinDynamicsExchangeDirectionOrientationMomenta<T,DESCRIPTOR,
78 >::construct(Vector<int,2>(discreteNormal.data()+1)));
79 postProcessor = new SlipBoundaryProcessorGenerator2D<T, DESCRIPTOR>(iX, iX, iY, iY, discreteNormal[1], discreteNormal[2]);
80 }
81 else if (discreteNormal[0] == 1) {
83 dynamics = block.template getDynamics<typename MixinDynamics::template exchange_momenta<
85 >>();
86 postProcessor = new SlipBoundaryProcessorGenerator2D<T, DESCRIPTOR>(iX, iX, iY, iY, discreteNormal[1], discreteNormal[2]);
87 }
88 else if (discreteNormal[0] == 2) {
90 dynamics = block.getDynamics(PlainMixinDynamicsForNormalMomenta<T,DESCRIPTOR,
92 >::construct(Vector<int,2>(discreteNormal.data()+1)));
93 postProcessor = nullptr;
94 }
95 dynamics->getParameters(block).template set<descriptors::OMEGA>(omega);
96 setBoundary(block, iX,iY, dynamics, postProcessor);
97 }
98 });
99}
100
101
102}//namespace olb
103
104#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 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.
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 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.