Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / applications / utilities / postProcessing / dataConversion / foamToVTK / writeFaceSet.C
blob917c2f60a03d5269e834da92c46c8c50e8f6ec00
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "writeFaceSet.H"
27 #include "OFstream.H"
28 #include "writeFuns.H"
30 // * * * * * * * * * * * * * * * Global Functions  * * * * * * * * * * * * * //
32 void Foam::writeFaceSet
34     const bool binary,
35     const vtkMesh& vMesh,
36     const faceSet& set,
37     const fileName& fileName
40     const faceList& faces = vMesh.mesh().faces();
42     std::ofstream ostr(fileName.c_str());
44     writeFuns::writeHeader
45     (
46         ostr,
47         binary,
48         set.name()
49     );
51     ostr<< "DATASET POLYDATA" << std::endl;
53     //------------------------------------------------------------------
54     //
55     // Write topology
56     //
57     //------------------------------------------------------------------
60     // Construct primitivePatch of faces in faceSet.
62     faceList setFaces(set.size());
63     labelList setFaceLabels(set.size());
64     label setFaceI = 0;
66     forAllConstIter(faceSet, set, iter)
67     {
68         setFaceLabels[setFaceI] = iter.key();
69         setFaces[setFaceI] = faces[iter.key()];
70         setFaceI++;
71     }
72     primitiveFacePatch fp(setFaces, vMesh.mesh().points());
75     // Write points and faces as polygons
77     ostr<< "POINTS " << fp.nPoints() << " float" << std::endl;
79     DynamicList<floatScalar> ptField(3*fp.nPoints());
81     writeFuns::insert(fp.localPoints(), ptField);
83     writeFuns::write(ostr, binary, ptField);
86     label nFaceVerts = 0;
88     forAll(fp.localFaces(), faceI)
89     {
90         nFaceVerts += fp.localFaces()[faceI].size() + 1;
91     }
92     ostr<< "POLYGONS " << fp.size() << ' ' << nFaceVerts << std::endl;
95     DynamicList<label> vertLabels(nFaceVerts);
97     forAll(fp.localFaces(), faceI)
98     {
99         const face& f = fp.localFaces()[faceI];
101         vertLabels.append(f.size());
103         writeFuns::insert(f, vertLabels);
104     }
105     writeFuns::write(ostr, binary, vertLabels);
108     //-----------------------------------------------------------------
109     //
110     // Write data
111     //
112     //-----------------------------------------------------------------
114     // Write faceID
116     ostr
117         << "CELL_DATA " << fp.size() << std::endl
118         << "FIELD attributes 1" << std::endl;
120     // Cell ids first
121     ostr<< "faceID 1 " << fp.size() << " int" << std::endl;
123     writeFuns::write(ostr, binary, setFaceLabels);
127 // ************************************************************************* //