Files
openfoam/src/OpenFOAM/interpolations/patchToPatchInterpolation/PatchToPatchInterpolation.C
Mark Olesen 5ec435aca3 ENH: base classes for wave algorithms (manage non-templated parts)
ENH: use DynamicList instead of List + size for point wave

- consistent with previous updates for the other algorithms

STYLE: unique_ptr instead of raw pointer in wave algorithms
2022-11-24 12:21:01 +00:00

184 lines
4.6 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
Copyright (C) 2022 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM 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 3 of the License, or
(at your option) any later version.
OpenFOAM 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 OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
\*---------------------------------------------------------------------------*/
#include "PatchToPatchInterpolation.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
template<class FromPatch, class ToPatch>
const labelList&
PatchToPatchInterpolation<FromPatch, ToPatch>::pointAddr() const
{
if (!pointAddressingPtr_)
{
calcPointAddressing();
}
return *pointAddressingPtr_;
}
template<class FromPatch, class ToPatch>
const FieldField<Field, scalar>&
PatchToPatchInterpolation<FromPatch, ToPatch>::pointWeights() const
{
if (!pointWeightsPtr_)
{
calcPointAddressing();
}
return *pointWeightsPtr_;
}
template<class FromPatch, class ToPatch>
const labelList&
PatchToPatchInterpolation<FromPatch, ToPatch>::faceAddr() const
{
if (!faceAddressingPtr_)
{
calcFaceAddressing();
}
return *faceAddressingPtr_;
}
template<class FromPatch, class ToPatch>
const FieldField<Field, scalar>&
PatchToPatchInterpolation<FromPatch, ToPatch>::faceWeights() const
{
if (!faceWeightsPtr_)
{
calcFaceAddressing();
}
return *faceWeightsPtr_;
}
template<class FromPatch, class ToPatch>
void PatchToPatchInterpolation<FromPatch, ToPatch>::clearOut()
{
pointAddressingPtr_.reset(nullptr);
pointWeightsPtr_.reset(nullptr);
pointDistancePtr_.reset(nullptr);
faceAddressingPtr_.reset(nullptr);
faceWeightsPtr_.reset(nullptr);
faceDistancePtr_.reset(nullptr);
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template<class FromPatch, class ToPatch>
PatchToPatchInterpolation<FromPatch, ToPatch>::PatchToPatchInterpolation
(
const FromPatch& fromPatch,
const ToPatch& toPatch,
intersection::algorithm alg,
const intersection::direction dir
)
:
fromPatch_(fromPatch),
toPatch_(toPatch),
alg_(alg),
dir_(dir),
pointAddressingPtr_(nullptr),
pointWeightsPtr_(nullptr),
pointDistancePtr_(nullptr),
faceAddressingPtr_(nullptr),
faceWeightsPtr_(nullptr),
faceDistancePtr_(nullptr)
{}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
template<class FromPatch, class ToPatch>
PatchToPatchInterpolation<FromPatch, ToPatch>::~PatchToPatchInterpolation()
{
clearOut();
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template<class FromPatch, class ToPatch>
const scalarField&
PatchToPatchInterpolation<FromPatch, ToPatch>
::pointDistanceToIntersection() const
{
if (!pointDistancePtr_)
{
calcPointAddressing();
}
return *pointDistancePtr_;
}
template<class FromPatch, class ToPatch>
const scalarField&
PatchToPatchInterpolation<FromPatch, ToPatch>
::faceDistanceToIntersection() const
{
if (!faceDistancePtr_)
{
calcFaceAddressing();
}
return *faceDistancePtr_;
}
template<class FromPatch, class ToPatch>
bool PatchToPatchInterpolation<FromPatch, ToPatch>::movePoints()
{
clearOut();
return true;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "CalcPatchToPatchWeights.C"
#include "PatchToPatchInterpolate.C"
// ************************************************************************* //