openfoam/applications/utilities/postProcessing/dataConversion/foamToVTK/readFields.C
2019-10-31 14:48:44 +00:00

172 lines
4.1 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2016-2018 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/>.
\*---------------------------------------------------------------------------*/
// * * * * * * * * * * * * * * * Global Functions * * * * * * * * * * * * * //
template<class GeoField>
Foam::tmp<GeoField> Foam::getField
(
const IOobject* io,
const typename GeoField::Mesh& mesh,
const bool syncPar
)
{
if (io)
{
return tmp<GeoField>::New(*io, mesh);
}
return nullptr;
}
template<class GeoField>
Foam::tmp<GeoField> Foam::getField
(
const IOobject* io,
const fvMeshSubsetProxy& proxy,
const bool syncPar
)
{
return
proxy.interpolate
(
getField<GeoField>(io, proxy.baseMesh(), syncPar)
);
}
template<class GeoField>
Foam::tmp<GeoField> Foam::getField
(
const typename GeoField::Mesh& mesh,
const IOobjectList& objects,
const word& fieldName,
const bool syncPar
)
{
// Can do something with syncPar on failure ...
return getField<GeoField>(objects.findObject(fieldName), mesh, syncPar);
}
template<class GeoField>
Foam::tmp<GeoField> Foam::getField
(
const fvMeshSubsetProxy& proxy,
const IOobjectList& objects,
const word& fieldName,
const bool syncPar
)
{
// Can do something with syncPar on failure ...
return getField<GeoField>(objects.findObject(fieldName), proxy, syncPar);
}
template<class GeoField>
Foam::PtrList<const GeoField> Foam::readFields
(
const typename GeoField::Mesh& mesh,
const IOobjectList& objects,
const wordRes& selection
)
{
const bool syncPar = true;
// Available fields of type GeoField, sorted order
const wordList fieldNames =
(
selection.empty()
? objects.sortedNames<GeoField>()
: objects.sortedNames<GeoField>(selection)
);
// Construct the fields
PtrList<const GeoField> fields(fieldNames.size());
label nFields = 0;
for (const word& fieldName : fieldNames)
{
auto tfield =
getField<GeoField>(mesh, objects, fieldName, syncPar);
if (tfield.valid())
{
fields.set(nFields++, tfield.ptr());
}
}
fields.resize(nFields);
return fields;
}
template<class GeoField>
Foam::PtrList<const GeoField> Foam::readFields
(
const fvMeshSubsetProxy& proxy,
const IOobjectList& objects,
const wordRes& selection
)
{
const bool syncPar = true;
// Available fields of type GeoField, sorted order
const wordList fieldNames =
(
selection.empty()
? objects.sortedNames<GeoField>()
: objects.sortedNames<GeoField>(selection)
);
// Construct the fields
PtrList<const GeoField> fields(fieldNames.size());
label nFields = 0;
for (const word& fieldName : fieldNames)
{
auto tfield =
getField<GeoField>(proxy, objects, fieldName, syncPar);
if (tfield.valid())
{
fields.set(nFields++, tfield.ptr());
}
}
fields.resize(nFields);
return fields;
}
// ************************************************************************* //