25#include "core/DataTypes.h"
26#include "core/logging/Logging.h"
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"
35#include <unordered_map>
38#define RESTRICT __restrict__
40#define RESTRICT __restrict
45#if (defined WALBERLA_CXX_COMPILER_IS_GNU) || \
46 (defined WALBERLA_CXX_COMPILER_IS_CLANG)
47#pragma GCC diagnostic push
48#pragma GCC diagnostic ignored "-Wunused-parameter"
49#pragma GCC diagnostic ignored "-Wreorder"
58 BlockDataID velocityID_,
float rho_0)
59 : forceID(forceID_), pdfsID(pdfsID_), velocityID(velocityID_),
65 const CellInterval &globalCellInterval,
66 cell_idx_t ghostLayers, IBlock *
block);
70 static std::function<void(IBlock *)>
71 getSweep(
const shared_ptr<InitialPDFsSetterSinglePrecision> &kernel) {
72 return [kernel](IBlock *b) { kernel->run(b); };
76 const shared_ptr<InitialPDFsSetterSinglePrecision> &kernel,
77 const shared_ptr<StructuredBlockStorage> &blocks,
78 const CellInterval &globalCellInterval, cell_idx_t ghostLayers = 1) {
79 return [kernel, blocks, globalCellInterval, ghostLayers](IBlock *b) {
80 kernel->runOnCellInterval(blocks, globalCellInterval, ghostLayers, b);
85 return [
this](IBlock *b) { this->
run(b); };
88 std::function<void(IBlock *)>
90 const CellInterval &globalCellInterval,
91 cell_idx_t ghostLayers = 1) {
92 return [
this, blocks, globalCellInterval, ghostLayers](IBlock *b) {
97 void configure(
const shared_ptr<StructuredBlockStorage> & ,
101 inline void setRho_0(
const float value) { rho_0_ = value; }
106 BlockDataID velocityID;
113#if (defined WALBERLA_CXX_COMPILER_IS_GNU) || \
114 (defined WALBERLA_CXX_COMPILER_IS_CLANG)
115#pragma GCC diagnostic pop
void runOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers, IBlock *block)
static std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< InitialPDFsSetterSinglePrecision > &kernel, const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
std::function< void(IBlock *)> getSweep()
InitialPDFsSetterSinglePrecision(BlockDataID forceID_, BlockDataID pdfsID_, BlockDataID velocityID_, float rho_0)
void configure(const shared_ptr< StructuredBlockStorage > &, IBlock *)
void setRho_0(const float value)
static std::function< void(IBlock *)> getSweep(const shared_ptr< InitialPDFsSetterSinglePrecision > &kernel)
void operator()(IBlock *block)
std::function< void(IBlock *)> getSweepOnCellInterval(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)
\file PackInfoPdfDoublePrecision.cpp \author pystencils