fixed edge display for volume cells
[engrid-github.git] / src / libengrid / foamwriter.h
blobd45be889ab9d2251a2e546868d005b354732973c
1 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 // + +
3 // + This file is part of enGrid. +
4 // + +
5 // + Copyright 2008-2014 enGits GmbH +
6 // + +
7 // + enGrid is free software: you can redistribute it and/or modify +
8 // + it under the terms of the GNU General Public License as published by +
9 // + the Free Software Foundation, either version 3 of the License, or +
10 // + (at your option) any later version. +
11 // + +
12 // + enGrid is distributed in the hope that it will be useful, +
13 // + but WITHOUT ANY WARRANTY; without even the implied warranty of +
14 // + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +
15 // + GNU General Public License for more details. +
16 // + +
17 // + You should have received a copy of the GNU General Public License +
18 // + along with enGrid. If not, see <http://www.gnu.org/licenses/>. +
19 // + +
20 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
21 #ifndef foamwriter_H
22 #define foamwriter_H
24 class FoamWriter;
26 #include "iooperation.h"
27 #include "polymesh.h"
29 /**
30 * Writer for OpenFOAM poly-cell grids
32 class FoamWriter : public IOOperation
35 protected: // attributes
37 QString m_Path;
38 QMap<int, QList<QString> > m_Bc2Vol;
39 QString m_CurrentVolume;
40 bool m_CreateCellZones;
41 QList<int> m_CellZoneLimits;
42 QList<QString> m_CellZoneNames;
43 QString m_FixedFileName;
44 bool m_NoDialog;
46 protected: // methods
48 void writePoints(const PolyMesh &poly);
49 void writeFaces(const PolyMesh &poly);
50 void writeOwner(const PolyMesh &poly);
51 void writeNeighbour(const PolyMesh &poly);
52 void writeBoundary(const PolyMesh &poly);
53 void writeCellZones();
55 bool hasNeighbour(int bc);
56 QString getNeighbourName(int bc);
58 PolyMesh* createSinglePolyMesh();
60 void writeSingleVolume();
61 void writeMultipleVolumes();
63 void setFixedFileName(QString file_name);
65 virtual void operate();
67 public: // methods
69 FoamWriter();
73 #endif