/* This file is part of the OpenLB library * * Copyright (C) 2017 Adrian Kummerlaender * E-mail contact: info@openlb.net * The most recent release of OpenLB can be downloaded at * * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the Free * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #ifndef BLOCK_REDUCTION_3D2D_HH #define BLOCK_REDUCTION_3D2D_HH #include "blockReduction3D2D.h" #include #include #include "utilities/vectorHelpers.h" #include "functors/analytical/interpolationF3D.h" #include "communication/mpiManager.h" #include "utilities/functorPtr.hh" namespace olb { template void BlockReduction3D2D::updateBlockAnalytical(BlockData2D& block) { AnalyticalFfromSuperF3D analyticalF(*_f); for ( std::tuple& pos : _rankLocalSubplane ) { const int& iX = std::get<0>(pos); const int& iY = std::get<1>(pos); const Vector physR = this->getPhysR(iX, iY); for ( int iSize = 0; iSize < _f->getTargetDim(); ++iSize ) { block.get(iX, iY, iSize) = T(); } T output[_f->getTargetDim()]; const T input[3] { physR[0], physR[1], physR[2] }; if (analyticalF(output, input)) { for ( int iSize = 0; iSize < _f->getTargetDim(); ++iSize ) { block.get(iX, iY, iSize) += output[iSize]; } } } } template void BlockReduction3D2D::updateBlockDiscrete(BlockData2D& block) { CuboidGeometry3D& geometry = _f->getSuperStructure().getCuboidGeometry(); for ( std::tuple& pos : _rankLocalSubplane ) { const int& iX = std::get<0>(pos); const int& iY = std::get<1>(pos); const int& iC = std::get<2>(pos); const Vector physR = this->getPhysR(iX, iY); for ( int iSize = 0; iSize < _f->getTargetDim(); ++iSize ) { block.get(iX, iY, iSize) = T(); } T output[_f->getTargetDim()]; int input[4] { iC, 0, 0, 0 }; geometry.get(iC).getLatticeR(&input[1], physR); if (_f(output, input)) { for ( int iSize = 0; iSize < _f->getTargetDim(); ++iSize ) { block.get(iX, iY, iSize) += output[iSize]; } } } } template BlockReduction3D2D::BlockReduction3D2D( FunctorPtr>&& f, const HyperplaneLattice3D& lattice, BlockDataSyncMode syncMode, BlockDataReductionMode reductionMode) : HyperplaneLattice3D(lattice), BlockDataF2D(1, 1, f->getTargetDim()), _blockDataMemory(new BlockData2D(lattice.getNx(), lattice.getNy(), f->getTargetDim())), _f(std::move(f)), _syncMode(syncMode), _reductionMode(reductionMode) { this->getName() = "planeReduction(" + _f->getName() + ")"; if ( _reductionMode == BlockDataReductionMode::Discrete ) { const CuboidGeometry3D& geometry = _f->getSuperStructure().getCuboidGeometry(); const Hyperplane3D& hyperplane = this->getHyperplane(); const bool spansAxisPlane = hyperplane.isXYPlane() || hyperplane.isXZPlane() || hyperplane.isYZPlane(); // verify axes alignment and spacing of hyperplane parametrization if ( !spansAxisPlane || lattice.getPhysSpacing() != geometry.getMinDeltaR() ) { // hyperplane lattice doesn't describe a trivially discretizable plane OstreamManager clerr(std::cerr, "BlockReduction3D2D"); clerr << "Given hyperplane is not trivially discretizable. " << "Use BlockDataReductionMode::Analytical instead." << std::endl; exit(-1); } } // expose block data fields this->_blockData = *_blockDataMemory; // intialize list of relevant rank local points making up the reduced plane initialize(); // first update of data update(); } template BlockReduction3D2D::BlockReduction3D2D( FunctorPtr>&& f, const Hyperplane3D& hyperplane, BlockDataSyncMode syncMode, BlockDataReductionMode reductionMode) : BlockReduction3D2D( std::forward(f), HyperplaneLattice3D(f->getSuperStructure().getCuboidGeometry(), hyperplane), syncMode, reductionMode) { } template BlockReduction3D2D::BlockReduction3D2D( FunctorPtr>&& f, const Hyperplane3D& hyperplane, int resolution, BlockDataSyncMode syncMode) : BlockReduction3D2D( std::forward(f), HyperplaneLattice3D(f->getSuperStructure().getCuboidGeometry(), hyperplane, resolution), syncMode) { } template BlockReduction3D2D::BlockReduction3D2D( FunctorPtr>&& f, const Vector& origin, const Vector& u, const Vector& v, int resolution, BlockDataSyncMode syncMode) : BlockReduction3D2D( std::forward(f), Hyperplane3D().originAt(origin).spannedBy(u, v), resolution, syncMode) { } template BlockReduction3D2D::BlockReduction3D2D( FunctorPtr>&& f, const Vector& origin, const Vector& normal, int resolution, BlockDataSyncMode syncMode) : BlockReduction3D2D( std::forward(f), Hyperplane3D().originAt(origin).normalTo(normal), resolution, syncMode) { } template BlockReduction3D2D::BlockReduction3D2D( FunctorPtr>&& f, const Vector& normal, int resolution, BlockDataSyncMode syncMode) : BlockReduction3D2D( std::forward(f), Hyperplane3D() .centeredIn(f->getSuperStructure().getCuboidGeometry().getMotherCuboid()) .normalTo(normal), resolution, syncMode) { } template void BlockReduction3D2D::initialize() { const CuboidGeometry3D& geometry = _f->getSuperStructure().getCuboidGeometry(); LoadBalancer& load = _f->getSuperStructure().getLoadBalancer(); _rankLocalSubplane.clear(); for ( int iX = 0; iX < this->getNx(); ++iX ) { for ( int iY = 0; iY < this->getNy(); ++iY ) { const Vector physR = this->getPhysR(iX, iY); // Schedule plane point for storage if its physical position intersects the // mother cuboid and the cuboid of the nearest lattice position is local to // the current rank: int iC; if ( geometry.getC(physR, iC) ) { if ( load.isLocal(iC) ) { _rankLocalSubplane.emplace_back(iX, iY, iC); } } } } } template void BlockReduction3D2D::update() { _f->getSuperStructure().communicate(); #ifdef PARALLEL_MODE_MPI BlockData2D localBlockData(this->getNx(), this->getNy(), _f->getTargetDim()); switch ( _reductionMode ) { case BlockDataReductionMode::Analytical: updateBlockAnalytical(localBlockData); break; case BlockDataReductionMode::Discrete: updateBlockDiscrete(localBlockData); break; } switch ( _syncMode ) { case BlockDataSyncMode::ReduceAndBcast: singleton::mpi().reduce(localBlockData, this->getBlockData(), MPI_SUM); singleton::mpi().bCast(this->getBlockData()); break; case BlockDataSyncMode::ReduceOnly: singleton::mpi().reduce(localBlockData, this->getBlockData(), MPI_SUM); break; case BlockDataSyncMode::None: this->_blockData.swap(localBlockData); break; } #else switch ( _reductionMode ) { case BlockDataReductionMode::Analytical: updateBlockAnalytical(this->_blockData); break; case BlockDataReductionMode::Discrete: updateBlockDiscrete(this->_blockData); break; } #endif } template BlockStructure2D& BlockReduction3D2D::getBlockStructure() { return this->_blockData; } template const std::vector>& BlockReduction3D2D::getRankLocalSubplane() const { return this->_rankLocalSubplane; } } // end namespace olb #endif