dotInterpolate interpolates the field and "dots" the resulting face-values with the vector field provided which removes the need to create a temporary field for the interpolate. This reduces the peak storage of OpenFOAM caused by the divergence of the gradient of vector fields, improves memory management and under some conditions decreases run-time. This development is based on a patch contributed by Paul Edwards, Intel.
103 lines
3.7 KiB
C
103 lines
3.7 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 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/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "surfaceInterpolationScheme.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#define makeBaseSurfaceInterpolationScheme(Type) \
|
|
\
|
|
defineNamedTemplateTypeNameAndDebug(surfaceInterpolationScheme<Type>, 0); \
|
|
\
|
|
defineTemplateRunTimeSelectionTable \
|
|
( \
|
|
surfaceInterpolationScheme<Type>, \
|
|
Mesh \
|
|
); \
|
|
\
|
|
defineTemplateRunTimeSelectionTable \
|
|
( \
|
|
surfaceInterpolationScheme<Type>, \
|
|
MeshFlux \
|
|
);
|
|
|
|
makeBaseSurfaceInterpolationScheme(scalar)
|
|
makeBaseSurfaceInterpolationScheme(vector)
|
|
makeBaseSurfaceInterpolationScheme(sphericalTensor)
|
|
makeBaseSurfaceInterpolationScheme(symmTensor)
|
|
makeBaseSurfaceInterpolationScheme(tensor)
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
template<>
|
|
Foam::tmp
|
|
<
|
|
Foam::GeometricField
|
|
<
|
|
typename Foam::innerProduct<Foam::vector, Foam::scalar>::type,
|
|
Foam::fvsPatchField,
|
|
Foam::surfaceMesh
|
|
>
|
|
>
|
|
Foam::surfaceInterpolationScheme<Foam::scalar>::dotInterpolate
|
|
(
|
|
const surfaceVectorField& Sf,
|
|
const GeometricField<scalar, fvPatchField, volMesh>&
|
|
) const
|
|
{
|
|
NotImplemented;
|
|
|
|
return
|
|
tmp
|
|
<
|
|
GeometricField
|
|
<
|
|
typename innerProduct<vector, scalar>::type,
|
|
fvsPatchField,
|
|
surfaceMesh
|
|
>
|
|
>
|
|
(
|
|
GeometricField
|
|
<
|
|
typename innerProduct<vector, scalar>::type,
|
|
fvsPatchField,
|
|
surfaceMesh
|
|
>::null()
|
|
);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|