25#ifndef LATTICE_KINETIC_ENERGY_3D_HH
26#define LATTICE_KINETIC_ENERGY_3D_HH
44template<
typename T,
typename DESCRIPTOR>
49 this->
getName() =
"KineticEnergy";
50 int maxC = this->
_sLattice.getLoadBalancer().size();
52 for (
int iC = 0; iC < maxC; iC++) {
57template<
typename T,
typename DESCRIPTOR>
62 this->
getName() =
"KineticEnergy";
65template<
typename T,
typename DESCRIPTOR>
70 this->_blockLattice.get(input[0], input[1], input[2]).computeRhoU(rho, u);
72 output[0] = T(0.5) * uSqr;
represents all functors that operate on a DESCRIPTOR in general, e.g. getVelocity(),...
functor returns pointwise velocity on local lattice
BlockLatticeKineticEnergy3D(BlockLattice< T, DESCRIPTOR > &blockLattice)
bool operator()(T output[], const int input[]) override
has to be implemented for 'every' derived class
std::vector< std::unique_ptr< BlockF3D< W > > > _blockF
represents all functors that operate on a SuperLattice in general, e.g. getVelocity(),...
SuperLattice< T, DESCRIPTOR > & _sLattice
SuperLatticeKineticEnergy3D(SuperLattice< T, DESCRIPTOR > &sLattice)
Super class maintaining block lattices for a cuboid decomposition.
Wrapper functions that simplify the use of MPI.
auto normSqr(const ARRAY_LIKE &u) any_platform
Compute norm square of a d-dimensional vector.
Top level namespace for all of OpenLB.
Representation of a parallel 2D geometry – header file.