/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2019-2023 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 .
\*---------------------------------------------------------------------------*/
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
template
void Foam::areaWrite::writeSurface
(
surfaceWriter& writer,
const Field* fieldPtr,
const word& fieldName
)
{
const Field& values = (fieldPtr ? *fieldPtr : Field::null());
fileName outputName = writer.write(fieldName, values);
// Case-local file name with "" to make relocatable
dictionary propsDict;
propsDict.add
(
"file",
time_.relativePath(outputName, true)
);
setProperty(fieldName, propsDict);
}
template
void Foam::areaWrite::performAction
(
surfaceWriter& writer,
const faMesh& areaMesh,
const IOobjectList& objects
)
{
wordList fieldNames;
if (loadFromFiles_)
{
// With syncPar (sorted and parallel-consistent)
fieldNames = objects.names(fieldSelection_, true);
}
else
{
fieldNames = areaMesh.thisDb().names(fieldSelection_);
// Synchronize names
Pstream::combineReduce(fieldNames, ListOps::uniqueEqOp());
Foam::sort(fieldNames); // Consistent order
}
for (const word& fieldName : fieldNames)
{
if (verbose_)
{
Info<< "write: " << fieldName << endl;
}
refPtr tfield;
if (loadFromFiles_)
{
tfield.emplace
(
IOobject
(
fieldName,
time_.timeName(),
areaMesh.thisDb(),
IOobjectOption::MUST_READ,
IOobjectOption::NO_WRITE,
IOobjectOption::NO_REGISTER
),
areaMesh
);
}
else
{
tfield.cref(areaMesh.thisDb().cfindObject(fieldName));
}
writeSurface(writer, tfield.get(), fieldName);
}
}
// ************************************************************************* //