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 pdfsID_,
float grid_size,
59 float omega_shear,
float v_s)
60 : forceID(forceID_), pdfsID(pdfsID_), grid_size_(grid_size),
61 omega_shear_(omega_shear), v_s_(v_s) {}
66 const CellInterval &globalCellInterval,
67 cell_idx_t ghostLayers, IBlock *
block);
71 static std::function<void(IBlock *)>
72 getSweep(
const shared_ptr<CollideSweepSinglePrecisionLeesEdwards> &kernel) {
73 return [kernel](IBlock *b) { kernel->run(b); };
77 const shared_ptr<CollideSweepSinglePrecisionLeesEdwards> &kernel,
78 const shared_ptr<StructuredBlockStorage> &blocks,
79 const CellInterval &globalCellInterval, cell_idx_t ghostLayers = 1) {
80 return [kernel, blocks, globalCellInterval, ghostLayers](IBlock *b) {
81 kernel->runOnCellInterval(blocks, globalCellInterval, ghostLayers, b);
86 return [
this](IBlock *b) { this->
run(b); };
89 std::function<void(IBlock *)>
91 const CellInterval &globalCellInterval,
92 cell_idx_t ghostLayers = 1) {
93 return [
this, blocks, globalCellInterval, ghostLayers](IBlock *b) {
98 void configure(
const shared_ptr<StructuredBlockStorage> & ,
103 inline float getV_s()
const {
return v_s_; }
106 inline void setV_s(
const float value) { v_s_ = value; }
119#if (defined WALBERLA_CXX_COMPILER_IS_GNU) || \
120 (defined WALBERLA_CXX_COMPILER_IS_CLANG)
121#pragma GCC diagnostic pop
void setOmega_shear(const float value)
void configure(const shared_ptr< StructuredBlockStorage > &, IBlock *)
std::function< void(IBlock *)> getSweep()
std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
static std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< CollideSweepSinglePrecisionLeesEdwards > &kernel, const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
CollideSweepSinglePrecisionLeesEdwards(BlockDataID forceID_, BlockDataID pdfsID_, float grid_size, float omega_shear, float v_s)
float getOmega_shear() const
void operator()(IBlock *block)
static std::function< void(IBlock *)> getSweep(const shared_ptr< CollideSweepSinglePrecisionLeesEdwards > &kernel)
float getGrid_size() const
void setGrid_size(const float value)
void setV_s(const float value)
void runOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers, IBlock *block)
static double * block(double *p, std::size_t index, std::size_t size)
\file PackInfoPdfDoublePrecision.cpp \author pystencils