mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: drop surface extraction from foamToStarMesh - retain surfZone names when writing surfaces - remove surface extraction/writing from meshWriter since it now duplicates what the meshedSurface class can do.
238 lines
6.2 KiB
C
238 lines
6.2 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2010 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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "TRIsurfaceFormat.H"
|
|
#include "ListOps.H"
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
template<class Face>
|
|
inline void Foam::fileFormats::TRIsurfaceFormat<Face>::writeShell
|
|
(
|
|
Ostream& os,
|
|
const pointField& pointLst,
|
|
const Face& f,
|
|
const label zoneI
|
|
)
|
|
{
|
|
// simple triangulation about f[0].
|
|
// better triangulation should have been done before
|
|
const point& p0 = pointLst[f[0]];
|
|
for (label fp1 = 1; fp1 < f.size() - 1; ++fp1)
|
|
{
|
|
label fp2 = f.fcIndex(fp1);
|
|
|
|
const point& p1 = pointLst[f[fp1]];
|
|
const point& p2 = pointLst[f[fp2]];
|
|
|
|
os << p0.x() << ' ' << p0.y() << ' ' << p0.z() << ' '
|
|
<< p1.x() << ' ' << p1.y() << ' ' << p1.z() << ' '
|
|
<< p2.x() << ' ' << p2.y() << ' ' << p2.z() << ' '
|
|
// zone as colour
|
|
<< "0x" << hex << zoneI << dec << endl;
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Face>
|
|
Foam::fileFormats::TRIsurfaceFormat<Face>::TRIsurfaceFormat
|
|
(
|
|
const fileName& filename
|
|
)
|
|
{
|
|
read(filename);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Face>
|
|
bool Foam::fileFormats::TRIsurfaceFormat<Face>::read
|
|
(
|
|
const fileName& filename
|
|
)
|
|
{
|
|
this->clear();
|
|
|
|
// read in the values
|
|
TRIsurfaceFormatCore reader(filename);
|
|
|
|
// transfer points
|
|
this->storedPoints().transfer(reader.points());
|
|
|
|
// retrieve the original zone information
|
|
List<label> sizes(reader.sizes().xfer());
|
|
List<label> zoneIds(reader.zoneIds().xfer());
|
|
|
|
// generate the (sorted) faces
|
|
List<Face> faceLst(zoneIds.size());
|
|
|
|
if (reader.sorted())
|
|
{
|
|
// already sorted - generate directly
|
|
forAll(faceLst, faceI)
|
|
{
|
|
const label startPt = 3*faceI;
|
|
faceLst[faceI] = triFace(startPt, startPt+1, startPt+2);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// unsorted - determine the sorted order:
|
|
// avoid SortableList since we discard the main list anyhow
|
|
List<label> faceMap;
|
|
sortedOrder(zoneIds, faceMap);
|
|
|
|
// generate sorted faces
|
|
forAll(faceMap, faceI)
|
|
{
|
|
const label startPt = 3*faceMap[faceI];
|
|
faceLst[faceI] = triFace(startPt, startPt+1, startPt+2);
|
|
}
|
|
}
|
|
zoneIds.clear();
|
|
|
|
// transfer:
|
|
this->storedFaces().transfer(faceLst);
|
|
|
|
this->addZones(sizes);
|
|
this->stitchFaces(SMALL);
|
|
return true;
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::fileFormats::TRIsurfaceFormat<Face>::write
|
|
(
|
|
const fileName& filename,
|
|
const MeshedSurfaceProxy<Face>& surf
|
|
)
|
|
{
|
|
const pointField& pointLst = surf.points();
|
|
const List<Face>& faceLst = surf.faces();
|
|
const List<label>& faceMap = surf.faceMap();
|
|
|
|
const List<surfZone>& zones =
|
|
(
|
|
surf.surfZones().empty()
|
|
? oneZone(faceLst)
|
|
: surf.surfZones()
|
|
);
|
|
|
|
const bool useFaceMap = (surf.useFaceMap() && zones.size() > 1);
|
|
|
|
OFstream os(filename);
|
|
if (!os.good())
|
|
{
|
|
FatalErrorIn
|
|
(
|
|
"fileFormats::TRIsurfaceFormat::write"
|
|
"(const fileName&, const MeshedSurfaceProxy<Face>&)"
|
|
)
|
|
<< "Cannot open file for writing " << filename
|
|
<< exit(FatalError);
|
|
}
|
|
|
|
label faceIndex = 0;
|
|
forAll(zones, zoneI)
|
|
{
|
|
const surfZone& zone = zones[zoneI];
|
|
|
|
if (useFaceMap)
|
|
{
|
|
forAll(zone, localFaceI)
|
|
{
|
|
const Face& f = faceLst[faceMap[faceIndex++]];
|
|
writeShell(os, pointLst, f, zoneI);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
forAll(zone, localFaceI)
|
|
{
|
|
const Face& f = faceLst[faceIndex++];
|
|
writeShell(os, pointLst, f, zoneI);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
template<class Face>
|
|
void Foam::fileFormats::TRIsurfaceFormat<Face>::write
|
|
(
|
|
const fileName& filename,
|
|
const UnsortedMeshedSurface<Face>& surf
|
|
)
|
|
{
|
|
const pointField& pointLst = surf.points();
|
|
const List<Face>& faceLst = surf.faces();
|
|
|
|
OFstream os(filename);
|
|
if (!os.good())
|
|
{
|
|
FatalErrorIn
|
|
(
|
|
"fileFormats::TRIsurfaceFormat::write"
|
|
"(const fileName&, const UnsortedMeshedSurface<Face>&)"
|
|
)
|
|
<< "Cannot open file for writing " << filename
|
|
<< exit(FatalError);
|
|
}
|
|
|
|
|
|
// a single zone needs no sorting
|
|
if (surf.zoneToc().size() == 1)
|
|
{
|
|
const List<label>& zoneIds = surf.zoneIds();
|
|
|
|
forAll(faceLst, faceI)
|
|
{
|
|
writeShell(os, pointLst, faceLst[faceI], zoneIds[faceI]);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
labelList faceMap;
|
|
List<surfZone> zoneLst = surf.sortedZones(faceMap);
|
|
|
|
label faceIndex = 0;
|
|
forAll(zoneLst, zoneI)
|
|
{
|
|
forAll(zoneLst[zoneI], localFaceI)
|
|
{
|
|
const Face& f = faceLst[faceMap[faceIndex++]];
|
|
writeShell(os, pointLst, f, zoneI);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|