- this can help if using std algorithms that return a const reference such as std::min() does.
782 lines
16 KiB
C
782 lines
16 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
Copyright (C) 2016-2019 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 "MeshedSurface.H"
|
|
#include "UnsortedMeshedSurface.H"
|
|
#include "MeshedSurfaceProxy.H"
|
|
#include "Fstream.H"
|
|
#include "Time.H"
|
|
#include "ListOps.H"
|
|
#include "polyBoundaryMesh.H"
|
|
#include "polyMesh.H"
|
|
|
|
// * * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * //
|
|
|
|
template<class Face>
|
|
Foam::wordHashSet Foam::UnsortedMeshedSurface<Face>::readTypes()
|
|
{
|
|
return wordHashSet(*fileExtensionConstructorTablePtr_);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
Foam::wordHashSet Foam::UnsortedMeshedSurface<Face>::writeTypes()
|
|
{
|
|
return wordHashSet(*writefileExtensionMemberFunctionTablePtr_);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
bool Foam::UnsortedMeshedSurface<Face>::canReadType
|
|
(
|
|
const word& ext,
|
|
bool verbose
|
|
)
|
|
{
|
|
return fileFormats::surfaceFormatsCore::checkSupport
|
|
(
|
|
readTypes() | ParentType::readTypes(),
|
|
ext,
|
|
verbose,
|
|
"reading"
|
|
);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
bool Foam::UnsortedMeshedSurface<Face>::canWriteType
|
|
(
|
|
const word& ext,
|
|
bool verbose
|
|
)
|
|
{
|
|
return fileFormats::surfaceFormatsCore::checkSupport
|
|
(
|
|
writeTypes(),
|
|
ext,
|
|
verbose,
|
|
"writing"
|
|
);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
bool Foam::UnsortedMeshedSurface<Face>::canRead
|
|
(
|
|
const fileName& name,
|
|
bool verbose
|
|
)
|
|
{
|
|
word ext = name.ext();
|
|
if (ext == "gz")
|
|
{
|
|
ext = name.lessExt().ext();
|
|
}
|
|
return canReadType(ext, verbose);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::write
|
|
(
|
|
const fileName& name,
|
|
const UnsortedMeshedSurface<Face>& surf,
|
|
const dictionary& options
|
|
)
|
|
{
|
|
write(name, name.ext(), surf, options);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::write
|
|
(
|
|
const fileName& name,
|
|
const word& ext,
|
|
const UnsortedMeshedSurface<Face>& surf,
|
|
const dictionary& options
|
|
)
|
|
{
|
|
if (debug)
|
|
{
|
|
InfoInFunction << "Writing to " << name << endl;
|
|
}
|
|
|
|
auto mfIter = writefileExtensionMemberFunctionTablePtr_->cfind(ext);
|
|
|
|
if (!mfIter.found())
|
|
{
|
|
// No direct writer, delegate to proxy if possible
|
|
const wordHashSet& delegate = ProxyType::writeTypes();
|
|
|
|
if (delegate.found(ext))
|
|
{
|
|
MeshedSurfaceProxy<Face>(surf).write(name, ext, options);
|
|
}
|
|
else
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Unknown file extension " << ext << nl << nl
|
|
<< "Valid types:" << nl
|
|
<< flatOutput((delegate | writeTypes()).sortedToc()) << nl
|
|
<< exit(FatalError);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
mfIter()(name, surf, options);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Face>
|
|
Foam::UnsortedMeshedSurface<Face>::UnsortedMeshedSurface()
|
|
:
|
|
ParentType()
|
|
{}
|
|
|
|
|
|
template<class Face>
|
|
Foam::UnsortedMeshedSurface<Face>::UnsortedMeshedSurface
|
|
(
|
|
const UnsortedMeshedSurface<Face>& surf
|
|
)
|
|
:
|
|
ParentType(surf.points(), surf.surfFaces()), // Copy construct (no zones)
|
|
zoneIds_(surf.zoneIds()),
|
|
zoneToc_(surf.zoneToc())
|
|
{}
|
|
|
|
|
|
template<class Face>
|
|
Foam::UnsortedMeshedSurface<Face>::UnsortedMeshedSurface
|
|
(
|
|
const MeshedSurface<Face>& surf
|
|
)
|
|
:
|
|
ParentType(surf.points(), surf.surfFaces()), // Copy construct (no zones)
|
|
zoneIds_(),
|
|
zoneToc_()
|
|
{
|
|
setZones(surf.surfZones());
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
Foam::UnsortedMeshedSurface<Face>::UnsortedMeshedSurface
|
|
(
|
|
UnsortedMeshedSurface<Face>&& surf
|
|
)
|
|
:
|
|
UnsortedMeshedSurface<Face>()
|
|
{
|
|
transfer(surf);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
Foam::UnsortedMeshedSurface<Face>::UnsortedMeshedSurface
|
|
(
|
|
MeshedSurface<Face>&& surf
|
|
)
|
|
:
|
|
UnsortedMeshedSurface<Face>()
|
|
{
|
|
transfer(surf);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
Foam::UnsortedMeshedSurface<Face>::UnsortedMeshedSurface
|
|
(
|
|
pointField&& pointLst,
|
|
List<Face>&& faceLst,
|
|
List<label>&& zoneIds,
|
|
UList<surfZoneIdentifier>& tocInfo
|
|
)
|
|
:
|
|
ParentType(std::move(pointLst), std::move(faceLst)),
|
|
zoneIds_(std::move(zoneIds)),
|
|
zoneToc_(tocInfo)
|
|
{}
|
|
|
|
|
|
template<class Face>
|
|
Foam::UnsortedMeshedSurface<Face>::UnsortedMeshedSurface
|
|
(
|
|
const fileName& name,
|
|
const word& ext
|
|
)
|
|
:
|
|
UnsortedMeshedSurface<Face>()
|
|
{
|
|
read(name, ext);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
Foam::UnsortedMeshedSurface<Face>::UnsortedMeshedSurface
|
|
(
|
|
const fileName& name
|
|
)
|
|
:
|
|
UnsortedMeshedSurface<Face>()
|
|
{
|
|
read(name);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
Foam::UnsortedMeshedSurface<Face>::UnsortedMeshedSurface
|
|
(
|
|
Istream& is
|
|
)
|
|
:
|
|
UnsortedMeshedSurface<Face>()
|
|
{
|
|
read(is);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
Foam::UnsortedMeshedSurface<Face>::UnsortedMeshedSurface
|
|
(
|
|
const Time& t,
|
|
const word& surfName
|
|
)
|
|
:
|
|
UnsortedMeshedSurface<Face>()
|
|
{
|
|
MeshedSurface<Face> surf(t, surfName);
|
|
transfer(surf);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::setOneZone()
|
|
{
|
|
this->removeZones(); // Parent information is unreliable
|
|
|
|
zoneIds_.resize(size());
|
|
zoneIds_ = 0;
|
|
|
|
word zoneName;
|
|
if (zoneToc_.size())
|
|
{
|
|
zoneName = zoneToc_[0].name();
|
|
}
|
|
if (zoneName.empty())
|
|
{
|
|
zoneName = "zone0";
|
|
}
|
|
|
|
// Assign single default zone
|
|
zoneToc_.resize(1);
|
|
zoneToc_[0] = surfZoneIdentifier(zoneName, 0);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::setZones
|
|
(
|
|
const surfZoneList& zoneLst
|
|
)
|
|
{
|
|
this->removeZones(); // Parent information is unreliable
|
|
|
|
zoneIds_.resize(size());
|
|
zoneToc_.resize(zoneLst.size());
|
|
|
|
forAll(zoneToc_, zonei)
|
|
{
|
|
const surfZone& zone = zoneLst[zonei];
|
|
zoneToc_[zonei] = zone;
|
|
|
|
// Assign sub-zone Ids
|
|
SubList<label>(zoneIds_, zone.size(), zone.start()) = zonei;
|
|
}
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::setZones
|
|
(
|
|
const labelUList& sizes,
|
|
const UList<word>& names
|
|
)
|
|
{
|
|
this->removeZones(); // Parent information is unreliable
|
|
|
|
zoneIds_.resize(size());
|
|
zoneToc_.resize(sizes.size());
|
|
|
|
label start = 0;
|
|
forAll(zoneToc_, zonei)
|
|
{
|
|
zoneToc_[zonei] = surfZoneIdentifier(names[zonei], zonei);
|
|
|
|
// Assign sub-zone Ids
|
|
SubList<label>(zoneIds_, sizes[zonei], start) = zonei;
|
|
|
|
start += sizes[zonei];
|
|
}
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::setZones
|
|
(
|
|
const labelUList& sizes
|
|
)
|
|
{
|
|
this->removeZones(); // Parent information is unreliable
|
|
|
|
zoneIds_.resize(size());
|
|
zoneToc_.resize(sizes.size());
|
|
|
|
label start = 0;
|
|
forAll(zoneToc_, zonei)
|
|
{
|
|
zoneToc_[zonei] = surfZoneIdentifier
|
|
(
|
|
"zone" + ::Foam::name(zonei),
|
|
zonei
|
|
);
|
|
|
|
// Assign sub-zone Ids
|
|
SubList<label>(zoneIds_, sizes[zonei], start) = zonei;
|
|
|
|
start += sizes[zonei];
|
|
}
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::remapFaces
|
|
(
|
|
const labelUList& faceMap
|
|
)
|
|
{
|
|
// Re-assign the zone Ids
|
|
if (faceMap.empty())
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (zoneToc_.empty())
|
|
{
|
|
setOneZone();
|
|
}
|
|
else if (zoneToc_.size() == 1)
|
|
{
|
|
zoneIds_ = 0; // Optimized for single-zone case
|
|
}
|
|
else
|
|
{
|
|
List<label> newZones(faceMap.size());
|
|
|
|
forAll(faceMap, facei)
|
|
{
|
|
newZones[facei] = zoneIds_[faceMap[facei]];
|
|
}
|
|
zoneIds_.transfer(newZones);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Face>
|
|
Foam::Istream& Foam::UnsortedMeshedSurface<Face>::read(Istream& is)
|
|
{
|
|
is >> this->storedZoneIds()
|
|
>> this->storedPoints()
|
|
>> this->storedFaces();
|
|
|
|
is.check(FUNCTION_NAME);
|
|
return is;
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
Foam::Ostream& Foam::UnsortedMeshedSurface<Face>::write(Ostream& os) const
|
|
{
|
|
os << this->zoneIds()
|
|
<< this->points()
|
|
<< this->surfFaces();
|
|
|
|
os.check(FUNCTION_NAME);
|
|
return os;
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::setSize(const label s)
|
|
{
|
|
this->storedFaces().resize(s);
|
|
// if zones extend: set with last zoneId
|
|
zoneIds_.resize(s, zoneToc_.size() - 1);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::clear()
|
|
{
|
|
ParentType::clear();
|
|
zoneIds_.clear();
|
|
zoneToc_.clear();
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
Foam::surfZoneList Foam::UnsortedMeshedSurface<Face>::sortedZones
|
|
(
|
|
labelList& faceMap
|
|
) const
|
|
{
|
|
// supply some zone names
|
|
Map<word> zoneNames;
|
|
forAll(zoneToc_, zonei)
|
|
{
|
|
zoneNames.insert(zonei, zoneToc_[zonei].name());
|
|
}
|
|
|
|
// std::sort() really seems to mix up the order.
|
|
// and std::stable_sort() might take too long / too much memory
|
|
|
|
// Assuming that we have relatively fewer zones compared to the
|
|
// number of items, just do it ourselves
|
|
|
|
// Step 1: get zone sizes and store (origId => zoneI)
|
|
Map<label> lookup;
|
|
for (const label origId : zoneIds_)
|
|
{
|
|
++(lookup(origId, 0));
|
|
}
|
|
|
|
// Step 2: assign start/size (and name) to the newZones
|
|
// re-use the lookup to map (zoneId => zoneI)
|
|
surfZoneList zoneLst(lookup.size());
|
|
label start = 0;
|
|
label zonei = 0;
|
|
forAllIters(lookup, iter)
|
|
{
|
|
const label origId = iter.key();
|
|
|
|
const word zoneName =
|
|
zoneNames.lookup
|
|
(
|
|
origId,
|
|
"zone" + ::Foam::name(zonei) // default name
|
|
);
|
|
|
|
zoneLst[zonei] = surfZone
|
|
(
|
|
zoneName,
|
|
0, // initialize with zero size
|
|
start,
|
|
zonei
|
|
);
|
|
|
|
// increment the start for the next zone
|
|
// and save the (zoneId => zoneI) mapping
|
|
start += iter();
|
|
iter() = zonei++;
|
|
}
|
|
|
|
|
|
// Step 3: build the re-ordering
|
|
faceMap.resize(zoneIds_.size());
|
|
|
|
forAll(zoneIds_, facei)
|
|
{
|
|
const label zonei = lookup[zoneIds_[facei]];
|
|
faceMap[facei] = zoneLst[zonei].start() + zoneLst[zonei].size()++;
|
|
}
|
|
|
|
// With reordered faces registered in faceMap
|
|
return zoneLst;
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
template<class BoolListType>
|
|
Foam::UnsortedMeshedSurface<Face>
|
|
Foam::UnsortedMeshedSurface<Face>::subsetMesh
|
|
(
|
|
const BoolListType& include,
|
|
labelList& pointMap,
|
|
labelList& faceMap
|
|
) const
|
|
{
|
|
const pointField& locPoints = this->localPoints();
|
|
const List<Face>& locFaces = this->localFaces();
|
|
|
|
// Fill pointMap, faceMap
|
|
PatchTools::subsetMap(*this, include, pointMap, faceMap);
|
|
|
|
// Create compact coordinate list and forward mapping array
|
|
pointField newPoints(pointMap.size());
|
|
labelList oldToNew(locPoints.size());
|
|
forAll(pointMap, pointi)
|
|
{
|
|
newPoints[pointi] = locPoints[pointMap[pointi]];
|
|
oldToNew[pointMap[pointi]] = pointi;
|
|
}
|
|
|
|
// Renumber face node labels and compact
|
|
List<Face> newFaces(faceMap.size());
|
|
List<label> newZones(faceMap.size());
|
|
|
|
forAll(faceMap, facei)
|
|
{
|
|
const label origFacei = faceMap[facei];
|
|
newFaces[facei] = Face(locFaces[origFacei]);
|
|
|
|
// Renumber labels for face
|
|
for (label& pointi : newFaces[facei])
|
|
{
|
|
pointi = oldToNew[pointi];
|
|
}
|
|
|
|
newZones[facei] = zoneIds_[origFacei];
|
|
}
|
|
oldToNew.clear();
|
|
|
|
// Retain the same zone toc information
|
|
List<surfZoneIdentifier> subToc(zoneToc_);
|
|
|
|
// Return sub-surface
|
|
return UnsortedMeshedSurface<Face>
|
|
(
|
|
std::move(newPoints),
|
|
std::move(newFaces),
|
|
std::move(newZones),
|
|
std::move(subToc)
|
|
);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
Foam::UnsortedMeshedSurface<Face> Foam::UnsortedMeshedSurface<Face>::subsetMesh
|
|
(
|
|
const labelHashSet& include
|
|
) const
|
|
{
|
|
labelList pointMap, faceMap;
|
|
return subsetMesh(include, pointMap, faceMap);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::swap
|
|
(
|
|
UnsortedMeshedSurface<Face>& surf
|
|
)
|
|
{
|
|
if (this == &surf)
|
|
{
|
|
return; // Self-swap is a no-op
|
|
}
|
|
|
|
this->clearOut(); // Topology changes
|
|
surf.clearOut(); // Topology changes
|
|
|
|
this->storedPoints().swap(surf.storedPoints());
|
|
this->storedFaces().swap(surf.storedFaces());
|
|
zoneIds_.swap(surf.zoneIds_);
|
|
zoneToc_.swap(surf.zoneToc_);
|
|
|
|
this->storedZones().clear(); // Should not be there anyhow
|
|
surf.storedZones().clear();
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::transfer
|
|
(
|
|
UnsortedMeshedSurface<Face>& surf
|
|
)
|
|
{
|
|
if (this == &surf)
|
|
{
|
|
return; // Self-assignment is a no-op
|
|
}
|
|
|
|
this->clear();
|
|
|
|
this->storedPoints().transfer(surf.storedPoints());
|
|
this->storedFaces().transfer(surf.storedFaces());
|
|
zoneIds_.transfer(surf.zoneIds_);
|
|
zoneToc_.transfer(surf.zoneToc_);
|
|
|
|
surf.clear();
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::transfer
|
|
(
|
|
MeshedSurface<Face>& surf
|
|
)
|
|
{
|
|
surfZoneList zoneInfo(surf.surfZones());
|
|
ParentType::transfer(surf);
|
|
|
|
setZones(zoneInfo);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
Foam::autoPtr<Foam::labelList>
|
|
Foam::UnsortedMeshedSurface<Face>::releaseZoneIds()
|
|
{
|
|
return autoPtr<labelList>::New(this->storedZoneIds());
|
|
}
|
|
|
|
|
|
// Read from file, determine format from extension
|
|
template<class Face>
|
|
bool Foam::UnsortedMeshedSurface<Face>::read(const fileName& name)
|
|
{
|
|
const word ext(name.ext());
|
|
if (ext == "gz")
|
|
{
|
|
fileName unzipName = name.lessExt();
|
|
return read(unzipName, unzipName.ext());
|
|
}
|
|
|
|
return read(name, ext);
|
|
}
|
|
|
|
|
|
// Read from file in given format
|
|
template<class Face>
|
|
bool Foam::UnsortedMeshedSurface<Face>::read
|
|
(
|
|
const fileName& name,
|
|
const word& ext
|
|
)
|
|
{
|
|
clear();
|
|
|
|
// read via use selector mechanism
|
|
transfer(New(name, ext)());
|
|
return true;
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::write
|
|
(
|
|
const Time& t,
|
|
const word& surfName
|
|
) const
|
|
{
|
|
MeshedSurfaceProxy<Face>(*this).write(t, surfName);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::operator=
|
|
(
|
|
const UnsortedMeshedSurface<Face>& surf
|
|
)
|
|
{
|
|
clear();
|
|
|
|
this->storedPoints() = surf.points();
|
|
this->storedFaces() = surf.surfFaces();
|
|
zoneIds_ = surf.zoneIds_;
|
|
zoneToc_ = surf.zoneToc_;
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::UnsortedMeshedSurface<Face>::operator=
|
|
(
|
|
UnsortedMeshedSurface<Face>&& surf
|
|
)
|
|
{
|
|
transfer();
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
Foam::UnsortedMeshedSurface<Face>::operator
|
|
Foam::MeshedSurfaceProxy<Face>() const
|
|
{
|
|
labelList faceMap;
|
|
List<surfZone> zoneLst = this->sortedZones(faceMap);
|
|
|
|
return MeshedSurfaceProxy<Face>
|
|
(
|
|
this->points(),
|
|
this->surfFaces(),
|
|
zoneLst,
|
|
faceMap
|
|
);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
|
|
|
|
template<class Face>
|
|
Foam::Istream& Foam::operator>>
|
|
(
|
|
Istream& is,
|
|
UnsortedMeshedSurface<Face>& surf
|
|
)
|
|
{
|
|
return surf.read(is);
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
Foam::Ostream& Foam::operator<<
|
|
(
|
|
Ostream& os,
|
|
const UnsortedMeshedSurface<Face>& surf
|
|
)
|
|
{
|
|
return surf.write(os);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#include "UnsortedMeshedSurfaceNew.C"
|
|
|
|
// ************************************************************************* //
|