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 rho_0ID_, BlockDataID rho_1ID_, BlockDataID rho_2ID_,
59 double order_0,
double order_1,
double order_2,
double rate_coefficient,
60 double stoech_0,
double stoech_1,
double stoech_2)
61 : rho_0ID(rho_0ID_), rho_1ID(rho_1ID_), rho_2ID(rho_2ID_),
62 order_0_(order_0), order_1_(order_1), order_2_(order_2),
63 rate_coefficient_(rate_coefficient), stoech_0_(stoech_0),
64 stoech_1_(stoech_1), stoech_2_(stoech_2) {}
69 const CellInterval &globalCellInterval,
70 cell_idx_t ghostLayers, IBlock *
block);
74 static std::function<void(IBlock *)>
75 getSweep(
const shared_ptr<ReactionKernelBulk_3_double_precision> &kernel) {
76 return [kernel](IBlock *b) { kernel->run(b); };
80 const shared_ptr<ReactionKernelBulk_3_double_precision> &kernel,
81 const shared_ptr<StructuredBlockStorage> &blocks,
82 const CellInterval &globalCellInterval, cell_idx_t ghostLayers = 1) {
83 return [kernel, blocks, globalCellInterval, ghostLayers](IBlock *b) {
84 kernel->runOnCellInterval(blocks, globalCellInterval, ghostLayers, b);
89 return [
this](IBlock *b) { this->
run(b); };
92 std::function<void(IBlock *)>
94 const CellInterval &globalCellInterval,
95 cell_idx_t ghostLayers = 1) {
96 return [
this, blocks, globalCellInterval, ghostLayers](IBlock *b) {
101 void configure(
const shared_ptr<StructuredBlockStorage> & ,
111 inline void setOrder_0(
const double value) { order_0_ = value; }
112 inline void setOrder_1(
const double value) { order_1_ = value; }
113 inline void setOrder_2(
const double value) { order_2_ = value; }
115 rate_coefficient_ = value;
117 inline void setStoech_0(
const double value) { stoech_0_ = value; }
118 inline void setStoech_1(
const double value) { stoech_1_ = value; }
119 inline void setStoech_2(
const double value) { stoech_2_ = value; }
128 double rate_coefficient_;
137#if (defined WALBERLA_CXX_COMPILER_IS_GNU) || \
138 (defined WALBERLA_CXX_COMPILER_IS_CLANG)
139#pragma GCC diagnostic pop
static std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< ReactionKernelBulk_3_double_precision > &kernel, const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
std::function< void(IBlock *)> getSweep()
double getStoech_0() const
std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
void setStoech_0(const double value)
void setOrder_1(const double value)
void configure(const shared_ptr< StructuredBlockStorage > &, IBlock *)
void setRate_coefficient(const double value)
void setOrder_2(const double value)
void setStoech_2(const double value)
ReactionKernelBulk_3_double_precision(BlockDataID rho_0ID_, BlockDataID rho_1ID_, BlockDataID rho_2ID_, double order_0, double order_1, double order_2, double rate_coefficient, double stoech_0, double stoech_1, double stoech_2)
double getOrder_2() const
double getOrder_0() const
void setStoech_1(const double value)
double getRate_coefficient() const
void operator()(IBlock *block)
static std::function< void(IBlock *)> getSweep(const shared_ptr< ReactionKernelBulk_3_double_precision > &kernel)
void runOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers, IBlock *block)
double getStoech_1() const
double getStoech_2() const
void setOrder_0(const double value)
double getOrder_1() const
static double * block(double *p, std::size_t index, std::size_t size)
\file PackInfoPdfDoublePrecision.cpp \author pystencils