This change changes the point-tetIndices-face interpolation function method to take barycentric-tetIndices-face arguments instead. This function is, at present, only used for interpolating Eulerian data to Lagrangian particles. This change prevents an inefficiency in cellPointInterpolation whereby the position of the particle is calculated from it's barycentric coordinates, before immediately being converted back to barycentric coordinates to perform the interpolation.
111 lines
3.1 KiB
C++
111 lines
3.1 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
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/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
inline Type Foam::interpolationCellPointWallModified<Type>::interpolate
|
|
(
|
|
const cellPointWeightWallModified& cpw
|
|
) const
|
|
{
|
|
const barycentric& weights = cpw.weights();
|
|
const triFace& faceVertices = cpw.faceVertices();
|
|
|
|
Type t = this->psi_[cpw.cell()]*weights[0];
|
|
t += this->psip_[faceVertices[0]]*weights[1];
|
|
t += this->psip_[faceVertices[1]]*weights[2];
|
|
t += this->psip_[faceVertices[2]]*weights[3];
|
|
|
|
return t;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
inline Type Foam::interpolationCellPointWallModified<Type>::interpolate
|
|
(
|
|
const vector& position,
|
|
const label celli,
|
|
const label facei
|
|
) const
|
|
{
|
|
return interpolate
|
|
(
|
|
cellPointWeightWallModified
|
|
(
|
|
this->pMesh_,
|
|
position,
|
|
celli,
|
|
facei
|
|
)
|
|
);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
inline Type Foam::interpolationCellPointWallModified<Type>::interpolate
|
|
(
|
|
const barycentric& coordinates,
|
|
const tetIndices& tetIs,
|
|
const label facei
|
|
) const
|
|
{
|
|
if (facei >= 0)
|
|
{
|
|
if (facei != tetIs.face())
|
|
{
|
|
FatalErrorInFunction
|
|
<< "specified face " << facei << " inconsistent with the face "
|
|
<< "stored by tetIndices: " << tetIs.face()
|
|
<< exit(FatalError);
|
|
}
|
|
|
|
const polyBoundaryMesh& bm = this->pMesh_.boundaryMesh();
|
|
label patchi = bm.whichPatch(facei);
|
|
|
|
if (patchi != -1)
|
|
{
|
|
if (isA<wallPolyPatch>(bm[patchi]))
|
|
{
|
|
Type t = this->psi_[tetIs.cell()];
|
|
|
|
return t;
|
|
}
|
|
}
|
|
}
|
|
|
|
// If the wall face selection did not return, then use the normal
|
|
// interpolate method
|
|
|
|
return interpolationCellPoint<Type>::interpolate
|
|
(
|
|
coordinates,
|
|
tetIs,
|
|
facei
|
|
);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|