24#ifndef LATTICE_PHYS_BOUNDARY_FORCE_2D_HH
25#define LATTICE_PHYS_BOUNDARY_FORCE_2D_HH
44template<
typename T,
typename DESCRIPTOR>
50 _indicatorF(std::move(indicatorF))
52 this->
getName() =
"physBoundaryForce";
53 for (
int iC = 0; iC < this->
_sLattice.getLoadBalancer().size(); ++iC) {
57 _indicatorF->getBlockIndicatorF(iC),
62template<
typename T,
typename DESCRIPTOR>
68 superGeometry.getMaterialIndicator(material),
72template <
typename T,
typename DESCRIPTOR>
78 _indicatorF(indicatorF),
79 _blockGeometry(indicatorF.getBlockGeometry())
81 this->
getName() =
"physBoundaryForce";
84template <
typename T,
typename DESCRIPTOR>
87 for (
int i = 0; i < this->getTargetDim(); ++i) {
91 if (_indicatorF(input)) {
92 for (
int iPop = 1; iPop < DESCRIPTOR::q; ++iPop) {
96 if (_blockGeometry.get({input[0] + descriptors::c<DESCRIPTOR >(iPop,0), input[1] + descriptors::c<DESCRIPTOR >(iPop,1)}) == 1) {
103 for (
int i = 0; i < this->getTargetDim(); ++i) {
108 for (
int i = 0; i < this->getTargetDim(); ++i) {
109 output[i] = this->_converter.getPhysForce(output[i]);
Base block indicator functor (discrete)
BlockLatticePhysBoundaryForce2D returns pointwise phys force acting on a boundary.
bool operator()(T output[], const int input[]) override
has to be implemented for 'every' derived class
BlockLatticePhysBoundaryForce2D(BlockLattice< T, DESCRIPTOR > &blockLattice, BlockIndicatorF2D< T > &indicatorF, const UnitConverter< T, DESCRIPTOR > &converter)
represents all functors that operate on a DESCRIPTOR with output in Phys, e.g. physVelocity(),...
Smart pointer for managing the various ways of passing functors around.
std::vector< std::unique_ptr< BlockF2D< W > > > _blockF
Representation of a statistic for a parallel 2D geometry.
SuperLattice< T, DESCRIPTOR > & _sLattice
functor to get pointwise phys force acting on a boundary with a given material on local lattice
SuperLatticePhysBoundaryForce2D(SuperLattice< T, DESCRIPTOR > &sLattice, FunctorPtr< SuperIndicatorF2D< T > > &&indicatorF, const UnitConverter< T, DESCRIPTOR > &converter)
represents all functors that operate on a DESCRIPTOR with output in Phys, e.g. physVelocity(),...
Super class maintaining block lattices for a cuboid decomposition.
Conversion between physical and lattice units, as well as discretization.
The description of a generic interface for all functor classes – header file.
This file contains indicator functions.
Wrapper functions that simplify the use of MPI.
constexpr int c(unsigned iPop, unsigned iDim) any_platform
constexpr int opposite(unsigned iPop) any_platform
Top level namespace for all of OpenLB.
Representation of a parallel 2D geometry – header file.