BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / surfMesh / surfaceFormats / vtk / VTKsurfaceFormatCore.C
blob8f787d2c02f56d6faae28b384922255f949983f1
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 "VTKsurfaceFormatCore.H"
27 #include "clock.H"
29 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
31 void Foam::fileFormats::VTKsurfaceFormatCore::writeHeader
33     Ostream& os,
34     const pointField& pointLst
37     // Write header
38     os  << "# vtk DataFile Version 2.0" << nl
39         << "surface written " << clock::dateTime().c_str() << nl
40         << "ASCII" << nl
41         << nl
42         << "DATASET POLYDATA" << nl;
44     // Write vertex coords
45     os  << "POINTS " << pointLst.size() << " float" << nl;
46     forAll(pointLst, ptI)
47     {
48         const point& pt = pointLst[ptI];
50         os  << pt.x() << ' ' << pt.y() << ' ' << pt.z() << nl;
51     }
55 void Foam::fileFormats::VTKsurfaceFormatCore::writeTail
57     Ostream& os,
58     const UList<surfZone>& zoneLst
61     label nFaces = 0;
62     forAll(zoneLst, zoneI)
63     {
64         nFaces += zoneLst[zoneI].size();
65     }
67     // Print zone numbers
68     os  << nl
69         << "CELL_DATA " << nFaces << nl
70         << "FIELD attributes 1" << nl
71         << "zone 1 " << nFaces << " float" << nl;
74     forAll(zoneLst, zoneI)
75     {
76         forAll(zoneLst[zoneI], localFaceI)
77         {
78             if (localFaceI)
79             {
80                 if (localFaceI % 20)
81                 {
82                     os << ' ';
83                 }
84                 else
85                 {
86                     os << nl;
87                 }
88             }
89             os  << zoneI + 1;
90         }
91         os  << nl;
92     }
96 void Foam::fileFormats::VTKsurfaceFormatCore::writeTail
98     Ostream& os,
99     const labelUList& zoneIds
102     // Print zone numbers
103     os  << nl
104         << "CELL_DATA " << zoneIds.size() << nl
105         << "FIELD attributes 1" << nl
106         << "zone 1 " << zoneIds.size() << " float" << nl;
108     forAll(zoneIds, faceI)
109     {
110         if (faceI)
111         {
112             if (faceI % 20)
113             {
114                 os << ' ';
115             }
116             else
117             {
118                 os << nl;
119             }
120         }
121         os  << zoneIds[faceI] + 1;
122     }
123     os  << nl;
127 // ************************************************************************* //