OpenLB 1.7
Loading...
Searching...
No Matches
setRegularizedHeatFluxBoundary2D.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 Regularized Heat Flux Boundary
25//This is a new version of the Boundary, which only contains free floating functions
26#ifndef SET_REGULARIZED_HEAT_FLUX_BOUNDARY_HH
27#define SET_REGULARIZED_HEAT_FLUX_BOUNDARY_HH
28
30
31namespace olb {
32
34template<typename T, typename DESCRIPTOR, typename MixinDynamics>
35void setRegularizedHeatFluxBoundary(SuperLattice<T, DESCRIPTOR>& sLattice,T omega, SuperGeometry<T,2>& superGeometry, int material, T *heatFlux)
36{
37 setRegularizedHeatFluxBoundary<T,DESCRIPTOR,MixinDynamics>(sLattice, omega, superGeometry.getMaterialIndicator(material), heatFlux);
38}
39
41template<typename T, typename DESCRIPTOR, typename MixinDynamics>
43{
44 int _overlap = 1;
45 for (int iCloc = 0; iCloc < sLattice.getLoadBalancer().size(); ++iCloc) {
46 setRegularizedHeatFluxBoundary<T,DESCRIPTOR,MixinDynamics>(sLattice.getBlock(iCloc), omega,
47 indicator->getBlockIndicatorF(iCloc), heatFlux);
48 }
50 addPoints2CommBC<T, DESCRIPTOR>(sLattice, std::forward<decltype(indicator)>(indicator), _overlap);
51}
52
53
54
56template<typename T, typename DESCRIPTOR, typename MixinDynamics>
58{
59 using namespace boundaryhelper;
60 auto& blockGeometryStructure = indicator.getBlockGeometry();
61 OstreamManager clout(std::cout, "setRegularizedHeatFluxBoundary");
62 /*
63 *x0,x1,y0,y1 Range of cells to be traversed
64 **/
65 int x0 = 0;
66 int y0 = 0;
67 int x1 = blockGeometryStructure.getNx()-1;
68 int y1 = blockGeometryStructure.getNy()-1;
69 std::vector<int> discreteNormal(3,0);
70 for (int iX = x0; iX <= x1; ++iX) {
71 for (int iY = y0; iY <= y1; ++iY) {
72 Dynamics<T,DESCRIPTOR>* dynamics = nullptr;
73 auto cell = block.get(iX,iY);
74 if (indicator(iX, iY)) {
75 discreteNormal = indicator.getBlockGeometry().getStatistics().getType(iX,iY);
76 if (discreteNormal[0] == 0) {//set momenta, dynamics and postProcessor on indicated RegularizedHeatFluxBoundary cells
77 dynamics = block.getDynamics(PlainMixinDynamicsForDirectionOrientationMomenta<T,DESCRIPTOR,
80 >::construct(Vector<int,2>(discreteNormal.data() + 1)));
81 setBoundary(block, iX,iY, dynamics);
82 cell.defineU(heatFlux);
83 }
84 else if (discreteNormal[0] == 1) {//set momenta, dynamics and postProcessor on indicated RegularizedHeatFluxBoundary corner cells
85 dynamics = block.getDynamics(NormalMixinDynamicsForPlainMomenta<T,DESCRIPTOR,
88 >::construct(Vector<int,2>(discreteNormal.data() + 1)));
89 setBoundary(block, iX,iY, dynamics);
90 }
91 if (dynamics) {
92 dynamics->getParameters(block).template set<descriptors::OMEGA>(omega);
93 }
94 }
95 }
96 }
97}
98
99
100}//namespace olb
101
102
103#endif
const BlockGeometryStatistics< T, D > & getStatistics() const
Read only access to the associated block statistic.
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.
Cell< T, DESCRIPTOR > get(CellID iCell)
Get Cell interface for index iCell.
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 setBoundary(BlockLattice< T, DESCRIPTOR > &block, int iX, int iY, Dynamics< T, DESCRIPTOR > *dynamics, PostProcessorGenerator2D< T, DESCRIPTOR > *postProcessor)
void setRegularizedHeatFluxBoundary(SuperLattice< T, DESCRIPTOR > &sLattice, T omega, SuperGeometry< T, 2 > &superGeometry, int material, T *heatFlux=nullptr)
Initialising the RegularizedHeatFluxBoundary on the superLattice domain This is an advection diffusio...
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.