X3DsurfaceFormat.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2011-2016 OpenFOAM Foundation
9  Copyright (C) 2016-2020 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
12  This file is part of OpenFOAM.
13 
14  OpenFOAM is free software: you can redistribute it and/or modify it
15  under the terms of the GNU General Public License as published by
16  the Free Software Foundation, either version 3 of the License, or
17  (at your option) any later version.
18 
19  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22  for more details.
23 
24  You should have received a copy of the GNU General Public License
25  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26 
27 \*---------------------------------------------------------------------------*/
28 
29 #include "X3DsurfaceFormat.H"
30 #include "OFstream.H"
31 
32 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
33 
34 template<class Face>
36 (
37  const fileName& filename,
38  const MeshedSurfaceProxy<Face>& surf,
39  IOstreamOption streamOpt,
40  const dictionary&
41 )
42 {
43  // ASCII only, allow output compression
44  streamOpt.format(IOstream::ASCII);
45 
46  const UList<point>& pointLst = surf.points();
47  const UList<Face>& faceLst = surf.surfFaces();
48  const UList<label>& faceMap = surf.faceMap();
49 
50  // for no zones, suppress the group name
51  const surfZoneList zones =
52  (
53  surf.surfZones().empty()
54  ? surfaceFormatsCore::oneZone(faceLst, word::null)
55  : surf.surfZones()
56  );
57 
58  const bool useFaceMap = (surf.useFaceMap() && zones.size() > 1);
59 
60  OFstream os(filename, streamOpt);
61  if (!os.good())
62  {
64  << "Cannot write file " << filename << nl
65  << exit(FatalError);
66  }
67 
68  writeHeader(os);
69  beginGroup(os);
70  writeAppearance(os);
71 
72  // NOTE: we could provide an optimized IndexedTriangleSet output for
73  // triangulated surfaces too
74 
75  os <<
76  " <IndexedFaceSet coordIndex='\n";
77 
78  label faceIndex = 0;
79  for (const surfZone& zone : zones)
80  {
81  const label nLocalFaces = zone.size();
82 
83  if (useFaceMap)
84  {
85  for (label i=0; i<nLocalFaces; ++i)
86  {
87  const Face& f = faceLst[faceMap[faceIndex++]];
88 
89  for (const label vrti : f)
90  {
91  os << vrti << ' ';
92  }
93  os << "-1\n";
94  }
95  }
96  else
97  {
98  for (label i=0; i<nLocalFaces; ++i)
99  {
100  const Face& f = faceLst[faceIndex++];
101 
102  for (const label vrti : f)
103  {
104  os << vrti << ' ';
105  }
106  os << "-1\n";
107  }
108  }
109  }
110 
111  os <<
112  "' >\n";
113 
114  writePoints(os, pointLst);
115 
116  os <<
117  " </IndexedFaceSet>\n";
118 
119  endGroup(os);
120  writeFooter(os);
121 }
122 
123 
124 // ************************************************************************* //
Foam::faceMap
Pair< int > faceMap(const label facePi, const face &faceP, const label faceNi, const face &faceN)
Definition: blockMeshMergeTopological.C:94
Foam::fileName
A class for handling file names.
Definition: fileName.H:73
Foam::MeshedSurfaceProxy::useFaceMap
bool useFaceMap() const
Can/should use faceMap?
Definition: MeshedSurfaceProxy.H:203
X3DsurfaceFormat.H
Foam::zone
Base class for mesh zones.
Definition: zone.H:63
Foam::IOstreamOption::format
streamFormat format() const noexcept
Get the current stream format.
Definition: IOstreamOption.H:286
Foam::MeshedSurfaceProxy::points
const pointField & points() const
Return const access to the points.
Definition: MeshedSurfaceProxy.H:171
Foam::writeHeader
static void writeHeader(Ostream &os, const word &fieldName)
Definition: rawSurfaceWriterImpl.C:66
Foam::MeshedSurfaceProxy
A proxy for writing MeshedSurface, UnsortedMeshedSurface and surfMesh to various file formats.
Definition: MeshedSurface.H:82
Foam::MeshedSurfaceProxy::faceMap
const labelUList & faceMap() const
Const access to the faceMap, zero-sized when unused.
Definition: MeshedSurfaceProxy.H:191
OFstream.H
Foam::IOstreamOption
The IOstreamOption is a simple container for options an IOstream can normally have.
Definition: IOstreamOption.H:63
Foam::FatalError
error FatalError
Foam::dictionary
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:123
os
OBJstream os(runTime.globalPath()/outputName)
Foam::exit
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:130
Foam::OFstream
Output to file stream, using an OSstream.
Definition: OFstream.H:53
Foam::fileFormats::X3DsurfaceFormat::write
static void write(const fileName &filename, const MeshedSurfaceProxy< Face > &surf, IOstreamOption streamOpt=IOstreamOption(), const dictionary &=dictionary::null)
Write surface mesh components by proxy.
Definition: X3DsurfaceFormat.C:36
FatalErrorInFunction
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:453
Foam::nl
constexpr char nl
Definition: Ostream.H:404
f
labelList f(nPoints)
Foam::List< surfZone >
Foam::surfZone
A surface zone on a MeshedSurface.
Definition: surfZone.H:56
Foam::UList
A 1D vector of objects of type <T>, where the size of the vector is known and can be used for subscri...
Definition: HashTable.H:103
Foam::MeshedSurfaceProxy::surfFaces
const UList< Face > & surfFaces() const
Return const access to the faces.
Definition: MeshedSurfaceProxy.H:177
Foam::MeshedSurfaceProxy::surfZones
const UList< surfZone > & surfZones() const
Const access to the surface zones.
Definition: MeshedSurfaceProxy.H:185