/*---------------------------------------------------------------------------*\
========= |
\\ / 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 .
\*---------------------------------------------------------------------------*/
// * * * * * * * * * * * * * * * Global Functions * * * * * * * * * * * * * //
template
Foam::tmp Foam::getField
(
const IOobject* io,
const typename GeoField::Mesh& mesh,
const bool syncPar
)
{
if (io)
{
return tmp::New(*io, mesh);
}
return nullptr;
}
template
Foam::tmp Foam::getField
(
const IOobject* io,
const fvMeshSubsetProxy& proxy,
const bool syncPar
)
{
return
proxy.interpolate
(
getField(io, proxy.baseMesh(), syncPar)
);
}
template
Foam::tmp 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(objects.findObject(fieldName), mesh, syncPar);
}
template
Foam::tmp Foam::getField
(
const fvMeshSubsetProxy& proxy,
const IOobjectList& objects,
const word& fieldName,
const bool syncPar
)
{
// Can do something with syncPar on failure ...
return getField(objects.findObject(fieldName), proxy, syncPar);
}
template
Foam::PtrList 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()
: objects.sortedNames(selection)
);
// Construct the fields
PtrList fields(fieldNames.size());
label nFields = 0;
for (const word& fieldName : fieldNames)
{
auto tfield =
getField(mesh, objects, fieldName, syncPar);
if (tfield.valid())
{
fields.set(nFields++, tfield.ptr());
}
}
fields.resize(nFields);
return fields;
}
template
Foam::PtrList 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()
: objects.sortedNames(selection)
);
// Construct the fields
PtrList fields(fieldNames.size());
label nFields = 0;
for (const word& fieldName : fieldNames)
{
auto tfield =
getField(proxy, objects, fieldName, syncPar);
if (tfield.valid())
{
fields.set(nFields++, tfield.ptr());
}
}
fields.resize(nFields);
return fields;
}
// ************************************************************************* //