22#include <blockforest/communication/UniformBufferedScheme.h>
23#include <field/AddToStorage.h>
24#include <field/FlagField.h>
25#include <field/FlagUID.h>
26#include <field/GhostLayerField.h>
27#include <field/communication/PackInfo.h>
28#include <field/iterators/IteratorMacros.h>
29#include <field/vtk/FlagFieldCellFilter.h>
30#include <field/vtk/VTKWriter.h>
31#include <stencil/D3Q27.h>
32#include <waLBerlaDefinitions.h>
33#if defined(__CUDACC__) and defined(WALBERLA_BUILD_WITH_CUDA)
34#include <gpu/AddGPUFieldToStorage.h>
35#include <gpu/communication/MemcpyPackInfo.h>
36#include <gpu/communication/UniformGPUScheme.h>
39#include "../BoundaryHandling.hpp"
40#include "../BoundaryPackInfo.hpp"
41#include "../utils/boundary.hpp"
42#include "../utils/types_conversion.hpp"
44#if defined(__CUDACC__) and defined(WALBERLA_BUILD_WITH_CUDA)
71template <std::size_t FluxCount = 13,
typename FloatType = double,
74#if not defined(WALBERLA_BUILD_WITH_CUDA)
76 "waLBerla was compiled without CUDA support");
78 using ContinuityKernel =
80 using DiffusiveFluxKernelUnthermalized =
81 typename detail::KernelTrait<FloatType,
82 Architecture>::DiffusiveFluxKernel;
83 using DiffusiveFluxKernelThermalized =
typename detail::KernelTrait<
84 FloatType, Architecture>::DiffusiveFluxKernelThermalized;
85 using AdvectiveFluxKernel =
86 typename detail::KernelTrait<FloatType,
87 Architecture>::AdvectiveFluxKernel;
88 using FrictionCouplingKernel =
89 typename detail::KernelTrait<FloatType,
90 Architecture>::FrictionCouplingKernel;
91 using DiffusiveFluxKernelElectrostaticUnthermalized =
92 typename detail::KernelTrait<
93 FloatType, Architecture>::DiffusiveFluxKernelElectrostatic;
94 using DiffusiveFluxKernelElectrostaticThermalized =
95 typename detail::KernelTrait<
96 FloatType, Architecture>::DiffusiveFluxKernelElectrostaticThermalized;
98 using DiffusiveFluxKernel = std::variant<DiffusiveFluxKernelUnthermalized,
99 DiffusiveFluxKernelThermalized>;
100 using DiffusiveFluxKernelElectrostatic =
101 std::variant<DiffusiveFluxKernelElectrostaticUnthermalized,
102 DiffusiveFluxKernelElectrostaticThermalized>;
121 template <
typename FT, lbmpy::Arch AT = lbmpy::Arch::CPU>
struct FieldTrait {
125 template <
class Field>
126 using PackInfo = field::communication::PackInfo<Field>;
127 template <
class Stencil>
129 blockforest::communication::UniformBufferedScheme<Stencil>;
130 template <
class Stencil>
132 blockforest::communication::UniformBufferedScheme<Stencil>;
134 using FlagField = walberla::FlagField<walberla::uint8_t>;
135#if defined(__CUDACC__) and defined(WALBERLA_BUILD_WITH_CUDA)
139 template <
class Field>
140 using MemcpyPackInfo = gpu::communication::MemcpyPackInfo<Field>;
143 template <
typename Stencil>
144 class UniformGPUScheme
145 :
public gpu::communication::UniformGPUScheme<Stencil> {
147 explicit UniformGPUScheme(
auto const &bf)
148 : gpu::communication::UniformGPUScheme<Stencil>(
154 template <
class Field>
using PackInfo = MemcpyPackInfo<Field>;
155 template <
class Stencil>
157 template <
class Stencil>
159 blockforest::communication::UniformBufferedScheme<Stencil>;
161 using GPUField = gpu::GPUField<FloatType>;
183 return numeric_cast<FloatType>(t);
191 return std::is_same_v<FloatType, double>;
195 FloatType m_diffusion;
200 bool m_friction_coupling;
224 std::unique_ptr<DiffusiveFluxKernelElectrostatic>
243 template <
typename Field>
245 auto const &blocks =
m_lattice->get_blocks();
246 auto const n_ghost_layers =
m_lattice->get_ghost_layers();
247#if defined(__CUDACC__) and defined(WALBERLA_BUILD_WITH_CUDA)
249 auto field_id = gpu::addGPUFieldToStorage<GPUField>(
250 blocks, tag, Field::F_SIZE, field::fzyx, n_ghost_layers);
251 if constexpr (std::is_same_v<Field, _DensityField>) {
253 auto field =
block->template getData<GPUField>(field_id);
256 }
else if constexpr (std::is_same_v<Field, _FluxField>) {
258 auto field =
block->template getData<GPUField>(field_id);
260 std::array<FloatType, FluxCount>{});
266 return field::addToStorage<Field>(blocks, tag, FloatType{value},
267 field::fzyx, n_ghost_layers);
272 auto const [lc, uc] =
m_lattice->get_local_grid_range(
true);
280 auto const [lc, uc] =
m_lattice->get_local_grid_range(
true);
288 typename stencil::D3Q27>;
291 typename stencil::D3Q27>;
296 template <
class Field>
303 double density,
bool advection,
bool friction_coupling,
304 bool thermalized,
unsigned int seed)
306 m_valency(
FloatType_c(valency)), m_ext_efield(ext_efield),
307 m_advection(advection), m_friction_coupling(friction_coupling),
311 auto const &blocks =
m_lattice->get_blocks();
312 auto const n_ghost_layers =
m_lattice->get_ghost_layers();
317 add_to_storage<_FluxField>(
"flux field",
FloatType_c(0.0));
325 set_diffusion_kernels();
330 blocks,
"flag field density", n_ghost_layers);
334 blocks,
"flag field flux", n_ghost_layers);
341 std::make_shared<BoundaryFullCommunicator>(blocks);
345 auto flux_boundary_packinfo = std::make_shared<
358 [[nodiscard]]
double get_kT() const noexcept
override {
return m_kT; }
366 return m_friction_coupling;
372 return static_cast<bool>(
375 [[nodiscard]]
unsigned int get_seed() const noexcept
override {
384 return {
static_cast<uint64_t
>(kernel->getTime_step())};
389 auto visitor = [m_diffusion = m_diffusion](
auto &kernel) {
390 kernel.setD(m_diffusion);
398 std::visit([m_kT = m_kT](
auto &kernel) { kernel.setKt(m_kT); },
405 [m_valency = m_valency](
auto &kernel) { kernel.setZ(m_valency); },
412 m_friction_coupling = friction_coupling;
418 auto const kernel_electrostatic =
419 std::get_if<DiffusiveFluxKernelElectrostaticThermalized>(
422 if (!kernel or !kernel_electrostatic) {
423 throw std::runtime_error(
"This EK instance is unthermalized");
426 static_cast<uint32_t
>(std::numeric_limits<uint_t>::max()));
427 kernel->setTime_step(
static_cast<uint32_t
>(counter));
428 kernel_electrostatic->setTime_step(
static_cast<uint32_t
>(counter));
432 m_ext_efield = field;
435 [
this](
auto &kernel) {
446 (*m_full_communication)();
461 void set_diffusion_kernels() {
462 auto kernel = DiffusiveFluxKernelUnthermalized(
464 m_diffusive_flux = std::make_unique<DiffusiveFluxKernel>(std::move(kernel));
466 auto kernel_electrostatic = DiffusiveFluxKernelElectrostaticUnthermalized(
473 std::make_unique<DiffusiveFluxKernelElectrostatic>(
474 std::move(kernel_electrostatic));
481 auto kernel = DiffusiveFluxKernelThermalized(
483 grid_dim[0], grid_dim[1], grid_dim[2], seed, 0);
485 auto kernel_electrostatic = DiffusiveFluxKernelElectrostaticThermalized(
494 for (
auto &
block : *blocks) {
495 kernel.configure(blocks, &
block);
496 kernel_electrostatic.configure(blocks, &
block);
499 m_diffusive_flux = std::make_unique<DiffusiveFluxKernel>(std::move(kernel));
501 std::make_unique<DiffusiveFluxKernelElectrostatic>(
502 std::move(kernel_electrostatic));
505 void kernel_boundary_density() {
507 (*m_boundary_density)(&
block);
511 void kernel_boundary_flux() {
513 (*m_boundary_flux)(&
block);
517 void kernel_continuity() {
519 (*m_continuity).run(&
block);
523 void kernel_diffusion() {
525 std::visit([&
block](
auto &kernel) { kernel.run(&
block); },
531 kernel->setTime_step(kernel->getTime_step() + 1u);
533 auto *kernel_electrostatic =
534 std::get_if<DiffusiveFluxKernelElectrostaticThermalized>(
536 kernel_electrostatic->setTime_step(kernel_electrostatic->getTime_step() +
541 void kernel_advection(std::size_t
const velocity_id) {
543 BlockDataID(velocity_id));
549 void kernel_friction_coupling(std::size_t
const force_id,
550 double const lb_density) {
551 auto kernel = FrictionCouplingKernel(
559 void kernel_diffusion_electrostatic(std::size_t
const potential_id) {
560 auto const phiID = BlockDataID(potential_id);
561 std::visit([phiID](
auto &kernel) { kernel.setPhiID(phiID); },
565 std::visit([&
block](
auto &kernel) { kernel.run(&
block); },
569 if (
auto *kernel_electrostatic =
570 std::get_if<DiffusiveFluxKernelElectrostaticThermalized>(
572 kernel_electrostatic->setTime_step(kernel_electrostatic->getTime_step() +
577 kernel->setTime_step(kernel->getTime_step() + 1u);
581 void kernel_migration() {}
583 void update_boundary_fields() {
590 for (
auto const &vtk_handle :
m_vtk_auto | std::views::values) {
591 if (vtk_handle->enabled) {
592 vtk::writeFiles(vtk_handle->ptr)();
593 vtk_handle->execution_count++;
599 void integrate(std::size_t potential_id, std::size_t velocity_id,
600 std::size_t force_id,
double lb_density)
override {
603 update_boundary_fields();
609 if (potential_id == walberla::BlockDataID{}) {
610 throw std::runtime_error(
"Walberla EK: electrostatic potential enabled "
611 "but no field accessible. potential id is " +
612 std::to_string(potential_id));
614 kernel_diffusion_electrostatic(potential_id);
620 kernel_boundary_flux();
623 if (force_id == walberla::BlockDataID{}) {
624 throw std::runtime_error(
"Walberla EK: friction coupling enabled but "
625 "no force field accessible. force_id is " +
626 std::to_string(force_id) +
627 ". Hint: LB may be inactive.");
629 kernel_friction_coupling(force_id, lb_density);
633 if (velocity_id == walberla::BlockDataID{}) {
634 throw std::runtime_error(
"Walberla EK: advection enabled but no "
635 "velocity field accessible. velocity_id is " +
636 std::to_string(velocity_id) +
637 ". Hint: LB may be inactive.");
639 kernel_advection(velocity_id);
640 kernel_boundary_flux();
645 kernel_boundary_density();
653 static_assert(std::is_same_v<std::size_t, walberla::uint_t>);
669 [[nodiscard]] std::optional<double>
671 bool consider_ghosts =
false)
const override {
681 auto const density_field =
686 [[nodiscard]] std::vector<double>
689 std::vector<double> out;
691 uint_t values_size = 0u;
694 if (
auto const ci =
get_interval(lattice, lower_corner, upper_corner)) {
695 out = std::vector<double>(ci->numCells());
699 lattice, lower_corner, upper_corner, block_offset,
block)) {
700 auto const density_field =
703 assert(values.size() == bci->numCells());
705 values_size += bci->numCells();
707 auto kernel = [
this, &values, &out](
unsigned const block_index,
708 unsigned const local_index,
714 out[local_index] = double_c(values[block_index]);
721 assert(values_size == ci->numCells());
728 std::vector<double>
const &
density)
override {
731 if (
auto const ci =
get_interval(lattice, lower_corner, upper_corner)) {
732 assert(
density.size() == ci->numCells());
736 lattice, lower_corner, upper_corner, block_offset,
block)) {
737 auto const density_field =
739 std::vector<FloatType> values(bci->numCells());
741 auto kernel = [&values, &
density](
unsigned const block_index,
742 unsigned const local_index,
744 values[block_index] = numeric_cast<FloatType>(
density[local_index]);
754 [[nodiscard]] std::optional<Utils::Vector3d>
756 bool consider_ghosts =
false)
const override {
766 auto const flux_field =
774 std::vector<double> out;
776 uint_t values_size = 0;
779 if (
auto const ci =
get_interval(lattice, lower_corner, upper_corner)) {
780 out = std::vector<double>(3u * ci->numCells());
784 lattice, lower_corner, upper_corner, block_offset,
block)) {
785 auto const flux_field =
788 assert(values.size() == 3u * bci->numCells());
790 values_size += 3u * bci->numCells();
793 auto kernel = [&values, &out,
this](
unsigned const block_index,
794 unsigned const local_index,
799 for (uint_t f = 0u; f < 3u; ++f) {
800 out[3u * local_index + f] = double_c(vec[f]);
803 for (uint_t f = 0u; f < 3u; ++f) {
804 out[3u * local_index + f] =
805 double_c(values[3u * block_index + f]);
813 assert(values_size == 3u * ci->numCells());
835 node, to_vector3<FloatType>(
flux), *bc);
839 [[nodiscard]] std::optional<Utils::Vector3d>
841 bool consider_ghosts =
false)
const override {
872 [[nodiscard]] std::optional<double>
874 bool consider_ghosts =
false)
const override {
884 std::vector<std::optional<double>>
const &
density)
override {
886 if (
auto const ci =
get_interval(lattice, lower_corner, upper_corner)) {
888 auto const lower_cell = ci->min();
889 auto const upper_cell = ci->max();
891 assert(
density.size() == ci->numCells());
892 for (
auto x = lower_cell.x(); x <= upper_cell.x(); ++x) {
893 for (
auto y = lower_cell.y(); y <= upper_cell.y(); ++y) {
894 for (
auto z = lower_cell.z(); z <= upper_cell.z(); ++z) {
897 auto const &opt = *it;
911 [[nodiscard]] std::vector<std::optional<double>>
915 std::vector<std::optional<double>> out;
917 if (
auto const ci =
get_interval(lattice, lower_corner, upper_corner)) {
919 auto const lower_cell = ci->min();
920 auto const upper_cell = ci->max();
921 auto const n_values = ci->numCells();
922 out.reserve(n_values);
923 for (
auto x = lower_cell.x(); x <= upper_cell.x(); ++x) {
924 for (
auto y = lower_cell.y(); y <= upper_cell.y(); ++y) {
925 for (
auto z = lower_cell.z(); z <= upper_cell.z(); ++z) {
928 out.emplace_back(double_c(
931 out.emplace_back(std::nullopt);
936 assert(out.size() == n_values);
943 std::vector<std::optional<Utils::Vector3d>>
const &
flux)
override {
946 if (
auto const ci =
get_interval(lattice, lower_corner, upper_corner)) {
948 auto const lower_cell = ci->min();
949 auto const upper_cell = ci->max();
950 auto it =
flux.begin();
951 assert(
flux.size() == ci->numCells());
952 for (
auto x = lower_cell.x(); x <= upper_cell.x(); ++x) {
953 for (
auto y = lower_cell.y(); y <= upper_cell.y(); ++y) {
954 for (
auto z = lower_cell.z(); z <= upper_cell.z(); ++z) {
957 auto const &opt = *it;
960 node, to_vector3<FloatType>(*opt), *bc);
971 [[nodiscard]] std::vector<std::optional<Utils::Vector3d>>
975 std::vector<std::optional<Utils::Vector3d>> out;
977 if (
auto const ci =
get_interval(lattice, lower_corner, upper_corner)) {
979 auto const lower_cell = ci->min();
980 auto const upper_cell = ci->max();
981 auto const n_values = ci->numCells();
982 out.reserve(n_values);
983 for (
auto x = lower_cell.x(); x <= upper_cell.x(); ++x) {
984 for (
auto y = lower_cell.y(); y <= upper_cell.y(); ++y) {
985 for (
auto z = lower_cell.z(); z <= upper_cell.z(); ++z) {
991 out.emplace_back(std::nullopt);
996 assert(out.size() == n_values);
1001 [[nodiscard]] std::vector<bool>
1004 std::vector<bool> out;
1006 if (
auto const ci =
get_interval(lattice, lower_corner, upper_corner)) {
1008 auto const lower_cell = ci->min();
1009 auto const upper_cell = ci->max();
1010 auto const n_values = ci->numCells();
1011 out.reserve(n_values);
1012 for (
auto x = lower_cell.x(); x <= upper_cell.x(); ++x) {
1013 for (
auto y = lower_cell.y(); y <= upper_cell.y(); ++y) {
1014 for (
auto z = lower_cell.z(); z <= upper_cell.z(); ++z) {
1021 assert(out.size() == n_values);
1036 [[nodiscard]] std::optional<bool>
1038 bool consider_ghosts)
const override {
1042 return std::nullopt;
1047 [[nodiscard]] std::optional<bool>
1049 bool consider_ghosts)
const override {
1052 return std::nullopt;
1057 [[nodiscard]] std::optional<bool>
1059 bool consider_ghosts =
false)
const override {
1062 return std::nullopt;
1069 const std::vector<int> &raster_flat,
1070 const std::vector<double> &data_flat)
override {
1079 const std::vector<int> &raster_flat,
1080 const std::vector<double> &data_flat)
override {
1098 [[nodiscard]]
bool is_gpu() const noexcept
override {
1107 vtk_obj.addCellExclusionFilter(dens_filter);
1108 vtk_obj.addCellExclusionFilter(flux_filter);
1112 template <
typename VecType, u
int_t F_SIZE_ARG,
typename OutputType>
1113 class VTKWriter :
public vtk::BlockCellDataWriter<OutputType, F_SIZE_ARG> {
1115 VTKWriter(ConstBlockDataID
const &block_id, std::string
const &
id,
1116 FloatType unit_conversion)
1117 : vtk::BlockCellDataWriter<OutputType, F_SIZE_ARG>(id),
1121 void configure()
override { WALBERLA_ASSERT_NOT_NULLPTR(this->block_); }
1124 cell_idx_t
const z) {
1125 return (
static_cast<std::size_t
>(x) *
m_dims[2] *
m_dims[1] +
1126 static_cast<std::size_t
>(y) *
m_dims[2] +
1127 static_cast<std::size_t
>(z)) *
1141 template <
typename OutputType =
float>
1143 :
public VTKWriter<std::vector<FloatType>, 1u, OutputType> {
1147 using Base::evaluate;
1150 OutputType
evaluate(cell_idx_t
const x, cell_idx_t
const y,
1151 cell_idx_t
const z, cell_idx_t
const)
override {
1152 WALBERLA_ASSERT(!this->
m_content.empty());
1158 template <
typename OutputType =
float>
1160 :
public VTKWriter<std::vector<FloatType>, 3u, OutputType> {
1164 using Base::evaluate;
1167 OutputType
evaluate(cell_idx_t
const x, cell_idx_t
const y,
1168 cell_idx_t
const z, cell_idx_t
const f)
override {
1169 WALBERLA_ASSERT(!this->
m_content.empty());
1175 template <
typename OutputType =
float>
1178 using Base = vtk::BlockCellDataWriter<OutputType, 1u>;
1179 using Base::evaluate;
1181 std::string
const &
id, FlagUID
const &boundary_flag)
1182 : vtk::BlockCellDataWriter<OutputType, 1u>(id),
1188 WALBERLA_ASSERT_NOT_NULLPTR(this->block_);
1193 OutputType
evaluate(cell_idx_t
const x, cell_idx_t
const y,
1194 cell_idx_t
const z, cell_idx_t
const)
override {
1210 int flag_observables)
override {
1212 auto const unit_conversion =
FloatType_c(units.at(
"density"));
1213 auto const blocks =
m_lattice->get_blocks();
1214 WALBERLA_ASSERT_NOT_NULLPTR(blocks);
1215 auto density_writer = make_shared<DensityVTKWriter<float>>(
1217 auto before_function = [
this, blocks, density_writer]() {
1218 for (
auto &
block : *blocks) {
1219 auto *density_field =
1223 auto const *flag_field =
1225 auto const boundary_flag = flag_field->getFlag(
Boundary_flag);
1226 WALBERLA_FOR_ALL_CELLS_XYZ(flag_field, {
1227 if (flag_field->isFlagSet(x, y, z, boundary_flag)) {
1228 Cell const global(offset[0] + x, offset[1] + y, offset[2] + z);
1229 auto const density =
1230 m_boundary_density->get_node_value_at_boundary(global);
1231 Cell const local(x, y, z);
1232 ek::accessor::Scalar::set(density_field, density, local);
1236 auto const bci = density_field->xyzSize();
1237 density_writer->set_content(
1239 density_writer->set_dims(
1240 Vector3<uint_t>(bci.xSize(), bci.ySize(), bci.zSize()));
1244 vtk_obj.addBeforeFunction(std::move(before_function));
1245 vtk_obj.addCellDataWriter(density_writer);
1248 auto const unit_conversion =
FloatType_c(units.at(
"flux"));
1249 auto const blocks =
m_lattice->get_blocks();
1250 WALBERLA_ASSERT_NOT_NULLPTR(blocks);
1251 auto flux_writer = make_shared<FluxVTKWriter<float>>(
1253 auto before_function = [
this, blocks, flux_writer]() {
1254 for (
auto &
block : *blocks) {
1256 auto const bci = flux_field->xyzSize();
1258 auto const block_offset =
m_lattice->get_block_corner(
block,
true);
1259 std::size_t index = 0u;
1260 for (
auto x = bci.xMin(); x <= bci.xMax(); ++x) {
1261 for (
auto y = bci.yMin(); y <= bci.yMax(); ++y) {
1262 for (
auto z = bci.zMin(); z <= bci.zMax(); ++z) {
1267 values[3u * index + 0u] = vec[0];
1268 values[3u * index + 1u] = vec[1];
1269 values[3u * index + 2u] = vec[2];
1275 flux_writer->set_content(std::move(values));
1276 flux_writer->set_dims(
1277 Vector3<uint_t>(bci.xSize(), bci.ySize(), bci.zSize()));
1280 vtk_obj.addBeforeFunction(std::move(before_function));
1281 vtk_obj.addCellDataWriter(flux_writer);
Vector implementation and trait types for boost qvm interoperability.
Interface of a lattice-based electrokinetic model.
std::map< std::string, std::shared_ptr< VTKHandle > > m_vtk_auto
VTK writers that are executed automatically.
std::unordered_map< std::string, double > units_map
Class that runs and controls the BlockForest in waLBerla.
auto const & get_grid_dimensions() const
walberla::blockforest::StructuredBlockForest Lattice_T
std::pair< Utils::Vector3i, Utils::Vector3i > get_local_grid_range(bool with_halo=false) const
Utils::Vector3i get_block_corner(IBlock const &block, bool lower) const
Boundary class optimized for sparse data.
vtk::BlockCellDataWriter< OutputType, 1u > Base
FlagUID const m_boundary_flag
FlagField const * m_flag_field
OutputType evaluate(cell_idx_t const x, cell_idx_t const y, cell_idx_t const z, cell_idx_t const) override
BoundaryVTKWriter(ConstBlockDataID const &flag_field_id, std::string const &id, FlagUID const &boundary_flag)
ConstBlockDataID const m_flag_field_id
FlagField::flag_t m_boundary_flag_value
void configure() override
OutputType evaluate(cell_idx_t const x, cell_idx_t const y, cell_idx_t const z, cell_idx_t const) override
OutputType evaluate(cell_idx_t const x, cell_idx_t const y, cell_idx_t const z, cell_idx_t const f) override
void set_dims(Vector3< uint_t > dims)
std::size_t get_first_index(cell_idx_t const x, cell_idx_t const y, cell_idx_t const z)
VTKWriter(ConstBlockDataID const &block_id, std::string const &id, FloatType unit_conversion)
void set_content(VecType content)
void configure() override
Class that runs and controls the EK on waLBerla.
~EKinWalberlaImpl() override=default
void set_slice_flux_boundary(Utils::Vector3i const &lower_corner, Utils::Vector3i const &upper_corner, std::vector< std::optional< Utils::Vector3d > > const &flux) override
void set_kT(double kT) override
std::optional< double > get_node_density_at_boundary(Utils::Vector3i const &node, bool consider_ghosts=false) const override
double get_kT() const noexcept override
std::unique_ptr< DiffusiveFluxKernelElectrostatic > m_diffusive_flux_electrostatic
walberla::FlagField< walberla::uint8_t > FlagField
void set_friction_coupling(bool friction_coupling) override
void set_rng_state(uint64_t counter) override
void integrate(std::size_t potential_id, std::size_t velocity_id, std::size_t force_id, double lb_density) override
bool set_node_density_boundary(Utils::Vector3i const &node, double density) override
void set_slice_density(Utils::Vector3i const &lower_corner, Utils::Vector3i const &upper_corner, std::vector< double > const &density) override
BlockDataID m_density_field_id
std::shared_ptr< FullCommunicator > m_full_communication
std::bitset< GhostComm::SIZE > m_pending_ghost_comm
std::vector< double > get_slice_density(Utils::Vector3i const &lower_corner, Utils::Vector3i const &upper_corner) const override
void update_density_boundary_from_shape(const std::vector< int > &raster_flat, const std::vector< double > &data_flat) override
void update_flux_boundary_from_shape(const std::vector< int > &raster_flat, const std::vector< double > &data_flat) override
std::vector< bool > get_slice_is_boundary(Utils::Vector3i const &lower_corner, Utils::Vector3i const &upper_corner) const override
void set_ext_efield(Utils::Vector3d const &field) override
bool set_node_density(Utils::Vector3i const &node, double density) override
double get_diffusion() const noexcept override
void set_valency(double valency) override
bool is_thermalized() const noexcept override
auto add_to_storage(std::string const tag, FloatType value)
Convenience function to add a field with a custom allocator.
std::optional< double > get_node_density(Utils::Vector3i const &node, bool consider_ghosts=false) const override
std::size_t get_density_id() const noexcept override
unsigned int get_seed() const noexcept override
BlockDataID m_flag_field_flux_id
std::unique_ptr< ContinuityKernel > m_continuity
double get_valency() const noexcept override
typename FieldTrait< FloatType, Architecture >::FluxField FluxField
void clear_flux_boundaries() override
std::shared_ptr< BoundaryModelFlux > m_boundary_flux
void set_slice_density_boundary(Utils::Vector3i const &lower_corner, Utils::Vector3i const &upper_corner, std::vector< std::optional< double > > const &density) override
void reset_flux_boundary_handling(std::shared_ptr< BlockStorage > const &blocks)
bool get_advection() const noexcept override
std::optional< Utils::Vector3d > get_node_flux_vector(Utils::Vector3i const &node, bool consider_ghosts=false) const override
typename FieldTrait< FloatType, Architecture >::template BoundaryCommScheme< typename stencil::D3Q27 > BoundaryFullCommunicator
typename FieldTrait< FloatType, Architecture >::template RegularCommScheme< typename stencil::D3Q27 > FullCommunicator
void reallocate_density_boundary_field()
std::optional< uint64_t > get_rng_state() const override
void set_advection(bool advection) override
BlockDataID m_flag_field_density_id
bool remove_node_from_density_boundary(Utils::Vector3i const &node) override
typename FieldTrait< FloatType, Architecture >::template PackInfo< Field > PackInfo
bool get_friction_coupling() const noexcept override
Utils::Vector3d get_ext_efield() const noexcept override
stencil::D3Q27 Stencil
Stencil for collision and streaming operations.
LatticeWalberla const & get_lattice() const noexcept override
bool remove_node_from_flux_boundary(Utils::Vector3i const &node) override
bool is_double_precision() const noexcept override
void integrate_vtk_writers() override
typename FieldTrait< FloatType, Architecture >::DensityField DensityField
FloatType FloatType_c(T t)
bool is_gpu() const noexcept override
void clear_density_boundaries() override
std::optional< bool > get_node_is_flux_boundary(Utils::Vector3i const &node, bool consider_ghosts) const override
void ghost_communication() override
LatticeWalberla::Lattice_T BlockStorage
Lattice model (e.g.
void ghost_communication_boundary()
void reset_density_boundary_handling(std::shared_ptr< BlockStorage > const &blocks)
std::vector< std::optional< Utils::Vector3d > > get_slice_flux_at_boundary(Utils::Vector3i const &lower_corner, Utils::Vector3i const &upper_corner) const override
ResourceObserver m_mpi_cart_comm_observer
std::vector< std::optional< double > > get_slice_density_at_boundary(Utils::Vector3i const &lower_corner, Utils::Vector3i const &upper_corner) const override
BlockDataID m_flux_field_id
void register_vtk_field_writers(walberla::vtk::VTKOutput &vtk_obj, LatticeModel::units_map const &units, int flag_observables) override
std::optional< Utils::Vector3d > get_node_flux_at_boundary(Utils::Vector3i const &node, bool consider_ghosts=false) const override
std::vector< double > get_slice_flux_vector(Utils::Vector3i const &lower_corner, Utils::Vector3i const &upper_corner) const override
typename FieldTrait< FloatType >::DensityField _DensityField
std::shared_ptr< BoundaryFullCommunicator > m_boundary_communicator
std::optional< bool > get_node_is_density_boundary(Utils::Vector3i const &node, bool consider_ghosts) const override
std::unique_ptr< DiffusiveFluxKernel > m_diffusive_flux
void set_diffusion(double diffusion) override
std::size_t stencil_size() const noexcept override
FlagUID const Boundary_flag
Flag for boundary cells.
bool set_node_flux_boundary(Utils::Vector3i const &node, Utils::Vector3d const &flux) override
void reallocate_flux_boundary_field()
typename FieldTrait< FloatType >::FluxField _FluxField
std::optional< bool > get_node_is_boundary(Utils::Vector3i const &node, bool consider_ghosts=false) const override
std::unique_ptr< BoundaryModelDensity > m_boundary_density
EKinWalberlaImpl(std::shared_ptr< LatticeWalberla > lattice, double diffusion, double kT, double valency, Utils::Vector3d const &ext_efield, double density, bool advection, bool friction_coupling, bool thermalized, unsigned int seed)
std::shared_ptr< LatticeWalberla > m_lattice
Block forest.
FlagUID const Domain_flag
Flag for domain cells, i.e.
void register_vtk_field_filters(walberla::vtk::VTKOutput &vtk_obj) override
void setup_boundary_handle(std::shared_ptr< LatticeWalberla > lattice, std::shared_ptr< Boundary_T > boundary)
static double * block(double *p, std::size_t index, std::size_t size)
auto get_vector(GhostLayerField< double, uint_t{13u}> const *flux_field, Cell const &cell)
void initialize(GhostLayerField< double, uint_t{13u}> *flux_field, std::array< double, 13 > const &values)
void initialize(GhostLayerField< double, 1u > *scalar_field, double const &value)
void set(GhostLayerField< double, 1u > *scalar_field, double const &value, Cell const &cell)
auto get(GhostLayerField< double, 1u > const *scalar_field, Cell const &cell)
static FUNC_PREFIX double *RESTRICT const double *RESTRICT const int64_t const int64_t const int64_t const int64_t const int64_t const int64_t const int64_t const int64_t const int64_t const int64_t const uint32_t uint32_t uint32_t uint32_t uint32_t uint32_t uint32_t seed
\file PackInfoPdfDoublePrecision.cpp \author pystencils
auto to_vector3d(Vector3< T > const &v) noexcept
std::vector< double > fill_3D_scalar_array(std::vector< double > const &vec_flat, Utils::Vector3i const &grid_size)
void set_boundary_from_grid(BoundaryModel &boundary, LatticeWalberla const &lattice, std::vector< int > const &raster_flat, std::vector< DataType > const &data_flat)
void copy_block_buffer(CellInterval const &bci, CellInterval const &ci, Utils::Vector3i const &block_offset, Utils::Vector3i const &lower_corner, auto &&kernel)
Synchronize data between a sliced block and a container.
std::optional< BlockAndCell > get_block_and_cell(::LatticeWalberla const &lattice, signed_integral_vector auto const &node, bool consider_ghost_layers)
Cell to_cell(signed_integral_vector auto const &xyz)
ResourceObserver get_mpi_cart_comm_observer()
Get an observer on waLBerla's MPI Cartesian communicator status.
std::optional< walberla::cell::CellInterval > get_block_interval(::LatticeWalberla const &lattice, Utils::Vector3i const &lower_corner, Utils::Vector3i const &upper_corner, Utils::Vector3i const &block_offset, IBlock const &block)
std::optional< walberla::cell::CellInterval > get_interval(::LatticeWalberla const &lattice, Utils::Vector3i const &lower_corner, Utils::Vector3i const &upper_corner)
std::vector< Utils::Vector3d > fill_3D_vector_array(std::vector< double > const &vec_flat, Utils::Vector3i const &grid_size)
Observer to monitor the lifetime of a shared resource.
blockforest::communication::UniformBufferedScheme< Stencil > RegularCommScheme
GhostLayerField< FT, FluxCount > FluxField
field::communication::PackInfo< Field > PackInfo
GhostLayerField< FT, 1 > DensityField
blockforest::communication::UniformBufferedScheme< Stencil > BoundaryCommScheme
GhostCommFlags
Ghost communication operations.
@ DENS
density communication
@ FLB
flux boundary communication