BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / utilities / postProcessing / dataConversion / foamToVTK / writeFunsTemplates.C
blob5fe5d076dd03668b9be15251598d1ba84dae236e
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 "writeFuns.H"
27 #include "interpolatePointToCell.H"
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 // Store List in dest
32 template<class Type>
33 void Foam::writeFuns::insert
35     const List<Type>& source,
36     DynamicList<floatScalar>& dest
39     forAll(source, i)
40     {
41         insert(source[i], dest);
42     }
46 //// Store List (indexed through map) in dest
47 //template<class Type>
48 //void Foam::writeFuns::insert
49 //(
50 //    const labelList& map,
51 //    const List<Type>& source,
52 //    DynamicList<floatScalar>& dest
53 //)
54 //{
55 //    forAll(map, i)
56 //    {
57 //        insert(source[map[i]], dest);
58 //    }
59 //}
62 template<class Type>
63 void Foam::writeFuns::write
65     std::ostream& os,
66     const bool binary,
67     const GeometricField<Type, fvPatchField, volMesh>& vvf,
68     const vtkMesh& vMesh
71     const fvMesh& mesh = vMesh.mesh();
73     const labelList& superCells = vMesh.topo().superCells();
75     label nValues = mesh.nCells() + superCells.size();
77     os  << vvf.name() << ' ' << pTraits<Type>::nComponents << ' '
78         << nValues << " float" << std::endl;
80     DynamicList<floatScalar> fField(pTraits<Type>::nComponents*nValues);
82     insert(vvf.internalField(), fField);
84     forAll(superCells, superCellI)
85     {
86         label origCellI = superCells[superCellI];
88         insert(vvf[origCellI], fField);
89     }
90     write(os, binary, fField);
94 template<class Type>
95 void Foam::writeFuns::write
97     std::ostream& os,
98     const bool binary,
99     const GeometricField<Type, pointPatchField, pointMesh>& pvf,
100     const vtkMesh& vMesh
103     const fvMesh& mesh = vMesh.mesh();
104     const vtkTopo& topo = vMesh.topo();
106     const labelList& addPointCellLabels = topo.addPointCellLabels();
107     const label nTotPoints = mesh.nPoints() + addPointCellLabels.size();
109     os  << pvf.name() << ' ' << pTraits<Type>::nComponents << ' '
110         << nTotPoints << " float" << std::endl;
112     DynamicList<floatScalar> fField(pTraits<Type>::nComponents*nTotPoints);
114     insert(pvf, fField);
116     forAll(addPointCellLabels, api)
117     {
118         label origCellI = addPointCellLabels[api];
120         insert(interpolatePointToCell(pvf, origCellI), fField);
121     }
122     write(os, binary, fField);
126 template<class Type>
127 void Foam::writeFuns::write
129     std::ostream& os,
130     const bool binary,
131     const GeometricField<Type, fvPatchField, volMesh>& vvf,
132     const GeometricField<Type, pointPatchField, pointMesh>& pvf,
133     const vtkMesh& vMesh
136     const fvMesh& mesh = vMesh.mesh();
137     const vtkTopo& topo = vMesh.topo();
139     const labelList& addPointCellLabels = topo.addPointCellLabels();
140     const label nTotPoints = mesh.nPoints() + addPointCellLabels.size();
142     os  << vvf.name() << ' ' << pTraits<Type>::nComponents << ' '
143         << nTotPoints << " float" << std::endl;
145     DynamicList<floatScalar> fField(pTraits<Type>::nComponents*nTotPoints);
147     insert(pvf, fField);
149     forAll(addPointCellLabels, api)
150     {
151         label origCellI = addPointCellLabels[api];
153         insert(vvf[origCellI], fField);
154     }
155     write(os, binary, fField);
159 template<class Type, template<class> class PatchField, class GeoMesh>
160 void Foam::writeFuns::write
162     std::ostream& os,
163     const bool binary,
164     const PtrList<GeometricField<Type, PatchField, GeoMesh> >& flds,
165     const vtkMesh& vMesh
168     forAll(flds, i)
169     {
170         write(os, binary, flds[i], vMesh);
171     }
175 template<class Type>
176 void Foam::writeFuns::write
178     std::ostream& os,
179     const bool binary,
180     const volPointInterpolation& pInterp,
181     const PtrList<GeometricField<Type, fvPatchField, volMesh> >& flds,
182     const vtkMesh& vMesh
185     forAll(flds, i)
186     {
187         write(os, binary, flds[i], pInterp.interpolate(flds[i])(), vMesh);
188     }
192 // ************************************************************************* //