Newer
Older
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2016-2020 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 "surfaceInterpolate.H"
#include "surfaceFields.H"
#include "addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace Foam
Henry Weller
committed
{
namespace functionObjects
defineTypeNameAndDebug(surfaceInterpolate, 0);
addToRunTimeSelectionTable(functionObject, surfaceInterpolate, dictionary);
Henry Weller
committed
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::functionObjects::surfaceInterpolate::surfaceInterpolate
const Time& runTime,
const dictionary& dict
fvMeshFunctionObject(name, runTime, dict),
read(dict);
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
bool Foam::functionObjects::surfaceInterpolate::read
Henry Weller
committed
(
const dictionary& dict
)
fvMeshFunctionObject::read(dict);
dict.readEntry("fields", fieldSet_);
return true;
bool Foam::functionObjects::surfaceInterpolate::execute()
Log << type() << " " << name() << " write:" << nl;
Henry Weller
committed
interpolateFields<scalar>();
interpolateFields<vector>();
interpolateFields<sphericalTensor>();
interpolateFields<symmTensor>();
interpolateFields<tensor>();
Henry Weller
committed
return true;
bool Foam::functionObjects::surfaceInterpolate::write()
Log << " functionObjects::" << type() << " " << name()
<< " writing interpolated surface fields:" << nl;
Henry Weller
committed
Henry Weller
committed
{
const word& fieldName = fieldSet_[i].second();
const regIOobject* ioptr = obr_.findObject<regIOobject>(fieldName);
if (ioptr)
{
Log << " " << fieldName << nl;
}
else
{
WarningInFunction
<< "Unable to find field " << fieldName
<< " in the mesh database" << endl;
}
return true;