OpenLB 1.7
Loading...
Searching...
No Matches
setFreeEnergyOutletBoundary3D.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 FreeEnergyOutletBoundary
25//This is a new version of the Boundary, which only contains free floating functions
26#ifndef SET_FREE_ENERGY_OUTLET_BOUNDARY_3D_HH
27#define SET_FREE_ENERGY_OUTLET_BOUNDARY_3D_HH
28
30
31
32
33namespace olb {
34
37template<typename T, typename DESCRIPTOR, typename MixinDynamics>
38void setFreeEnergyOutletBoundary(SuperLattice<T, DESCRIPTOR>& sLattice, T omega, SuperGeometry<T,3>& superGeometry, int material, std::string type, int latticeNumber)
39{
40 setFreeEnergyOutletBoundary<T,DESCRIPTOR,MixinDynamics>(sLattice, omega, superGeometry.getMaterialIndicator(material), type, latticeNumber);
41}
42
43
46template<typename T, typename DESCRIPTOR, typename MixinDynamics>
47void setFreeEnergyOutletBoundary(SuperLattice<T, DESCRIPTOR>& sLattice,T omega,FunctorPtr<SuperIndicatorF3D<T>>&& indicator, std::string type, int latticeNumber)
48{
49 OstreamManager clout(std::cout, "setFreeEnergyOutletBoundary");
50 int _overlap = 1;
51 bool includeOuterCells = false;
52 if (indicator->getSuperGeometry().getOverlap() == 1) {
53 includeOuterCells = true;
54 clout << "WARNING: overlap == 1, boundary conditions set on overlap despite unknown neighbor materials" << std::endl;
55 }
56 for (int iCloc = 0; iCloc < sLattice.getLoadBalancer().size(); ++iCloc) {
57 setFreeEnergyOutletBoundary<T,DESCRIPTOR,MixinDynamics>(sLattice.getBlock(iCloc),
58 indicator->getBlockIndicatorF(iCloc), omega, type, latticeNumber, includeOuterCells);
59 }
61 addPoints2CommBC(sLattice, std::forward<decltype(indicator)>(indicator), _overlap);
62}
63
64
65
67template<typename T, typename DESCRIPTOR, typename MixinDynamics>
68void setFreeEnergyOutletBoundary(BlockLattice<T,DESCRIPTOR>& _block, BlockIndicatorF3D<T>& indicator, T omega, std::string type,
69 int latticeNumber, bool includeOuterCells)
70{
71 OstreamManager clout(std::cout, "setFreeEnergyOutletBoundary");
72 bool _output = false;
73 auto& blockGeometryStructure = indicator.getBlockGeometry();
74 //setFreeEnergyInletBoundary on indicated cells inside the blockLattice domain
75 setFreeEnergyInletBoundary<T,DESCRIPTOR,MixinDynamics>(_block, omega, indicator, type, latticeNumber,includeOuterCells);
76 const int margin = includeOuterCells ? 0 : 1;
77 std::vector<int> discreteNormal(4, 0);
78 blockGeometryStructure.forSpatialLocations([&](auto iX, auto iY, auto iZ) {
79 if (blockGeometryStructure.getNeighborhoodRadius({iX, iY, iZ}) >= margin
80 && indicator(iX, iY, iZ)) {
81 discreteNormal = blockGeometryStructure.getStatistics().getType(iX, iY, iZ, true);
82 if (discreteNormal[0] == 0) {//set postProcessor on indicated cells
83 _block.addPostProcessor(
84 typeid(stage::PostStream), {iX, iY, iZ},
85 olb::boundaryhelper::promisePostProcessorForNormal<T,DESCRIPTOR, FreeEnergyConvectiveProcessor3D>(
86 Vector<int,3>(discreteNormal.data() + 1)));
87 if (_output) {
88 clout << "setFreeEnergyOutletBoundary<" << "," << ">(" << iX << ", "<< iY << ", " << iZ << ")" << std::endl;
89 }
90 }
91 }
92 });
93}
94
95
96}//namespace olb
97#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.
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 setFreeEnergyOutletBoundary(SuperLattice< T, DESCRIPTOR > &sLattice, T omega, SuperGeometry< T, 2 > &superGeometry, int material, std::string type, int latticeNumber)
Implementation of a outlet boundary condition for the partner lattices of the binary or ternary free ...
Communication after propagation.
Definition stages.h:36