OpenLB 1.7
Loading...
Searching...
No Matches
setAdvectionDiffusionTemperatureBoundary3D.hh
Go to the documentation of this file.
1/* This file is part of the OpenLB library
2 *
3 * Copyright (C) 2020 Alexander Schulz, 2023 Shota Ito
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 AdvectionDiffusionTemperature Boundary
25//This is a new version of the Boundary, which only contains free floating functions
26#ifndef SET_ADVECTION_DIFFUSION_TEMPERATURE_BOUNDARY_3D_HH
27#define SET_ADVECTION_DIFFUSION_TEMPERATURE_BOUNDARY_3D_HH
28
30
31namespace olb {
32
34template<typename T, typename DESCRIPTOR, typename MixinDynamics>
36{
37 setAdvectionDiffusionTemperatureBoundary<T,DESCRIPTOR,MixinDynamics>(sLattice, superGeometry.getMaterialIndicator(material));
38}
39
41template<typename T, typename DESCRIPTOR, typename MixinDynamics>
43{
44 OstreamManager clout(std::cout, "setAdvectionDiffusionTemperatureBoundary");
45 for (int iCloc = 0; iCloc < sLattice.getLoadBalancer().size(); iCloc++) {
46 setAdvectionDiffusionTemperatureBoundary<T,DESCRIPTOR,MixinDynamics>(sLattice.getBlock(iCloc),
47 indicator->getBlockIndicatorF(iCloc));
48 }
49}
50
51
53template<typename T, typename DESCRIPTOR, typename MixinDynamics>
55{
56 using namespace boundaryhelper;
57 const auto& blockGeometryStructure = indicator.getBlockGeometry();
58 const int margin = 1;
59 std::vector<int> discreteNormal(4,0);
60 blockGeometryStructure.forSpatialLocations([&](auto iX, auto iY, auto iZ) {
61 if (blockGeometryStructure.getNeighborhoodRadius({iX, iY, iZ}) >= margin
62 && indicator(iX, iY, iZ)) {
63 discreteNormal = blockGeometryStructure.getStatistics().getType(iX, iY, iZ);
64
65 if(discreteNormal[0] == 2 || discreteNormal[0] == 4) { // internal corner or internal edge -> probably curved boundary
66 throw std::runtime_error("No valid discrete normal found. This BC is not suited for curved walls.");
67 }
68
69 if (discreteNormal[0] == 0) { // flat //set momenta, dynamics and postProcessors for indicated cells
70 _block.defineDynamics({iX, iY, iZ}, DirectionOrientationMixinDynamicsForPlainMomenta<T,DESCRIPTOR,
71 AdvectionDiffusionBoundariesDynamics,MixinDynamics,momenta::EquilibriumBoundaryTuple>::construct(Vector<int,3>(discreteNormal.data() + 1)));
72 }
73 else if (discreteNormal[0] == 1) { // corner //set momenta, dynamics and postProcessors on indicated boundery corner cells
74 _block.defineDynamics({iX, iY, iZ}, NormalMixinDynamicsForPlainMomenta<T,DESCRIPTOR,
76 >::construct(Vector<int,3>(discreteNormal.data() + 1)));
77 }
78 else if (discreteNormal[0] == 3) { // edge //set momenta, dynamics and postProcessors on indicated boundary edge cells
79 _block.defineDynamics({iX, iY, iZ}, NormalSpecialMixinDynamicsForPlainMomenta<T,DESCRIPTOR,
81 >::construct(Vector<int,3>(discreteNormal.data() + 1)));
82 }
83 }
84 });
85}
86
87
88}//namespace olb
89#endif
90
Base block indicator functor.
BlockGeometry< T, 3 > & getBlockGeometry()
Get underlying block geometry structure.
Platform-abstracted block lattice for external access and inter-block interaction.
void defineDynamics(LatticeR< DESCRIPTOR::d > latticeR, DynamicsPromise< T, DESCRIPTOR > &&promise)
Assign promised DYNAMICS to latticeR.
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 setAdvectionDiffusionTemperatureBoundary(SuperLattice< T, DESCRIPTOR > &sLattice, SuperGeometry< T, 2 > &superGeometry, int material)
Initialising the AdvectionDiffusionTemperatureBoundary on the superLattice domain This is an advectio...