/* This file is part of the OpenLB library
*
* Copyright (C) 2012-2017 Lukas Baron, Tim Dornieden, Mathias J. Krause,
* Albert Mink, 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 SUPER_CALC_F_3D_HH
#define SUPER_CALC_F_3D_HH
#include "superCalcF3D.h"
#include "blockCalcF3D.h"
#include "superConst3D.h"
#include "core/olbDebug.h"
namespace olb {
template class F>
SuperCalcF3D::SuperCalcF3D(FunctorPtr>&& f,
FunctorPtr>&& g)
: SuperF3D(
f->getSuperStructure(),
f->getTargetDim() > g->getTargetDim() ? f->getTargetDim() : g->getTargetDim()),
_f(std::move(f)),
_g(std::move(g))
{
OLB_ASSERT(
_f->getTargetDim() == _g->getTargetDim() || _f->getTargetDim() == 1 || _g->getTargetDim() == 1,
"Componentwise operation must be well defined.");
this->getName() = "(" + _f->getName() + F::symbol + _g->getName() + ")";
std::swap(_f->_ptrCalcC, this->_ptrCalcC);
LoadBalancer& load = _f->getSuperStructure().getLoadBalancer();
if ( _f->getBlockFSize() == load.size() ) {
if ( _g->getBlockFSize() == load.size() ) {
// both functors expose the correct count of block level functors
for (int iC = 0; iC < load.size(); ++iC) {
this->_blockF.emplace_back(
new BlockCalcF3D(_f->getBlockF(iC), _g->getBlockF(iC))
);
}
}
else {
// operate on super functor `g` and block level functors provided by `f`
for (int iC = 0; iC < load.size(); ++iC) {
this->_blockF.emplace_back(
new BlockCalcF3D(_f->getBlockF(iC), *g, load.glob(iC))
);
}
}
}
else if ( _g->getBlockFSize() == load.size() ) {
// operate on block level functors provided by `f` and super functor `g`
for (int iC = 0; iC < load.size(); ++iC) {
this->_blockF.emplace_back(
new BlockCalcF3D(*f, load.glob(iC), _g->getBlockF(iC))
);
}
}
}
template class F>
SuperCalcF3D::SuperCalcF3D(W scalar, FunctorPtr>&& g)
: SuperCalcF3D(
std::unique_ptr>(new SuperConst3D(g->getSuperStructure(), scalar)),
std::forward(g))
{ }
template class F>
SuperCalcF3D::SuperCalcF3D(FunctorPtr>&& f, W scalar)
: SuperCalcF3D(
std::forward(f),
std::unique_ptr>(new SuperConst3D(f->getSuperStructure(), scalar)))
{ }
template class F>
bool SuperCalcF3D::operator()(W output[], const int input[])
{
if ( _f->getTargetDim() == 1 || _g->getTargetDim() == 1 ) {
// scalar operation
W scalar;
if ( _f->getTargetDim() == 1 ) {
// apply the scalar f to possibly multidimensional g
_f(&scalar, input);
_g(output, input);
for (int i = 0; i < this->getTargetDim(); i++) {
output[i] = F()(scalar, output[i]);
}
}
else {
// apply scalar g to possibly multidimensional f
_f(output, input);
_g(&scalar, input);
for (int i = 0; i < this->getTargetDim(); i++) {
output[i] = F()(output[i], scalar);
}
}
}
else {
// componentwise operation on equidimensional functors
W* outputF = output;
W outputG[this->getTargetDim()];
_f(outputF, input);
_g(outputG, input);
for (int i = 0; i < this->getTargetDim(); i++) {
output[i] = F()(outputF[i], outputG[i]);
}
}
return true;
}
template
std::shared_ptr> operator+(std::shared_ptr> lhs, std::shared_ptr> rhs)
{
return std::shared_ptr>(
new SuperCalcPlus3D(std::move(lhs), std::move(rhs)));
}
template
std::shared_ptr> operator+(std::shared_ptr> lhs, W rhs)
{
return std::shared_ptr>(
new SuperCalcPlus3D(std::move(lhs), rhs));
}
template
std::shared_ptr> operator+(W lhs, std::shared_ptr> rhs)
{
return std::shared_ptr>(
new SuperCalcPlus3D(lhs, std::move(rhs)));
}
template
std::shared_ptr> operator-(std::shared_ptr> lhs, std::shared_ptr> rhs)
{
return std::shared_ptr>(
new SuperCalcMinus3D(std::move(lhs), std::move(rhs)));
}
template
std::shared_ptr> operator-(std::shared_ptr> lhs, W rhs)
{
return std::shared_ptr>(
new SuperCalcMinus3D(std::move(lhs), rhs));
}
template
std::shared_ptr> operator-(W lhs, std::shared_ptr> rhs)
{
return std::shared_ptr>(
new SuperCalcMinus3D(lhs, std::move(rhs)));
}
template
std::shared_ptr> operator*(std::shared_ptr> lhs, std::shared_ptr> rhs)
{
return std::shared_ptr>(
new SuperCalcMultiplication3D(std::move(lhs), std::move(rhs)));
}
template
std::shared_ptr> operator*(std::shared_ptr> lhs, W rhs)
{
return std::shared_ptr>(
new SuperCalcMultiplication3D(std::move(lhs), rhs));
}
template
std::shared_ptr> operator*(W lhs, std::shared_ptr> rhs)
{
return std::shared_ptr>(
new SuperCalcMultiplication3D(lhs, std::move(rhs)));
}
template
std::shared_ptr> operator/(std::shared_ptr> lhs, std::shared_ptr> rhs)
{
return std::shared_ptr>(
new SuperCalcDivision3D(std::move(lhs), std::move(rhs)));
}
template
std::shared_ptr> operator/(std::shared_ptr> lhs, W rhs)
{
return std::shared_ptr>(
new SuperCalcDivision3D(std::move(lhs), rhs));
}
template
std::shared_ptr> operator/(W lhs, std::shared_ptr> rhs)
{
return std::shared_ptr>(
new SuperCalcDivision3D(lhs, std::move(rhs)));
}
template
SuperF3D& SuperF3D::operator+(SuperF3D& rhs)
{
auto tmp = std::make_shared< SuperCalcPlus3D >(*this,rhs);
this->_ptrCalcC = tmp;
return *tmp;
}
template
SuperF3D& SuperF3D::operator-(SuperF3D& rhs)
{
auto tmp = std::make_shared< SuperCalcMinus3D >(*this,rhs);
this->_ptrCalcC = tmp;
return *tmp;
}
template
SuperF3D& SuperF3D::operator*(SuperF3D& rhs)
{
auto tmp = std::make_shared< SuperCalcMultiplication3D >(*this,rhs);
this->_ptrCalcC = tmp;
return *tmp;
}
template
SuperF3D& SuperF3D::operator/(SuperF3D& rhs)
{
auto tmp = std::make_shared< SuperCalcDivision3D >(*this,rhs);
this->_ptrCalcC = tmp;
return *tmp;
}
} // end namespace olb
#endif