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"
59 : fID(fID_), jID(jID_), D_(D), kT_(kT) {}
64 const CellInterval &globalCellInterval,
65 cell_idx_t ghostLayers, IBlock *
block);
69 static std::function<void(IBlock *)>
70 getSweep(
const shared_ptr<FrictionCouplingKernel_double_precision> &kernel) {
71 return [kernel](IBlock *b) { kernel->run(b); };
75 const shared_ptr<FrictionCouplingKernel_double_precision> &kernel,
76 const shared_ptr<StructuredBlockStorage> &blocks,
77 const CellInterval &globalCellInterval, cell_idx_t ghostLayers = 1) {
78 return [kernel, blocks, globalCellInterval, ghostLayers](IBlock *b) {
79 kernel->runOnCellInterval(blocks, globalCellInterval, ghostLayers, b);
84 return [
this](IBlock *b) { this->
run(b); };
87 std::function<void(IBlock *)>
89 const CellInterval &globalCellInterval,
90 cell_idx_t ghostLayers = 1) {
91 return [
this, blocks, globalCellInterval, ghostLayers](IBlock *b) {
96 void configure(
const shared_ptr<StructuredBlockStorage> & ,
99 inline double getD()
const {
return D_; }
100 inline double getKt()
const {
return kT_; }
101 inline void setD(
const double value) { D_ = value; }
102 inline void setKt(
const double value) { kT_ = value; }
114#if (defined WALBERLA_CXX_COMPILER_IS_GNU) || \
115 (defined WALBERLA_CXX_COMPILER_IS_CLANG)
116#pragma GCC diagnostic pop
std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
FrictionCouplingKernel_double_precision(BlockDataID fID_, BlockDataID jID_, double D, double kT)
void configure(const shared_ptr< StructuredBlockStorage > &, IBlock *)
void runOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers, IBlock *block)
void setKt(const double value)
void setD(const double value)
std::function< void(IBlock *)> getSweep()
static std::function< void(IBlock *)> getSweep(const shared_ptr< FrictionCouplingKernel_double_precision > &kernel)
static std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< FrictionCouplingKernel_double_precision > &kernel, const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
void operator()(IBlock *block)
static double * block(double *p, std::size_t index, std::size_t size)
\file PackInfoPdfDoublePrecision.cpp \author pystencils