openfoam/src/functionObjects/utilities/areaWrite/areaWrite.C
Mark Olesen 8bd6568d05 ENH: added areaWrite function object (#1237)
- write finiteArea meshes and fields to standard surface output
  formats (Ensight, VTK, etc).
2019-03-13 19:44:51 +01:00

397 lines
9.2 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2019 OpenCFD Ltd.
\\/ 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 "areaWrite.H"
#include "polySurface.H"
#include "fvMesh.H"
#include "mapPolyMesh.H"
#include "areaFields.H"
#include "HashOps.H"
#include "Time.H"
#include "UIndirectList.H"
#include "addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace Foam
{
defineTypeNameAndDebug(areaWrite, 0);
addToRunTimeSelectionTable
(
functionObject,
areaWrite,
dictionary
);
}
Foam::scalar Foam::areaWrite::mergeTol_ = 1e-10;
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::areaWrite::areaWrite
(
const word& name,
const Time& runTime,
const dictionary& dict
)
:
functionObjects::fvMeshFunctionObject(name, runTime, dict),
loadFromFiles_(false),
verbose_(false),
outputPath_
(
time_.globalPath()/functionObject::outputPrefix/name
),
selectAreas_(),
fieldSelection_(),
meshes_(),
surfaces_(nullptr),
writers_()
{
outputPath_.clean(); // Remove unneeded ".."
read(dict);
}
Foam::areaWrite::areaWrite
(
const word& name,
const objectRegistry& obr,
const dictionary& dict,
const bool loadFromFiles
)
:
functionObjects::fvMeshFunctionObject(name, obr, dict),
loadFromFiles_(loadFromFiles),
verbose_(false),
outputPath_
(
time_.globalPath()/functionObject::outputPrefix/name
),
selectAreas_(),
fieldSelection_(),
meshes_(),
surfaces_(nullptr),
writers_()
{
outputPath_.clean(); // Remove unneeded ".."
read(dict);
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
void Foam::areaWrite::verbose(const bool verbosity)
{
verbose_ = verbosity;
}
bool Foam::areaWrite::read(const dictionary& dict)
{
fvMeshFunctionObject::read(dict);
writers_.clear();
selectAreas_.clear();
fieldSelection_.clear();
surfaces_.reset
(
new objectRegistry
(
IOobject
(
"::areaWrite::",
obr_.time().constant(),
obr_,
IOobject::NO_READ,
IOobject::NO_WRITE,
false
)
)
);
verbose_ = dict.lookupOrDefault("verbose", false);
// All possible area meshes for the given fvMesh region
meshes_ = obr().lookupClass<faMesh>();
dict.readIfPresent("areas", selectAreas_);
if (selectAreas_.empty())
{
word areaName;
if (!dict.readIfPresent("area", areaName))
{
wordList available = obr().sortedNames<faMesh>();
if (available.size())
{
areaName = available.first();
}
}
if (!areaName.empty())
{
selectAreas_.resize(1);
selectAreas_.first() = areaName;
}
}
// Restrict to specified meshes
meshes_.filterKeys(selectAreas_);
dict.readEntry("fields", fieldSelection_);
fieldSelection_.uniq();
// Surface writer type and format options
const word writerType = dict.get<word>("surfaceFormat");
const dictionary writerOptions
(
dict.subOrEmptyDict("formatOptions").subOrEmptyDict(writerType)
);
for (const word& areaName : meshes_.keys())
{
// Define surface writer, but do NOT yet attach a surface
auto surfWriter = surfaceWriter::New(writerType, writerOptions);
// Use outputDir/TIME/surface-name
surfWriter->useTimeDir() = true;
surfWriter->verbose() = verbose_;
writers_.set(areaName, surfWriter);
}
// Ensure all surfaces and merge information are expired
expire();
return true;
}
bool Foam::areaWrite::execute()
{
return true;
}
bool Foam::areaWrite::write()
{
// Just needed for warnings
wordList allFields;
HashTable<wordHashSet> selected;
DynamicList<label> missed(fieldSelection_.size());
for (const word& areaName : meshes_.sortedToc())
{
const faMesh& areaMesh = *meshes_[areaName];
polySurface* surfptr = surfaces_->getObjectPtr<polySurface>(areaName);
if (!surfptr)
{
// Construct null and add to registry (owned by registry)
surfptr = new polySurface(areaName, *surfaces_, true);
}
pointField pts(areaMesh.patch().localPoints());
faceList fcs(areaMesh.patch().localFaces());
// Copy in geometry
surfptr->transfer(std::move(pts), std::move(fcs));
surfaceWriter& outWriter = *writers_[areaName];
if (outWriter.needsUpdate())
{
outWriter.setSurface(*surfptr);
}
// Determine the per-surface number of fields
// Only seems to be needed for VTK legacy
selected.clear();
const IOobjectList objects(areaMesh.thisDb(), obr_.time().timeName());
if (loadFromFiles_)
{
allFields = objects.names();
selected = objects.classes(fieldSelection_);
}
else
{
// Check currently available fields
allFields = areaMesh.thisDb().names();
selected = areaMesh.thisDb().classes(fieldSelection_);
}
if (Pstream::parRun())
{
Pstream::mapCombineGather(selected, HashSetOps::plusEqOp<word>());
Pstream::mapCombineScatter(selected);
}
missed.clear();
// Detect missing fields
forAll(fieldSelection_, i)
{
if (findStrings(fieldSelection_[i], allFields).empty())
{
missed.append(i);
}
}
if (missed.size())
{
WarningInFunction
<< nl
<< "Cannot find "
<< (loadFromFiles_ ? "field file" : "registered field")
<< " matching "
<< UIndirectList<wordRe>(fieldSelection_, missed) << endl;
}
// Currently only support area field types
label nAreaFields = 0;
forAllConstIters(selected, iter)
{
const word& clsName = iter.key();
const label n = iter.val().size();
if (fieldTypes::area.found(clsName))
{
nAreaFields += n;
}
}
// Propagate field counts (per surface)
outWriter.nFields() = nAreaFields;
// Begin writing
outWriter.open(outputPath_/areaName);
outWriter.beginTime(obr_.time());
// Write fields
performAction<areaScalarField>(outWriter, areaMesh, objects);
performAction<areaVectorField>(outWriter, areaMesh, objects);
performAction<areaSphericalTensorField>(outWriter, areaMesh, objects);
performAction<areaSymmTensorField>(outWriter, areaMesh, objects);
performAction<areaTensorField>(outWriter, areaMesh, objects);
// Finish this time step
// Write geometry if no fields were written so that we still
// can have something to look at
if (!outWriter.wroteData())
{
outWriter.write();
}
outWriter.endTime();
}
return true;
}
void Foam::areaWrite::expire()
{
surfaces_->clear();
// Dimension as fraction of mesh bounding box
const scalar mergeDim = mergeTol_ * mesh_.bounds().mag();
forAllIters(writers_, iter)
{
surfaceWriter& writer = *(iter.val());
writer.expire();
writer.mergeDim() = mergeDim;
}
}
void Foam::areaWrite::updateMesh(const mapPolyMesh& mpm)
{
if (&mpm.mesh() == &mesh_)
{
expire();
}
}
void Foam::areaWrite::movePoints(const polyMesh& mesh)
{
if (&mesh == &mesh_)
{
expire();
}
}
void Foam::areaWrite::readUpdate(const polyMesh::readUpdateState state)
{
if (state != polyMesh::UNCHANGED)
{
expire();
}
}
Foam::scalar Foam::areaWrite::mergeTol()
{
return mergeTol_;
}
Foam::scalar Foam::areaWrite::mergeTol(const scalar tol)
{
const scalar prev(mergeTol_);
mergeTol_ = tol;
return prev;
}
// ************************************************************************* //