1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
|
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkEnSightReader.h,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkEnSightReader - superclass for EnSight file readers
#ifndef __vtkEnSightReader_h
#define __vtkEnSightReader_h
#include "vtkGenericEnSightReader.h"
class vtkDataSetCollection;
class vtkIdList;
class vtkEnSightReaderCellIdsType;
class VTK_IO_EXPORT vtkEnSightReader : public vtkGenericEnSightReader
{
public:
vtkTypeRevisionMacro(vtkEnSightReader, vtkGenericEnSightReader);
void PrintSelf(ostream& os, vtkIndent indent);
void Update();
void ExecuteInformation();
//BTX
enum ElementTypesList
{
POINT = 0,
BAR2 = 1,
BAR3 = 2,
NSIDED = 3,
TRIA3 = 4,
TRIA6 = 5,
QUAD4 = 6,
QUAD8 = 7,
TETRA4 = 8,
TETRA10 = 9,
PYRAMID5 = 10,
PYRAMID13 = 11,
HEXA8 = 12,
HEXA20 = 13,
PENTA6 = 14,
PENTA15 = 15
};
enum VariableTypesList
{
SCALAR_PER_NODE = 0,
VECTOR_PER_NODE = 1,
TENSOR_SYMM_PER_NODE = 2,
SCALAR_PER_ELEMENT = 3,
VECTOR_PER_ELEMENT = 4,
TENSOR_SYMM_PER_ELEMENT = 5,
SCALAR_PER_MEASURED_NODE = 6,
VECTOR_PER_MEASURED_NODE = 7,
COMPLEX_SCALAR_PER_NODE = 8,
COMPLEX_VECTOR_PER_NODE = 9,
COMPLEX_SCALAR_PER_ELEMENT = 10,
COMPLEX_VECTOR_PER_ELEMENT = 11
};
enum SectionTypeList
{
COORDINATES = 0,
BLOCK = 1,
ELEMENT = 2
};
//ETX
// Description:
// This method sets/replaces one of the outputs of the
// reader without changing it's modification time.
// Make sure that you pass the right type of data object.
void ReplaceNthOutput(int n, vtkDataObject* output);
// Description:
// OutputsAreValid indicates whether the outputs from this reader have
// changed in a consistent way. If during re-reading (because of a change in
// time step or data set) the number of outputs becomes less than the current
// number or the type of a particular output changes (e.g., from
// vtkUnstructuredGrid to vtkImageData), then this flag is set to 0.
// Otherwise it is set to 1.
vtkGetMacro(OutputsAreValid, int);
protected:
vtkEnSightReader();
~vtkEnSightReader();
void Execute();
// Description:
// Read the case file. If an error occurred, 0 is returned; otherwise 1.
int ReadCaseFile();
// set in UpdateInformation to value returned from ReadCaseFile
int CaseFileRead;
// Description:
// Read the geometry file. If an error occurred, 0 is returned; otherwise 1.
virtual int ReadGeometryFile(const char* fileName, int timeStep) = 0;
// Description:
// Read the measured geometry file. If an error occurred, 0 is returned;
// otherwise 1.
virtual int ReadMeasuredGeometryFile(const char* fileName, int timeStep) = 0;
// Description:
// Read the variable files. If an error occurred, 0 is returned; otherwise 1.
int ReadVariableFiles();
// Description:
// Read scalars per node for this dataset. If an error occurred, 0 is
// returned; otherwise 1.
virtual int ReadScalarsPerNode(const char* fileName, const char* description,
int timeStep, int measured = 0,
int numberOfComponents = 1,
int component = 0) = 0;
// Description:
// Read vectors per node for this dataset. If an error occurred, 0 is
// returned; otherwise 1.
virtual int ReadVectorsPerNode(const char* fileName, const char* description,
int timeStep, int measured = 0) = 0;
// Description:
// Read tensors per node for this dataset. If an error occurred, 0 is
// returned; otherwise 1.
virtual int ReadTensorsPerNode(const char* fileName, const char* description,
int timeStep) = 0;
// Description:
// Read scalars per element for this dataset. If an error occurred, 0 is
// returned; otherwise 1.
virtual int ReadScalarsPerElement(const char* fileName, const char* description,
int timeStep, int numberOfComponents = 1,
int component = 0) = 0;
// Description:
// Read vectors per element for this dataset. If an error occurred, 0 is
// returned; otherwise 1.
virtual int ReadVectorsPerElement(const char* fileName, const char* description,
int timeStep) = 0;
// Description:
// Read tensors per element for this dataset. If an error occurred, 0 is
// returned; otherwise 1.
virtual int ReadTensorsPerElement(const char* fileName, const char* description,
int timeStep) = 0;
// Description:
// Read an unstructured part (partId) from the geometry file and create a
// vtkUnstructuredGrid output. Return 0 if EOF reached.
virtual int CreateUnstructuredGridOutput(int partId,
char line[80],
const char* name) = 0;
// Description:
// Read a structured part from the geometry file and create a
// vtkStructuredGridOutput. Return 0 if EOF reached.
virtual int CreateStructuredGridOutput(int partId,
char line[80],
const char* name) = 0;
// Description:
// Set/Get the Model file name.
vtkSetStringMacro(GeometryFileName);
vtkGetStringMacro(GeometryFileName);
// Description:
// Set/Get the Measured file name.
vtkSetStringMacro(MeasuredFileName);
vtkGetStringMacro(MeasuredFileName);
// Description:
// Set/Get the Match file name.
vtkSetStringMacro(MatchFileName);
vtkGetStringMacro(MatchFileName);
// Description:
// Add another file name to the list for a particular variable type.
void AddVariableFileName(const char* fileName1, const char* fileName2 = NULL);
// Description:
// Add another description to the list for a particular variable type.
void AddVariableDescription(const char* description);
// Description:
// Record the variable type for the variable line just read.
void AddVariableType();
// Description:
// Determine the element type from a line read a file. Return -1 for
// invalid element type.
int GetElementType(const char* line);
// Description:
// Determine the section type from a line read a file. Return -1 for
// invalid section type.
int GetSectionType(const char *line);
// Description:
// Replace the *'s in the filename with the given filename number.
void ReplaceWildcards(char* filename, int num);
// Get the vtkIdList for the given output index and cell type.
vtkIdList* GetCellIds(int index, int cellType);
char* MeasuredFileName;
char* MatchFileName; // may not actually be necessary to read this file
// pointer to lists of vtkIdLists (cell ids per element type per part)
vtkEnSightReaderCellIdsType* CellIds;
// part ids of unstructured outputs
vtkIdList* UnstructuredPartIds;
int VariableMode;
// pointers to lists of filenames
char** VariableFileNames; // non-complex
char** ComplexVariableFileNames;
// array of time sets
vtkIdList *VariableTimeSetIds;
vtkIdList *ComplexVariableTimeSetIds;
// array of file sets
vtkIdList *VariableFileSetIds;
vtkIdList *ComplexVariableFileSetIds;
// collection of filename numbers per time set
vtkIdListCollection *TimeSetFileNameNumbers;
vtkIdList *TimeSetsWithFilenameNumbers;
// collection of filename numbers per file set
vtkIdListCollection *FileSetFileNameNumbers;
vtkIdList *FileSetsWithFilenameNumbers;
// collection of number of steps per file per file set
vtkIdListCollection *FileSetNumberOfSteps;
// ids of the time and file sets
vtkIdList *TimeSetIds;
vtkIdList *FileSets;
int GeometryTimeSet;
int GeometryFileSet;
int MeasuredTimeSet;
int MeasuredFileSet;
float GeometryTimeValue;
float MeasuredTimeValue;
int UseTimeSets;
vtkSetMacro(UseTimeSets, int);
vtkGetMacro(UseTimeSets, int);
vtkBooleanMacro(UseTimeSets, int);
int UseFileSets;
vtkSetMacro(UseFileSets, int);
vtkGetMacro(UseFileSets, int);
vtkBooleanMacro(UseFileSets, int);
int NumberOfGeometryParts;
void SetNumberOfOutputsInternal(int num);
// global list of points for measured geometry
int NumberOfMeasuredPoints;
int NumberOfNewOutputs;
int OutputsAreValid;
int InitialRead;
int CheckOutputConsistency();
private:
vtkEnSightReader(const vtkEnSightReader&); // Not implemented.
void operator=(const vtkEnSightReader&); // Not implemented.
};
#endif
|