OpenLB 1.7
Loading...
Searching...
No Matches
blockIntegralF2D.hh
Go to the documentation of this file.
1/* This file is part of the OpenLB library
2 *
3 * Copyright (C) 2018 Adrian Kummerlaender
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#ifndef BLOCK_INTEGRAL_F_2D_HH
25#define BLOCK_INTEGRAL_F_2D_HH
26
27#include "blockIntegralF2D.h"
28#include "core/olbDebug.h"
30
31namespace olb {
32
33
34template <typename T, typename W>
36 BlockIndicatorF2D<T>& indicatorF)
37 : BlockF2D<W>(f.getBlockStructure(), f.getTargetDim()+1),
38 _f(f),
39 _indicatorF(indicatorF)
40{
41 this->getName() = "BlockSum("+_f.getName()+")";
42}
43
44template <typename T, typename W>
45bool BlockSum2D<T,W>::operator() (W output[], const int input[])
46{
47 OLB_ASSERT(_f.getSourceDim() == _indicatorF.getSourceDim(),
48 "functor source dimension equals indicator source dimension");
49
50 W outputTmp[_f.getTargetDim()];
51 int inputTmp[_f.getSourceDim()];
52 std::size_t voxels(0);
53
54 const auto& blockStructure = this->getBlockStructure();
55
56 for (inputTmp[0] = 0; inputTmp[0] < blockStructure.getNx(); ++inputTmp[0]) {
57 for (inputTmp[1] = 0; inputTmp[1] < blockStructure.getNy(); ++inputTmp[1]) {
58 if (_indicatorF(inputTmp)) {
59 _f(outputTmp,inputTmp);
60 for (int i = 0; i < _f.getTargetDim(); ++i) {
61 output[i] += outputTmp[i];
62 }
63 voxels += 1;
64 }
65 }
66 }
67 output[_f.getTargetDim()] += voxels;
68
69 return true;
70}
71
72
73template <typename T, typename W>
75 BlockIndicatorF2D<T>& indicatorF)
76 : BlockF2D<W>(f.getBlockStructure(), f.getTargetDim()),
77 _f(f),
78 _indicatorF(indicatorF)
79{
80 this->getName() = "BlockIntegral("+_f.getName()+")";
81}
82
83template <typename T, typename W>
84bool BlockIntegral2D<T,W>::operator() (W output[], const int input[])
85{
86 OLB_ASSERT(_f.getSourceDim() == _indicatorF.getSourceDim(),
87 "functor source dimension equals indicator source dimension");
88
89 const W weight = pow(_indicatorF.getBlockGeometry().getDeltaR(), 2);// was 3
90
91 W outputTmp[_f.getTargetDim()];
92 int inputTmp[_f.getSourceDim()];
93
94 const auto& blockStructure = this->getBlockStructure();
95
96 for (inputTmp[0] = 0; inputTmp[0] < blockStructure.getNx(); ++inputTmp[0]) {
97 for (inputTmp[1] = 0; inputTmp[1] < blockStructure.getNy(); ++inputTmp[1]) {
98 if (_indicatorF(inputTmp)) {
99 _f(outputTmp,inputTmp);
100 for (int i = 0; i < this->getTargetDim(); ++i) {
101 output[i] += outputTmp[i] * weight;
102 }
103 }
104 }
105 }
106
107 return true;
108}
109
110
111}
112
113#endif
represents all functors that operate on a cuboid in general, mother class of BlockLatticeF,...
Base block indicator functor (discrete)
BlockIntegral2D(BlockF2D< W > &f, BlockIndicatorF2D< T > &indicatorF)
bool operator()(W output[], const int input[]) override
bool operator()(W output[], const int input[]) override
BlockSum2D(BlockF2D< W > &f, BlockIndicatorF2D< T > &indicatorF)
std::string & getName()
read and write access to name
Definition genericF.hh:51
Top level namespace for all of OpenLB.
#define OLB_ASSERT(COND, MESSAGE)
Definition olbDebug.h:45