Files
openfoam/src/functionObjects/utilities/vtkWrite/vtkWriteUpdate.C
Mark Olesen 7f062a8f5e ENH: return plain List instead of shrinking the DynamicList
Using 'return List<T>(std::move(dynList))' for transfer of content
  (with implicit shrinking) into a plain List, and leave copy elision
  to do the rest. The implicit transfer (move construct List from
  DynamicList) will normally invoke resize (new/delete and moving
  elements).

  With 'return dynList.shrink()', it will first invoke an internal
  resize (new/delete and moving elements), followed by a copy
  construct as a plain list.

STYLE: avoid implicit cast to 'const List&' in constructors
2025-04-08 11:26:11 +02:00

209 lines
5.1 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2018-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 <http://www.gnu.org/licenses/>.
\*---------------------------------------------------------------------------*/
#include "vtkWrite.H"
#include "cellBitSet.H"
#include "processorPolyPatch.H"
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
bool Foam::functionObjects::vtkWrite::updateSubset
(
fvMeshSubset& subsetter
) const
{
if (selection_.empty())
{
return false;
}
bitSet selectedCells
(
cellBitSet::select(subsetter.baseMesh(), selection_)
);
subsetter.reset(selectedCells);
return true;
}
Foam::labelList Foam::functionObjects::vtkWrite::getSelectedPatches
(
const polyBoundaryMesh& patches
) const
{
DynamicList<label> patchIDs(patches.size());
wordRes::filter patchFilter(selectPatches_, blockPatches_);
for (const polyPatch& pp : patches)
{
if (isType<emptyPolyPatch>(pp))
{
continue;
}
else if (isA<processorPolyPatch>(pp))
{
break; // No processor patches
}
if (patchFilter(pp.name()))
{
patchIDs.append(pp.index());
}
}
return labelList(std::move(patchIDs));
}
bool Foam::functionObjects::vtkWrite::update()
{
if
(
meshState_ == polyMesh::UNCHANGED
&& (meshes_.size() == meshSubsets_.size())
&& (meshes_.size() == vtuMappings_.size())
)
{
return false;
}
meshSubsets_.resize(meshes_.size());
vtuMappings_.resize(meshes_.size());
label regioni = 0;
for (const fvMesh& mesh : meshes_)
{
if (meshSubsets_.set(regioni))
{
meshSubsets_[regioni].clear();
}
else
{
// Mesh subsetting, or pass through
meshSubsets_.set(regioni, new fvMeshSubset(mesh));
}
if (vtuMappings_.set(regioni))
{
// Trigger change for vtk cells too
vtuMappings_[regioni].clear();
}
else
{
// VTU sizing and decomposition information
vtuMappings_.set
(
regioni,
new vtk::vtuCells(writeOpts_, decompose_)
);
}
++regioni;
}
regioni = 0;
for (auto& subsetter : meshSubsets_)
{
updateSubset(subsetter);
vtuMappings_[regioni].reset(subsetter.mesh());
++regioni;
}
meshState_ = polyMesh::UNCHANGED;
return true;
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
bool Foam::functionObjects::vtkWrite::readSelection(const dictionary& dict)
{
meshSubsets_.clear();
vtuMappings_.clear();
meshes_.clear();
meshState_ = polyMesh::TOPO_CHANGE;
selectRegions_.clear();
dict.readIfPresent("regions", selectRegions_);
if (selectRegions_.empty())
{
selectRegions_.resize(1);
selectRegions_.front() =
dict.getOrDefault<word>("region", polyMesh::defaultRegion);
}
// Restrict to specified meshes
meshes_ = time_.csorted<fvMesh>(selectRegions_);
if (meshes_.empty())
{
WarningInFunction
<< "No mesh regions selected for function object "
<< name() << nl;
}
selectPatches_.clear();
dict.readIfPresent("patches", selectPatches_);
blockPatches_.clear();
dict.readIfPresent("excludePatches", blockPatches_);
selectFields_.clear();
dict.readEntry("fields", selectFields_);
blockFields_.clear();
dict.readIfPresent("excludeFields", blockFields_);
// Actions to define selection
selection_ = dict.subOrEmptyDict("selection");
return true;
}
void Foam::functionObjects::vtkWrite::updateMesh(const mapPolyMesh&)
{
meshState_ = polyMesh::TOPO_CHANGE;
}
void Foam::functionObjects::vtkWrite::movePoints(const polyMesh&)
{
// Only move to worse states
if (meshState_ == polyMesh::UNCHANGED)
{
meshState_ = polyMesh::POINTS_MOVED;
}
}
// ************************************************************************* //