ESPResSo
Extensible Simulation Package for Research on Soft Matter Systems
Loading...
Searching...
No Matches
StreamCollideSweepThermalizedDoublePrecision.h
Go to the documentation of this file.
1//======================================================================================================================
2//
3// This file is part of waLBerla. waLBerla is free software: you can
4// redistribute it and/or modify it under the terms of the GNU General Public
5// License as published by the Free Software Foundation, either version 3 of
6// the License, or (at your option) any later version.
7//
8// waLBerla is distributed in the hope that it will be useful, but WITHOUT
9// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11// for more details.
12//
13// You should have received a copy of the GNU General Public License along
14// with waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>.
15//
16//! \\file StreamCollideSweepThermalizedDoublePrecision.h
17//! \\author pystencils
18//======================================================================================================================
19
20// kernel generated with pystencils v1.4+1.ge851f4e, lbmpy v1.4+1.ge9efe34,
21// sympy v1.12.1, lbmpy_walberla/pystencils_walberla from waLBerla commit
22// 007e77e077ad9d22b5eed6f3d3118240993e553c
23
24#pragma once
25#include "core/DataTypes.h"
26#include "core/logging/Logging.h"
27
28#include "domain_decomposition/BlockDataID.h"
29#include "domain_decomposition/IBlock.h"
30#include "domain_decomposition/StructuredBlockStorage.h"
31#include "field/GhostLayerField.h"
32#include "field/SwapableCompare.h"
33
34#include <functional>
35#include <unordered_map>
36
37#ifdef __GNUC__
38#define RESTRICT __restrict__
39#else
40#define RESTRICT
41#endif
42
43#if (defined WALBERLA_CXX_COMPILER_IS_GNU) || \
44 (defined WALBERLA_CXX_COMPILER_IS_CLANG)
45#pragma GCC diagnostic push
46#pragma GCC diagnostic ignored "-Wunused-parameter"
47#pragma GCC diagnostic ignored "-Wreorder"
48#endif
49
50namespace walberla {
51namespace pystencils {
52
54public:
56 BlockDataID forceID_, BlockDataID pdfsID_, double kT, double omega_bulk,
57 double omega_even, double omega_odd, double omega_shear, uint32_t seed,
58 uint32_t time_step)
59 : forceID(forceID_), pdfsID(pdfsID_), kT_(kT), omega_bulk_(omega_bulk),
60 omega_even_(omega_even), omega_odd_(omega_odd),
61 omega_shear_(omega_shear), seed_(seed), time_step_(time_step),
62 block_offset_0_(uint32_t(0)), block_offset_1_(uint32_t(0)),
63 block_offset_2_(uint32_t(0)), configured_(false) {}
64
66 for (auto p : cache_pdfs_) {
67 delete p.second;
68 }
69 }
70
71 void run(IBlock *block);
72
73 void runOnCellInterval(const shared_ptr<StructuredBlockStorage> &blocks,
74 const CellInterval &globalCellInterval,
75 cell_idx_t ghostLayers, IBlock *block);
76
77 void operator()(IBlock *block) { run(block); }
78
79 static std::function<void(IBlock *)> getSweep(
80 const shared_ptr<StreamCollideSweepThermalizedDoublePrecision> &kernel) {
81 return [kernel](IBlock *b) { kernel->run(b); };
82 }
83
84 static std::function<void(IBlock *)> getSweepOnCellInterval(
85 const shared_ptr<StreamCollideSweepThermalizedDoublePrecision> &kernel,
86 const shared_ptr<StructuredBlockStorage> &blocks,
87 const CellInterval &globalCellInterval, cell_idx_t ghostLayers = 1) {
88 return [kernel, blocks, globalCellInterval, ghostLayers](IBlock *b) {
89 kernel->runOnCellInterval(blocks, globalCellInterval, ghostLayers, b);
90 };
91 }
92
93 std::function<void(IBlock *)> getSweep() {
94 return [this](IBlock *b) { this->run(b); };
95 }
96
97 std::function<void(IBlock *)>
98 getSweepOnCellInterval(const shared_ptr<StructuredBlockStorage> &blocks,
99 const CellInterval &globalCellInterval,
100 cell_idx_t ghostLayers = 1) {
101 return [this, blocks, globalCellInterval, ghostLayers](IBlock *b) {
102 this->runOnCellInterval(blocks, globalCellInterval, ghostLayers, b);
103 };
104 }
105
106 void configure(const shared_ptr<StructuredBlockStorage> &blocks,
107 IBlock *block) {
108 Cell BlockCellBB = blocks->getBlockCellBB(*block).min();
109 block_offset_0_ = uint32_t(BlockCellBB[0]);
110 block_offset_1_ = uint32_t(BlockCellBB[1]);
111 block_offset_2_ = uint32_t(BlockCellBB[2]);
112 configured_ = true;
113 }
114
115 inline uint32_t getBlock_offset_0() const { return block_offset_0_; }
116 inline uint32_t getBlock_offset_1() const { return block_offset_1_; }
117 inline uint32_t getBlock_offset_2() const { return block_offset_2_; }
118 inline double getKt() const { return kT_; }
119 inline double getOmega_bulk() const { return omega_bulk_; }
120 inline double getOmega_even() const { return omega_even_; }
121 inline double getOmega_odd() const { return omega_odd_; }
122 inline double getOmega_shear() const { return omega_shear_; }
123 inline uint32_t getSeed() const { return seed_; }
124 inline uint32_t getTime_step() const { return time_step_; }
125 inline void setBlock_offset_0(const uint32_t value) {
126 block_offset_0_ = value;
127 }
128 inline void setBlock_offset_1(const uint32_t value) {
129 block_offset_1_ = value;
130 }
131 inline void setBlock_offset_2(const uint32_t value) {
132 block_offset_2_ = value;
133 }
134 inline void setKt(const double value) { kT_ = value; }
135 inline void setOmega_bulk(const double value) { omega_bulk_ = value; }
136 inline void setOmega_even(const double value) { omega_even_ = value; }
137 inline void setOmega_odd(const double value) { omega_odd_ = value; }
138 inline void setOmega_shear(const double value) { omega_shear_ = value; }
139 inline void setSeed(const uint32_t value) { seed_ = value; }
140 inline void setTime_step(const uint32_t value) { time_step_ = value; }
141
142private:
143 BlockDataID forceID;
144 BlockDataID pdfsID;
145 uint32_t block_offset_0_;
146 uint32_t block_offset_1_;
147 uint32_t block_offset_2_;
148 double kT_;
149 double omega_bulk_;
150 double omega_even_;
151 double omega_odd_;
152 double omega_shear_;
153 uint32_t seed_;
154 uint32_t time_step_;
155 std::unordered_map<IBlock *, field::GhostLayerField<double, 19> *>
156 cache_pdfs_;
157
158 bool configured_;
159};
160
161} // namespace pystencils
162} // namespace walberla
163
164#if (defined WALBERLA_CXX_COMPILER_IS_GNU) || \
165 (defined WALBERLA_CXX_COMPILER_IS_CLANG)
166#pragma GCC diagnostic pop
167#endif
Definition Cell.hpp:96
std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
void runOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers, IBlock *block)
static std::function< void(IBlock *)> getSweep(const shared_ptr< StreamCollideSweepThermalizedDoublePrecision > &kernel)
void configure(const shared_ptr< StructuredBlockStorage > &blocks, IBlock *block)
StreamCollideSweepThermalizedDoublePrecision(BlockDataID forceID_, BlockDataID pdfsID_, double kT, double omega_bulk, double omega_even, double omega_odd, double omega_shear, uint32_t seed, uint32_t time_step)
static std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< StreamCollideSweepThermalizedDoublePrecision > &kernel, const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
static double * block(double *p, std::size_t index, std::size_t size)
Definition elc.cpp:176
\file PackInfoPdfDoublePrecision.cpp \author pystencils