OpenLB 1.7
Loading...
Searching...
No Matches
setInterpolatedConvectionBoundary3D.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#ifndef SET_INTERPOLATED_CONVECTION_BOUNDARY_3D_HH
24#define SET_INTERPOLATED_CONVECTION_BOUNDARY_3D_HH
25
27
28namespace olb {
29
31template<typename T, typename DESCRIPTOR>
32void setInterpolatedConvectionBoundary(SuperLattice<T, DESCRIPTOR>& sLattice,T omega, SuperGeometry<T,3>& superGeometry, int material,
33 T* uAv)
34{
35 setInterpolatedConvectionBoundary<T,DESCRIPTOR>(sLattice, omega, superGeometry.getMaterialIndicator(material), uAv);
36}
37
39template<typename T, typename DESCRIPTOR>
41 T* uAv)
42{
43 OstreamManager clout(std::cout, "setInterpolatedConvectionBoundary");
44 int _overlap = 1;
45 bool includeOuterCells = false;
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 setInterpolatedConvectionBoundary<T,DESCRIPTOR>(sLattice.getBlock(iCloc),omega, indicator->getBlockIndicatorF(iCloc),
52 uAv, includeOuterCells);
53 }
55 addPoints2CommBC(sLattice, std::forward<decltype(indicator)>(indicator), _overlap);
56}
57
58
59
61template<typename T, typename DESCRIPTOR>
62void setInterpolatedConvectionBoundary(BlockLattice<T,DESCRIPTOR>& _block, T omega, BlockIndicatorF3D<T>& indicator, T* uAv, bool includeOuterCells)
63{
64 auto& blockGeometryStructure = indicator.getBlockGeometry();
65 const int margin = includeOuterCells ? 0 : 1;
66 std::vector<int> discreteNormal(4,0);
67 blockGeometryStructure.forSpatialLocations([&](auto iX, auto iY, auto iZ) {
68 if (blockGeometryStructure.getNeighborhoodRadius({iX, iY, iZ}) >= margin
69 && indicator(iX, iY, iZ)) {
70 discreteNormal = blockGeometryStructure.getStatistics().getType(iX, iY, iZ);
71 if (discreteNormal[0] == 0) {
72 if (discreteNormal[1] != 0 && discreteNormal[1] == -1) {
73 _block.addPostProcessor(
74 typeid(stage::PostStream), {iX, iY, iZ},
76 _block.template getField<typename StraightConvectionBoundaryProcessor3D<DESCRIPTOR,0,-1>::PREV_CELL>();
77 }
78 else if (discreteNormal[1] != 0 && discreteNormal[1] == 1) {
79 _block.addPostProcessor(
80 typeid(stage::PostStream), {iX, iY, iZ},
82 _block.template getField<typename StraightConvectionBoundaryProcessor3D<DESCRIPTOR,0,1>::PREV_CELL>();
83 }
84 else if (discreteNormal[2] != 0 && discreteNormal[2] == -1) {
85 _block.addPostProcessor(
86 typeid(stage::PostStream), {iX, iY, iZ},
88 _block.template getField<typename StraightConvectionBoundaryProcessor3D<DESCRIPTOR,1,-1>::PREV_CELL>();
89 }
90 else if (discreteNormal[2] != 0 && discreteNormal[2] == 1) {
91 _block.addPostProcessor(
92 typeid(stage::PostStream), {iX, iY, iZ},
94 _block.template getField<typename StraightConvectionBoundaryProcessor3D<DESCRIPTOR,1,1>::PREV_CELL>();
95 }
96 else if (discreteNormal[3] != 0 && discreteNormal[3] == -1) {
97 _block.addPostProcessor(
98 typeid(stage::PostStream), {iX, iY, iZ},
100 _block.template getField<typename StraightConvectionBoundaryProcessor3D<DESCRIPTOR,2,-1>::PREV_CELL>();
101 }
102 else if (discreteNormal[3] != 0 && discreteNormal[3] == 1) {
103 _block.addPostProcessor(
104 typeid(stage::PostStream), {iX, iY, iZ},
106 _block.template getField<typename StraightConvectionBoundaryProcessor3D<DESCRIPTOR,2,1>::PREV_CELL>();
107 }
108 }
109 }
110 });
111}
112
113
114}//namespace olb
115#endif
116
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 setInterpolatedConvectionBoundary(SuperLattice< T, DESCRIPTOR > &sLattice, T omega, SuperGeometry< T, 2 > &superGeometry, int material, T *uAv)
Initialising the InterpolatedConvectionBoundary on the superLattice domain This is an interpolated bo...
Identity type to pass non-constructible types as value.
Definition meta.h:79
Communication after propagation.
Definition stages.h:36