Forward compatibility: flex
[foam-extend-3.2.git] / src / conversion / ensight / part / ensightPartCells.C
blob5d5964b21e9eb6389f9daacbacbbf3c992247de3
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*----------------------------------------------------------------------------*/
26 #include "ensightPartCells.H"
27 #include "addToRunTimeSelectionTable.H"
28 #include "IOstream.H"
29 #include "IStringStream.H"
30 #include "dictionary.H"
31 #include "cellModeller.H"
34 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
36 namespace Foam
38    defineTypeNameAndDebug(ensightPartCells, 0);
39    addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream);
42 Foam::List<Foam::word> Foam::ensightPartCells::elemTypes_
44     IStringStream
45     (
46         "(tetra4 pyramid5 penta6 hexa8 nfaced)"
47     )()
51 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
53 void Foam::ensightPartCells::classify(const labelList& idList)
55     // References to cell shape models
56     const cellModel& tet   = *(cellModeller::lookup("tet"));
57     const cellModel& pyr   = *(cellModeller::lookup("pyr"));
58     const cellModel& prism = *(cellModeller::lookup("prism"));
59     const cellModel& hex   = *(cellModeller::lookup("hex"));
61     const polyMesh& mesh = *meshPtr_;
62     const cellShapeList& cellShapes = mesh.cellShapes();
64     offset_ = 0;
65     size_ = mesh.nCells();
67     bool limited = false;
68     if (&idList)
69     {
70         limited = true;
71         size_ = idList.size();
72     }
74     // count the shapes
75     label nTet   = 0;
76     label nPyr   = 0;
77     label nPrism = 0;
78     label nHex   = 0;
79     label nPoly  = 0;
82     // TODO: allow tet-decomposition of polyhedral cells
83 #if 0
84     label nTetDecomp = 0;
85     label nPyrDecomp = 0;
86 #endif
88     for (label listI = 0; listI < size_; ++listI)
89     {
90         label cellId = listI;
91         if (limited)
92         {
93             cellId = idList[listI];
94         }
96         const cellShape& cellShape = cellShapes[cellId];
97         const cellModel& cellModel = cellShape.model();
99         if (cellModel == tet)
100         {
101             nTet++;
102         }
103         else if (cellModel == pyr)
104         {
105             nPyr++;
106         }
107         else if (cellModel == prism)
108         {
109             nPrism++;
110         }
111         else if (cellModel == hex)
112         {
113             nHex++;
114         }
115         else
116         {
117             nPoly++;
119             // TODO: allow tet-decomposition of polyhedral cells
120 #if 0
121             const cell& cFaces = mesh.cells()[cellI];
123             forAll(cFaces, cFaceI)
124             {
125                 const face& f = mesh.faces()[cFaces[cFaceI]];
127                 label nQuads = 0;
128                 label nTris = 0;
129                 f.nTrianglesQuads(mesh.points(), nTris, nQuads);
131                 nTetDecomp += nTris;
132                 nPyrDecomp += nQuads;
133             }
135             nAddCells--;
136             nAddPoints++;
137 #endif
138         }
139     }
142     // we can avoid double looping, but at the cost of allocation
143     labelList tetCells(nTet);
144     labelList pyramidCells(nPyr);
145     labelList prismCells(nPrism);
146     labelList hexCells(nHex);
147     labelList polyCells(nPoly);
149     nTet   = 0,
150     nPyr   = 0;
151     nPrism = 0;
152     nHex   = 0;
153     nPoly  = 0;
155     // classify the shapes
156     for (label listI = 0; listI < size_; ++listI)
157     {
158         label cellId = listI;
159         if (limited)
160         {
161             cellId = idList[listI];
162         }
164         const cellShape& cellShape = cellShapes[cellId];
165         const cellModel& cellModel = cellShape.model();
167         if (cellModel == tet)
168         {
169             tetCells[nTet++] = cellId;
170         }
171         else if (cellModel == pyr)
172         {
173             pyramidCells[nPyr++] = cellId;
174         }
175         else if (cellModel == prism)
176         {
177             prismCells[nPrism++] = cellId;
178         }
179         else if (cellModel == hex)
180         {
181             hexCells[nHex++] = cellId;
182         }
183         else
184         {
185             polyCells[nPoly++] = cellId;
187             // TODO: allow tet-decomposition of polyhedral cells
188 #if 0
189             // Mapping from additional point to cell
190             addPointCellLabels_[api] = cellId;
192             const cell& cFaces = mesh.cells()[cellId];
194             forAll(cFaces, cFaceI)
195             {
196                 const face& f = mesh.faces()[cFaces[cFaceI]];
198                 label nQuads = 0;
199                 label nTris = 0;
200                 f.nTrianglesQuads(mesh.points(), nTris, nQuads);
202                 nTetDecomp += nTris;
203                 nPyrDecomp += nQuads;
204             }
206             nAddCells--;
207             nAddPoints++;
208 #endif
209         }
210     }
213     // MUST match with elementTypes
214     elemLists_.setSize(elementTypes().size());
216     elemLists_[tetra4Elements].transfer( tetCells );
217     elemLists_[pyramid5Elements].transfer( pyramidCells );
218     elemLists_[penta6Elements].transfer( prismCells );
219     elemLists_[hexa8Elements].transfer( hexCells );
220     elemLists_[nfacedElements].transfer( polyCells );
224 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
226 Foam::ensightPartCells::ensightPartCells
228     label partNumber,
229     const string& partDescription
232     ensightPart(partNumber, partDescription)
236 Foam::ensightPartCells::ensightPartCells
238     label partNumber,
239     const polyMesh& pMesh
242     ensightPart(partNumber, "cells", pMesh)
244     classify();
248 Foam::ensightPartCells::ensightPartCells
250     label partNumber,
251     const polyMesh& pMesh,
252     const labelList& idList
255     ensightPart(partNumber, "cells", pMesh)
257     classify(idList);
261 Foam::ensightPartCells::ensightPartCells
263     label partNumber,
264     const polyMesh& pMesh,
265     const cellZone& cZone
268     ensightPart(partNumber, cZone.name(), pMesh)
270     classify(cZone);
274 Foam::ensightPartCells::ensightPartCells(const ensightPartCells& part)
276     ensightPart(part)
280 Foam::ensightPartCells::ensightPartCells(Istream& is)
282     ensightPart()
284     reconstruct(is);
288 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
290 Foam::ensightPartCells::~ensightPartCells()
294 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
296 Foam::ensightPart::localPoints Foam::ensightPartCells::calcLocalPoints() const
298     const polyMesh& mesh = *meshPtr_;
300     localPoints ptList(mesh);
301     labelList& usedPoints = ptList.list;
302     label nPoints = 0;
304     forAll(elemLists_, typeI)
305     {
306         const labelList& idList = elemLists_[typeI];
308         // add all points from cells
309         forAll(idList, i)
310         {
311             label id = idList[i] + offset_;
312             const labelList& cFaces = mesh.cells()[id];
314             forAll(cFaces, cFaceI)
315             {
316                 const face& f = mesh.faces()[cFaces[cFaceI]];
318                 forAll(f, fp)
319                 {
320                     if (usedPoints[f[fp]] == -1)
321                     {
322                         usedPoints[f[fp]] = nPoints++;
323                     }
324                 }
325             }
326         }
327     }
329     // this is not absolutely necessary, but renumber anyhow
330     nPoints = 0;
331     forAll(usedPoints, ptI)
332     {
333         if (usedPoints[ptI] > -1)
334         {
335             usedPoints[ptI] = nPoints++;
336         }
337     }
339     ptList.nPoints = nPoints;
340     return ptList;
344 void Foam::ensightPartCells::writeConnectivity
346     ensightGeoFile& os,
347     const string& key,
348     const labelList& idList,
349     const labelList& pointMap
350 ) const
352     os.writeKeyword(key);
353     os.write(idList.size());
354     os.newline();
356     const polyMesh& mesh = *meshPtr_;
358     // write polyhedral
359     if (word(key) == "nfaced")
360     {
361         const faceList& meshFaces = mesh.faces();
363         // write the number of faces per element
364         forAll(idList, i)
365         {
366             label id = idList[i] + offset_;
367             const labelList& cFace = mesh.cells()[id];
369             os.write( cFace.size() );
370             os.newline();
371         }
373         // write the number of points per element face
374         forAll(idList, i)
375         {
376             label id = idList[i] + offset_;
377             const labelList& cFace = mesh.cells()[id];
379             forAll(cFace, faceI)
380             {
381                 const face& cf = meshFaces[cFace[faceI]];
383                 os.write( cf.size() );
384                 os.newline();
385             }
386         }
388         // write the points describing each element face
389         forAll(idList, i)
390         {
391             label id = idList[i] + offset_;
392             const labelList& cFace = mesh.cells()[id];
394             forAll(cFace, faceI)
395             {
396                 const face& cf = meshFaces[cFace[faceI]];
398                 forAll(cf, ptI)
399                 {
400                     // convert global -> local index
401                     // (note: Ensight indices start with 1)
402                     os.write( pointMap[cf[ptI]] + 1);
403                 }
404                 os.newline();
405             }
406         }
407     }
408     else
409     {
410         // write primitive
411         const cellShapeList& cellShapes = mesh.cellShapes();
413         forAll(idList, i)
414         {
415             label id = idList[i] + offset_;
416             const cellShape& cellPoints = cellShapes[id];
418             // convert global -> local index
419             // (note: Ensight indices start with 1)
420             forAll(cellPoints, ptI)
421             {
422                 os.write( pointMap[cellPoints[ptI]] + 1 );
423             }
424             os.newline();
425         }
426     }
430 // ************************************************************************* //