VTK
vtkFLUENTReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkFLUENTReader.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
34 #ifndef vtkFLUENTReader_h
35 #define vtkFLUENTReader_h
36 
37 #include "vtkIOGeometryModule.h" // For export macro
39 
41 class vtkPoints;
42 class vtkTriangle;
43 class vtkTetra;
44 class vtkQuad;
45 class vtkHexahedron;
46 class vtkPyramid;
47 class vtkWedge;
48 class vtkConvexPointSet;
49 
51 {
52 public:
53  static vtkFLUENTReader *New();
55  void PrintSelf(ostream& os, vtkIndent indent);
56 
58 
59  vtkSetStringMacro(FileName);
60  vtkGetStringMacro(FileName);
62 
64 
67  vtkGetMacro(NumberOfCells,int);
69 
71  int GetNumberOfCellArrays(void);
72 
74  const char* GetCellArrayName(int index);
75 
77 
78  int GetCellArrayStatus(const char* name);
79  void SetCellArrayStatus(const char* name, int status);
81 
83 
84  void DisableAllCellArrays();
85  void EnableAllCellArrays();
87 
89 
100  void SetDataByteOrderToBigEndian();
101  void SetDataByteOrderToLittleEndian();
102  int GetDataByteOrder();
103  void SetDataByteOrder(int);
104  const char *GetDataByteOrderAsString();
105  //
106  // Structures
107  //
108  struct Cell;
109  struct Face;
110  struct ScalarDataChunk;
111  struct VectorDataChunk;
112  struct stdString;
113  struct intVector;
114  struct doubleVector;
115  struct stringVector;
116  struct cellVector;
117  struct faceVector;
118  struct stdMap;
119  struct scalarDataVector;
120  struct vectorDataVector;
121  struct intVectorVector;
123 
124 protected:
125  vtkFLUENTReader();
126  ~vtkFLUENTReader();
131 
133 
135  vtkSetMacro(SwapBytes,int);
136  int GetSwapBytes() {return this->SwapBytes;}
137  vtkBooleanMacro(SwapBytes,int);
139 
141  char * FileName;
144  virtual bool OpenCaseFile(const char *filename);
145  virtual bool OpenDataFile(const char *filename);
146  virtual int GetCaseChunk ();
147  virtual void GetNumberOfCellZones();
148  virtual int GetCaseIndex();
149  virtual void LoadVariableNames();
150  virtual int GetDataIndex();
151  virtual int GetDataChunk();
152  virtual void GetSpeciesVariableNames();
153 
154  virtual void ParseCaseFile();
155  virtual int GetDimension();
156  virtual void GetLittleEndianFlag();
157  virtual void GetNodesAscii();
158  virtual void GetNodesSinglePrecision();
159  virtual void GetNodesDoublePrecision();
160  virtual void GetCellsAscii();
161  virtual void GetCellsBinary();
162  virtual void GetFacesAscii();
163  virtual void GetFacesBinary();
164  virtual void GetPeriodicShadowFacesAscii();
165  virtual void GetPeriodicShadowFacesBinary();
166  virtual void GetCellTreeAscii();
167  virtual void GetCellTreeBinary();
168  virtual void GetFaceTreeAscii();
169  virtual void GetFaceTreeBinary();
170  virtual void GetInterfaceFaceParentsAscii();
171  virtual void GetInterfaceFaceParentsBinary();
172  virtual void GetNonconformalGridInterfaceFaceInformationAscii();
173  virtual void GetNonconformalGridInterfaceFaceInformationBinary();
174  virtual void GetPartitionInfo() {}
175  virtual void CleanCells();
176  virtual void PopulateCellNodes();
177  virtual int GetCaseBufferInt(int ptr);
178  virtual float GetCaseBufferFloat(int ptr);
179  virtual double GetCaseBufferDouble(int ptr);
180  virtual void PopulateTriangleCell(int i);
181  virtual void PopulateTetraCell(int i);
182  virtual void PopulateQuadCell(int i);
183  virtual void PopulateHexahedronCell(int i);
184  virtual void PopulatePyramidCell(int i);
185  virtual void PopulateWedgeCell(int i);
186  virtual void PopulatePolyhedronCell(int i);
187  virtual void ParseDataFile();
188  virtual int GetDataBufferInt(int ptr);
189  virtual float GetDataBufferFloat(int ptr);
190  virtual double GetDataBufferDouble(int ptr);
191  virtual void GetData(int dataType);
192  virtual bool ParallelCheckCell(int vtkNotUsed(i)) { return true; }
193 
194  //
195  // Variables
196  //
197  ifstream *FluentCaseFile;
198  ifstream *FluentDataFile;
199  stdString *CaseBuffer;
200  stdString *DataBuffer;
201 
210 
211  cellVector *Cells;
212  faceVector *Faces;
213  stdMap *VariableNames;
214  intVector *CellZones;
215  scalarDataVector *ScalarDataChunks;
216  vectorDataVector *VectorDataChunks;
217 
218  intVectorVector *SubSectionZones;
219  intVector *SubSectionIds;
220  intVector *SubSectionSize;
221 
222  stringVector *ScalarVariableNames;
224  stringVector *VectorVariableNames;
226 
229  int DataPass;
232 
233 private:
234  vtkFLUENTReader(const vtkFLUENTReader&); // Not implemented.
235  void operator=(const vtkFLUENTReader&); // Not implemented.
236 };
237 #endif
scalarDataVector * ScalarDataChunks
intVector * SubSectionSize
vectorDataVector * VectorDataChunks
Store vtkAlgorithm input/output information.
a 3D cell that represents a linear pyramid
Definition: vtkPyramid.h:48
vtkDataArraySelection * CellDataArraySelection
ifstream * FluentDataFile
virtual bool ParallelCheckCell(int vtkNotUsed(i))
a cell that represents a 2D quadrilateral
Definition: vtkQuad.h:40
ifstream * FluentCaseFile
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
stdString * DataBuffer
intVectorVector * SubSectionZones
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
virtual void GetPartitionInfo()
vtkTriangle * Triangle
#define VTKIOGEOMETRY_EXPORT
static vtkMultiBlockDataSetAlgorithm * New()
a 3D cell that represents a tetrahedron
Definition: vtkTetra.h:46
a simple class to control print indentation
Definition: vtkIndent.h:38
vtkPyramid * Pyramid
stdMap * VariableNames
Store on/off settings for data arrays for a vtkSource.
vtkHexahedron * Hexahedron
cellVector * Cells
reads a dataset in Fluent file format
a cell that represents a linear 3D hexahedron
Definition: vtkHexahedron.h:46
intVector * CellZones
a 3D cell defined by a set of convex points
intVector * ScalarSubSectionIds
intVector * SubSectionIds
a cell that represents a triangle
Definition: vtkTriangle.h:40
void PrintSelf(ostream &os, vtkIndent indent)
faceVector * Faces
stdString * CaseBuffer
Store zero or more vtkInformation instances.
stringVector * VectorVariableNames
vtkConvexPointSet * ConvexPointSet
stringVector * ScalarVariableNames
vtkPoints * Points
a 3D cell that represents a linear wedge
Definition: vtkWedge.h:48
represent and manipulate 3D points
Definition: vtkPoints.h:38
virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
intVector * VectorSubSectionIds