1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
7 -------------------------------------------------------------------------------
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
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 "VTKsurfaceFormatCore.H"
29 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
31 void Foam::fileFormats::VTKsurfaceFormatCore::writeHeader
34 const pointField& pointLst
38 os << "# vtk DataFile Version 2.0" << nl
39 << "surface written " << clock::dateTime().c_str() << nl
42 << "DATASET POLYDATA" << nl;
44 // Write vertex coords
45 os << "POINTS " << pointLst.size() << " float" << nl;
48 const point& pt = pointLst[ptI];
50 os << pt.x() << ' ' << pt.y() << ' ' << pt.z() << nl;
55 void Foam::fileFormats::VTKsurfaceFormatCore::writeTail
58 const UList<surfZone>& zoneLst
62 forAll(zoneLst, zoneI)
64 nFaces += zoneLst[zoneI].size();
69 << "CELL_DATA " << nFaces << nl
70 << "FIELD attributes 1" << nl
71 << "zone 1 " << nFaces << " float" << nl;
74 forAll(zoneLst, zoneI)
76 forAll(zoneLst[zoneI], localFaceI)
96 void Foam::fileFormats::VTKsurfaceFormatCore::writeTail
99 const labelUList& zoneIds
102 // Print zone numbers
104 << "CELL_DATA " << zoneIds.size() << nl
105 << "FIELD attributes 1" << nl
106 << "zone 1 " << zoneIds.size() << " float" << nl;
108 forAll(zoneIds, faceI)
121 os << zoneIds[faceI] + 1;
127 // ************************************************************************* //