BUGFIX: Illegal use of uninitialised value (backport)
[foam-extend-3.2.git] / applications / utilities / postProcessing / dataConversion / foamToVTK / writeFuns.H
blobab3dbfb3b4eabbb72ecf652a7585a5a873f70540
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright held by original author
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::writeFunctions
28 Description
29     Various functions for collecting and writing binary data.
31 SourceFiles
32     writeFunctions.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef writeFunctions_H
37 #define writeFunctions_H
39 #include "floatScalar.H"
40 #include "DynamicList.H"
41 #include "volFieldsFwd.H"
42 #include "pointFieldsFwd.H"
43 #include "vtkMesh.H"
44 #include "volPointInterpolation.H"
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 namespace Foam
51 /*---------------------------------------------------------------------------*\
52                            Class writeFuns Declaration
53 \*---------------------------------------------------------------------------*/
55 class writeFuns
57     // Private member functions
59         // Swap halves of word.
61             static void swapWord(label& word32);
62             static void swapWords(const label nWords, label* words32);
65 public:
67     // Write ascii or binary. If binary optionally in-place swaps argument
69         static void write(std::ostream&, const bool, List<floatScalar>&);
70         static void write(std::ostream&, const bool, DynamicList<floatScalar>&);
71         static void write(std::ostream&, const bool, labelList&);
72         static void write(std::ostream&, const bool, DynamicList<label>&);
75     // Write header
77         static void writeHeader
78         (
79             std::ostream&,
80             const bool,
81             const string&
82         );
84         static void writeCellDataHeader
85         (
86             std::ostream&,
87             const label,
88             const label
89         );
91         static void writePointDataHeader
92         (
93             std::ostream&,
94             const label,
95             const label
96         );
99     // Convert to VTK and store
101         static void insert(const scalar&, DynamicList<floatScalar>&);
102         static void insert(const point&, DynamicList<floatScalar>&);
103         static void insert(const sphericalTensor&, DynamicList<floatScalar>&);
104         static void insert(const symmTensor&, DynamicList<floatScalar>&);
105         static void insert(const tensor&, DynamicList<floatScalar>&);
108     //- Append elements to DynamicList
109     static void insert(const labelList&, DynamicList<label>&);
110     template<class Type>
111     static void insert(const List<Type>&, DynamicList<floatScalar>&);
113     //- Write volField with cell values (including decomposed cells)
114     template<class Type>
115     static void write
116     (
117         std::ostream&,
118         const bool binary,
119         const GeometricField<Type, fvPatchField, volMesh>&,
120         const vtkMesh&
121     );
123     //- Write pointField on all mesh points. Interpolate to cell centre
124     //  for decomposed cell centres.
125     template<class Type>
126     static void write
127     (
128         std::ostream&,
129         const bool binary,
130         const GeometricField<Type, pointPatchField, pointMesh>&,
131         const vtkMesh&
132     );
134     //- Write interpolated field on points and original cell values on
135     //  decomposed cell centres.
136     template<class Type>
137     static void write
138     (
139         std::ostream&,
140         const bool binary,
141         const GeometricField<Type, fvPatchField, volMesh>&,
142         const GeometricField<Type, pointPatchField, pointMesh>&,
143         const vtkMesh&
144     );
146     //- Write generic GeometricFields
147     template<class Type, template<class> class PatchField, class GeoMesh>
148     static void write
149     (
150         std::ostream&,
151         const bool binary,
152         const PtrList<GeometricField<Type, PatchField, GeoMesh> >&,
153         const vtkMesh&
154     );
156     //- Interpolate and write volFields
157     template<class Type>
158     static void write
159     (
160         std::ostream&,
161         const bool binary,
162         const volPointInterpolation&,
163         const PtrList<GeometricField<Type, fvPatchField, volMesh> >&,
164         const vtkMesh&
165     );
169 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
171 } // End namespace Foam
173 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
175 #ifdef NoRepository
176 #   include "writeFunsTemplates.C"
177 #endif
179 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
181 #endif
183 // ************************************************************************* //