VTK  9.0.1
vtkExodusIIReaderPrivate.h
Go to the documentation of this file.
1 #ifndef vtkExodusIIReaderPrivate_h
2 #define vtkExodusIIReaderPrivate_h
3 #ifndef __VTK_WRAP__
4 #ifndef VTK_WRAPPING_CXX
5 
6 // Do not include this file directly. It is only for use
7 // from inside the ExodusII reader and its descendants.
8 
9 #include "vtkExodusIICache.h"
10 #include "vtkExodusIIReader.h"
11 #include "vtkStdString.h"
12 #include "vtkToolkits.h" // make sure VTK_USE_PARALLEL is properly set
13 #include "vtksys/RegularExpression.hxx"
14 
15 #include <map>
16 #include <vector>
17 
18 #include "vtkIOExodusModule.h" // For export macro
19 #include "vtk_exodusII.h"
21 class vtkIdTypeArray;
24 class vtkTypeInt64Array;
26 
30 class VTKIOEXODUS_EXPORT vtkExodusIIReaderPrivate : public vtkObject
31 {
32 public:
34  void PrintData(ostream& os, vtkIndent indent);
36  // virtual void Modified();
37 
39  int OpenFile(const char* filename);
40 
42  int CloseFile();
43 
46 
48  vtkMutableDirectedGraph* GetSIL() { return this->SIL; }
49 
51  int RequestData(vtkIdType timeStep, vtkMultiBlockDataSet* output);
52 
58 
70  void Reset();
71 
76  void ResetSettings();
77 
79  void ResetCache();
80 
82  void SetCacheSize(double size);
83 
85  vtkGetMacro(CacheSize, double);
86 
91  int GetNumberOfTimeSteps() { return (int)this->Times.size(); }
92 
95  vtkGetMacro(SqueezePoints, int);
96 
99  void SetSqueezePoints(int sp);
100 
103  vtkBooleanMacro(SqueezePoints, int);
104 
107 
112  int GetNumberOfObjectsOfType(int otype);
113 
125 
130  const char* GetObjectName(int otype, int i);
131 
136  int GetObjectId(int otype, int i);
137 
144  int GetObjectSize(int otype, int i);
145 
150  int GetObjectStatus(int otype, int i);
151 
157  int GetUnsortedObjectStatus(int otype, int i);
158 
163  void SetObjectStatus(int otype, int i, int stat);
164 
170  void SetUnsortedObjectStatus(int otype, int i, int stat);
171 
176  const char* GetObjectArrayName(int otype, int i);
177 
182  int GetNumberOfObjectArrayComponents(int otype, int i);
183 
188  int GetObjectArrayStatus(int otype, int i);
189 
194  void SetObjectArrayStatus(int otype, int i, int stat);
195 
202  int GetNumberOfObjectAttributes(int objectType, int objectIndex);
203  const char* GetObjectAttributeName(int objectType, int objectIndex, int attributeIndex);
204  int GetObjectAttributeIndex(int objectType, int objectIndex, const char* attribName);
205  int GetObjectAttributeStatus(int objectType, int objectIndex, int attribIndex);
206  void SetObjectAttributeStatus(int objectType, int objectIndex, int attribIndex, int status);
207 
209  vtkGetMacro(GenerateObjectIdArray, vtkTypeBool);
210  vtkSetMacro(GenerateObjectIdArray, vtkTypeBool);
211  static const char* GetObjectIdArrayName() { return "ObjectId"; }
212 
213  vtkSetMacro(GenerateGlobalElementIdArray, vtkTypeBool);
214  vtkGetMacro(GenerateGlobalElementIdArray, vtkTypeBool);
215  static const char* GetGlobalElementIdArrayName() { return "GlobalElementId"; }
216 
217  vtkSetMacro(GenerateGlobalNodeIdArray, vtkTypeBool);
218  vtkGetMacro(GenerateGlobalNodeIdArray, vtkTypeBool);
219  static const char* GetGlobalNodeIdArrayName() { return "GlobalNodeId"; }
220 
221  vtkSetMacro(GenerateImplicitElementIdArray, vtkTypeBool);
222  vtkGetMacro(GenerateImplicitElementIdArray, vtkTypeBool);
223  static const char* GetImplicitElementIdArrayName() { return "ImplicitElementId"; }
224 
225  vtkSetMacro(GenerateImplicitNodeIdArray, vtkTypeBool);
226  vtkGetMacro(GenerateImplicitNodeIdArray, vtkTypeBool);
227  static const char* GetImplicitNodeIdArrayName() { return "ImplicitNodeId"; }
228 
232  vtkSetMacro(GenerateFileIdArray, vtkTypeBool);
233  vtkGetMacro(GenerateFileIdArray, vtkTypeBool);
234  static const char* GetFileIdArrayName() { return "FileId"; }
235 
237  vtkSetMacro(FileId, int);
238  vtkGetMacro(FileId, int);
239 
240  static const char* GetGlobalVariableValuesArrayName() { return "GlobalVariableValues"; }
241  static const char* GetGlobalVariableNamesArrayName() { return "GlobalVariableNames"; }
242 
244  vtkGetMacro(ApplyDisplacements, vtkTypeBool);
245 
246  virtual void SetDisplacementMagnitude(double s);
247  vtkGetMacro(DisplacementMagnitude, double);
248 
249  vtkSetMacro(HasModeShapes, int);
250  vtkGetMacro(HasModeShapes, int);
251 
252  vtkSetMacro(ModeShapeTime, double);
253  vtkGetMacro(ModeShapeTime, double);
254 
255  vtkSetMacro(AnimateModeShapes, int);
256  vtkGetMacro(AnimateModeShapes, int);
257 
258  vtkSetMacro(IgnoreFileTime, bool);
259  vtkGetMacro(IgnoreFileTime, bool);
260 
262 
263  const struct ex_init_params* GetModelParams() const { return &this->ModelParameters; }
264 
266  struct VTKIOEXODUS_EXPORT ArrayInfoType
267  {
278  int GlomType;
283  int Source;
285  int Status;
288  std::vector<vtkStdString> OriginalNames;
291  std::vector<int> OriginalIndices;
300  std::vector<int> ObjectTruth;
302  void Reset();
303  };
304 
306  struct VTKIOEXODUS_EXPORT ObjectInfoType
307  {
309  int Size;
311  int Status;
313  int Id;
316  };
317 
319  struct VTKIOEXODUS_EXPORT MapInfoType : public ObjectInfoType
320  {
321  };
322 
325  struct VTKIOEXODUS_EXPORT BlockSetInfoType : public ObjectInfoType
326  {
333  std::map<vtkIdType, vtkIdType> PointMap;
338  std::map<vtkIdType, vtkIdType> ReversePointMap;
345 
346  BlockSetInfoType() { this->CachedConnectivity = nullptr; }
350  };
351 
353  struct VTKIOEXODUS_EXPORT BlockInfoType : public BlockSetInfoType
354  {
355  vtkStdString OriginalName; // useful to reset the name if XML metadata is invalid.
357  // number of boundaries per entry
358  // The index is the dimensionality of the entry. 0=node, 1=edge, 2=face
359  int BdsPerEntry[3];
361  std::vector<vtkStdString> AttributeNames;
362  std::vector<int> AttributeStatus;
363  // VTK cell type (a function of TypeName and BdsPerEntry...)
364  int CellType;
365  // Number of points per cell as used by VTK
366  // -- not what's in the file (i.e., BdsPerEntry[0] >= PointsPerCell)
368  };
369 
371  struct PartInfoType : public ObjectInfoType
372  {
373  std::vector<int> BlockIndices;
374  };
376  {
377  std::vector<int> BlockIndices;
378  };
380  {
381  std::vector<int> BlockIndices;
382  };
383 
386  {
387  int DistFact; // Number of distribution factors
388  // (for the entire block, not per array or entry)
389  };
390 
394  {
395  Scalar = 0,
396  Vector2 = 1,
397  Vector3 = 2,
398  SymmetricTensor = 3,
399  // (order xx, yy, zz, xy, yz, zx)
400  IntegrationPoint = 4
401  };
402 
405  {
406  Result = 0,
407  // (that vary over time)
408  Attribute = 1,
409  // (constants over time)
410  Map = 2,
411  Generated = 3
412  };
413 
416 
417  friend class vtkExodusIIReader;
418  friend class vtkPExodusIIReader;
419 
421  vtkGetObjectMacro(Parser, vtkExodusIIReaderParser);
422 
423  // BUG #15632: This method allows vtkPExodusIIReader to pass time information
424  // from one spatial file to another and avoiding have to read it for each of
425  // the files.
426  void SetTimesOverrides(const std::vector<double>& times)
427  {
428  this->Times = times;
429  this->SkipUpdateTimeInformation = true;
430  }
431 
432  // Because Parts, Materials, and assemblies are not stored as arrays,
433  // but rather as maps to the element blocks they make up,
434  // we cannot use the Get|SetObject__() methods directly.
435 
437  const char* GetPartName(int idx);
438  const char* GetPartBlockInfo(int idx);
439  int GetPartStatus(int idx);
441  void SetPartStatus(int idx, int on);
442  void SetPartStatus(const vtkStdString& name, int flag);
443 
445  const char* GetMaterialName(int idx);
446  int GetMaterialStatus(int idx);
448  void SetMaterialStatus(int idx, int on);
449  void SetMaterialStatus(const vtkStdString& name, int flag);
450 
452  const char* GetAssemblyName(int idx);
453  int GetAssemblyStatus(int idx);
455  void SetAssemblyStatus(int idx, int on);
456  void SetAssemblyStatus(const vtkStdString& name, int flag);
457 
459  {
460  this->FastPathObjectType = type;
461  }
462  void SetFastPathObjectId(vtkIdType id) { this->FastPathObjectId = id; }
463  vtkSetStringMacro(FastPathIdType);
464 
466 
475 
484 
491  void SetInitialObjectStatus(int otype, const char* name, int stat);
492 
498  void SetInitialObjectArrayStatus(int otype, const char* name, int stat);
499 
501 
503 
504 protected:
507 
509  void BuildSIL();
510 
514  int nn, char** np, vtksys::RegularExpression& re, vtkStdString& field, vtkStdString& ele);
515 
517  void GlomArrayNames(int i, int num_obj, int num_vars, char** var_names, int* truth_tab);
518 
521 
538  int AssembleOutputConnectivity(vtkIdType timeStep, int otyp, int oidx, int conntypidx,
539  BlockSetInfoType* bsinfop, vtkUnstructuredGrid* output);
547  vtkIdType timeStep, BlockSetInfoType* bsinfop, vtkUnstructuredGrid* output);
552  vtkIdType timeStep, BlockSetInfoType* bsinfop, vtkUnstructuredGrid* output);
557  vtkIdType timeStep, int otyp, int oidx, BlockSetInfoType* bsinfop, vtkUnstructuredGrid* output);
563  vtkIdType timeStep, int otyp, int oidx, vtkUnstructuredGrid* output);
566  vtkIdType timeStep, int otyp, int oidx, BlockSetInfoType* bsinfop, vtkUnstructuredGrid* output);
574  vtkIdType timeStep, BlockSetInfoType* bsinfop, vtkUnstructuredGrid* output);
576  vtkIdType timeStep, int otyp, int oidx, BlockSetInfoType* bsinfop, vtkUnstructuredGrid* output);
580 
598 
601 
604  BlockInfoType* binfo, vtkIntArray* facesPerCell, vtkIdTypeArray* exoCellConn);
605 
607  void InsertBlockCells(int otyp, int obj, int conn_type, int timeStep, BlockInfoType* binfop);
608 
610  void InsertSetCells(int otyp, int obj, int conn_type, int timeStep, SetInfoType* sinfop);
611 
614 
616  void InsertSetNodeCopies(vtkIdTypeArray* refs, int otyp, int obj, SetInfoType* sinfo);
617 
619  void InsertSetCellCopies(vtkIdTypeArray* refs, int otyp, int obj, SetInfoType* sinfo);
620 
622  void InsertSetSides(vtkIdTypeArray* refs, int otyp, int obj, SetInfoType* sinfo);
623 
630 
636 
642 
648  int GetNumberOfObjectsAtTypeIndex(int typeIndex);
649 
657  ObjectInfoType* GetObjectInfo(int typeIndex, int objectIndex);
658 
665  ObjectInfoType* GetSortedObjectInfo(int objectType, int objectIndex);
666 
673  ObjectInfoType* GetUnsortedObjectInfo(int objectType, int objectIndex);
674 
679  int GetBlockIndexFromFileGlobalId(int otyp, int refId);
680 
686 
691 
694 
698  ArrayInfoType* FindArrayInfoByName(int otyp, const char* name);
699 
703  int IsObjectTypeBlock(int otyp);
704  int IsObjectTypeSet(int otyp);
705  int IsObjectTypeMap(int otyp);
706 
713 
718 
723 
729  void RemoveBeginningAndTrailingSpaces(int len, char** names, int maxNameLength);
730 
733 
737  std::map<int, std::vector<BlockInfoType> > BlockInfo;
741  std::map<int, std::vector<SetInfoType> > SetInfo;
747  std::map<int, std::vector<MapInfoType> > MapInfo;
748 
749  std::vector<PartInfoType> PartInfo;
750  std::vector<MaterialInfoType> MaterialInfo;
751  std::vector<AssemblyInfoType> AssemblyInfo;
752 
757  std::map<int, std::vector<int> > SortedObjectIndices;
759  // defined on that type.
760  std::map<int, std::vector<ArrayInfoType> > ArrayInfo;
761 
766  std::map<int, std::vector<ArrayInfoType> > InitialArrayInfo;
767 
772  std::map<int, std::vector<ObjectInfoType> > InitialObjectInfo;
773 
777 
782 
784  int Exoid;
785 
787  struct ex_init_params ModelParameters;
788 
790  std::vector<double> Times;
792 
797 
805 
809  int FileId;
810 
813  //
815  double CacheSize;
816 
821 
823 
836 
841 
843 
852  std::map<int, std::vector<std::vector<vtkIdType> > > PolyhedralFaceConnArrays;
853 
857 
859 
860 private:
862  void operator=(const vtkExodusIIReaderPrivate&) = delete;
863 };
864 
865 #endif
866 #endif
867 #endif // vtkExodusIIReaderPrivate_h
868 // VTK-HeaderTest-Exclude: vtkExodusIIReaderPrivate.h
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:50
internal parser used by vtkExodusIIReader.
This class holds metadata for an Exodus file.
int AssembleOutputPointMaps(vtkIdType timeStep, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output)
Add maps to an output mesh.
const char * GetObjectAttributeName(int objectType, int objectIndex, int attributeIndex)
void SetFastPathObjectId(vtkIdType id)
void SetAssemblyStatus(const vtkStdString &name, int flag)
vtkTimeStamp InformationTimeStamp
Time stamp from last time we were in RequestInformation.
vtkExodusIIReader::ObjectType FastPathObjectType
static const char * GetGlobalVariableValuesArrayName()
void Reset()
Reset the class so that another file may be read.
virtual void SetDisplacementMagnitude(double s)
void InsertSetCellCopies(vtkIdTypeArray *refs, int otyp, int obj, SetInfoType *sinfo)
Insert cells referenced by an edge, face, or element set.
void ResetCache()
Clears out any data in the cache and restores it to its initial state.
void PrintData(ostream &os, vtkIndent indent)
const char * GetAssemblyName(int idx)
static const char * GetFileIdArrayName()
int IsObjectTypeSet(int otyp)
int CloseFile()
Close any ExodusII file currently open for reading. Returns 0 on success.
ObjectInfoType * GetSortedObjectInfo(int objectType, int objectIndex)
Return a pointer to the ObjectInfo of the specified type and index, but using indices sorted by objec...
void SetObjectAttributeStatus(int objectType, int objectIndex, int attribIndex, int status)
vtkDataArray * FindDisplacementVectors(int timeStep)
void AddPointArray(vtkDataArray *src, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output)
Add a point array to an output grid's point data, squeezing if necessary.
ArraySourceTypes
Tags to indicate the source of values for an array.
std::vector< double > Times
A list of time steps for which results variables are stored.
int GetObjectArrayStatus(int otype, int i)
For a given object type, returns the status of the i-th array.
int OpenFile(const char *filename)
Open an ExodusII file for reading. Returns 0 on success.
int GetAssemblyStatus(int idx)
int GetMaterialStatus(const vtkStdString &name)
int AssembleOutputPoints(vtkIdType timeStep, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output)
Fill the output grid's point coordinates array.
std::map< int, std::vector< SetInfoType > > SetInfo
Maps a set type (EX_ELEM_SET, ..., EX_NODE_SET) to a list of sets of that type.
void PrepareGeneratedArrayInfo()
Add generated array information to array info lists.
void SetCacheSize(double size)
Set the size of the cache in MiB.
const char * GetObjectName(int otype, int i)
For a given object type, returns the name of the i-th object.
void SetMaterialStatus(const vtkStdString &name, int flag)
vtkDataArray * GetCacheOrRead(vtkExodusIICacheKey)
Return an array for the specified cache key.
vtkExodusIIReader * Parent
Pointer to owning reader...
std::map< int, std::vector< ObjectInfoType > > InitialObjectInfo
Maps an object type (EX_ELEM_BLOCK, EX_NODE_SET, ...) to a list of objects defined on that type.
int RequestData(vtkIdType timeStep, vtkMultiBlockDataSet *output)
Read requested data and store in unstructured grid.
int GetObjectTypeIndexFromObjectType(int otyp)
Return the index of an object type (in a private list of all object types).
int GetBlockConnTypeFromBlockType(int btyp)
Given a block type (EDGE_BLOCK, ...), return the associated block connectivity type (EDGE_BLOCK_CONN,...
BlockInfoType * GetBlockFromFileGlobalId(int otyp, int refId)
Get the block containing the entity referenced by the specified file-global ID.
static const char * GetObjectIdArrayName()
int GetUnsortedObjectStatus(int otype, int i)
For a given object type, returns the status of the i-th object, where i is an index into the unsorted...
int GetObjectTypeFromMapType(int mtyp)
Given a map type (NODE_MAP, EDGE_MAP, ...) return the associated object type (NODAL,...
static const char * GetImplicitNodeIdArrayName()
void SetPartStatus(int idx, int on)
static const char * GetGlobalNodeIdArrayName()
vtkIdType GetPolyhedronFaceConnectivity(vtkIdType fileLocalFaceId, vtkIdType *&facePtIds)
Fetch the face-connectivity for one face of one polyhedron.
int GetBlockIndexFromFileGlobalId(int otyp, int refId)
Get the index of the block containing the entity referenced by the specified file-global ID.
static const char * GetGlobalVariableNamesArrayName()
int IsObjectTypeBlock(int otyp)
Does the specified object type match? Avoid using these...
void FreePolyhedronFaceArrays()
Free any arrays held by PolyhedralFaceConnArrays (for polyhedral-face-connectivity lookup).
int GetNumberOfObjectAttributes(int objectType, int objectIndex)
Unlike object arrays, attributes are only defined over blocks (not sets) and are defined on a per-blo...
int GetNumberOfObjectArrayComponents(int otype, int i)
For a given object type, returns the number of components of the i-th array.
void GetInitialObjectArrayStatus(int otype, ArrayInfoType *info)
For a given array type, looks for an object in the collection of initial objects of the same name,...
int GetMapTypeFromObjectType(int otyp)
void SetAssemblyStatus(int idx, int on)
int GetObjectAttributeIndex(int objectType, int objectIndex, const char *attribName)
int AssembleOutputGlobalArrays(vtkIdType timeStep, int otyp, int oidx, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output)
Add mesh-global field data such as QA records to the output mesh.
void InsertBlockCells(int otyp, int obj, int conn_type, int timeStep, BlockInfoType *binfop)
Insert cells from a specified block into a mesh.
int GetObjectStatus(int otype, int i)
For a given object type, returns the status of the i-th object.
std::map< int, std::vector< BlockInfoType > > BlockInfo
Maps a block type (EX_ELEM_BLOCK, EX_FACE_BLOCK, ...) to a list of blocks of that type.
double ModeShapeTime
The time value.
ArrayInfoType * FindArrayInfoByName(int otyp, const char *name)
Find an ArrayInfo object for a specific object type using the name as a key.
void DetermineVtkCellType(BlockInfoType &binfo)
Determine the VTK cell type for a given edge/face/element block.
ObjectInfoType * GetObjectInfo(int typeIndex, int objectIndex)
Return a pointer to the ObjectInfo of the specified type and index.
int AssembleArraysOverTime(vtkMultiBlockDataSet *output)
Add fast-path time-varying data to field data of an output block or set.
void SetInitialObjectArrayStatus(int otype, const char *name, int stat)
For a given array type, creates and stores an ArrayInfoType object using the given name and status.
std::vector< AssemblyInfoType > AssemblyInfo
int GetObjectId(int otype, int i)
For a given object type, return the user-assigned ID of the i-th object.
void BuildSIL()
Build SIL. This must be called only after RequestInformation().
void InsertSetCells(int otyp, int obj, int conn_type, int timeStep, SetInfoType *sinfop)
Insert cells from a specified set into a mesh.
int IsObjectTypeMap(int otyp)
void SetSqueezePoints(int sp)
Set whether subsequent RequestData() calls will produce the minimal point set required to represent t...
int AssembleOutputPointArrays(vtkIdType timeStep, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output)
Add the requested arrays to the output grid's point data.
int GetNumberOfNodes()
Return the number of nodes in the output (depends on SqueezePoints)
const char * GetPartName(int idx)
int AssembleOutputConnectivity(vtkIdType timeStep, int otyp, int oidx, int conntypidx, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output)
Read connectivity information and populate an unstructured grid with cells corresponding to a single ...
float ExodusVersion
The version of Exodus that wrote the currently open file (or a negative number otherwise).
int GetConnTypeIndexFromConnType(int ctyp)
Return the index of an object type (in a private list of all object types).
void GetInitialObjectStatus(int otype, ObjectInfoType *info)
For a given object type, looks for an object in the collection of initial objects of the same name,...
void SetFastPathObjectType(vtkExodusIIReader::ObjectType type)
const char * GetMaterialName(int idx)
ObjectInfoType * GetUnsortedObjectInfo(int objectType, int objectIndex)
Return a pointer to the ObjectInfo of the specified type and index, but using indices sorted by objec...
int GetTemporalTypeFromObjectType(int otyp)
void SetInitialObjectStatus(int otype, const char *name, int stat)
For a given object type, creates and stores an ObjectInfoType object using the given name and status.
int GetAssemblyStatus(const vtkStdString &name)
std::map< int, std::vector< std::vector< vtkIdType > > > PolyhedralFaceConnArrays
Face connectivity for polyhedra.
vtkMutableDirectedGraph * SIL
std::map< int, std::vector< int > > SortedObjectIndices
Maps an object type to vector of indices that reorder objects of that type by their IDs.
void RemoveBeginningAndTrailingSpaces(int len, char **names, int maxNameLength)
Function to trim space from names retrieved with ex_get_var_names.
std::vector< MaterialInfoType > MaterialInfo
int GetNumberOfObjectsOfType(int otype)
Returns the number of objects of a given type (e.g., EX_ELEM_BLOCK, EX_NODE_SET, ....
static const char * GetGlobalElementIdArrayName()
int GetObjectSize(int otype, int i)
For a given object type, return the size of the i-th object.
int VerifyIntegrationPointGlom(int nn, char **np, vtksys::RegularExpression &re, vtkStdString &field, vtkStdString &ele)
Returns true when order and text of names are consistent with integration points.
std::map< int, std::vector< ArrayInfoType > > ArrayInfo
Maps an object type (EX_ELEM_BLOCK, EX_NODE_SET, ...) to a list of arrays.
void SetPartStatus(const vtkStdString &name, int flag)
void SetObjectArrayStatus(int otype, int i, int stat)
For a given object type, sets the status of the i-th array.
static const char * GetImplicitElementIdArrayName()
int GetPartStatus(const vtkStdString &name)
~vtkExodusIIReaderPrivate() override
vtkMutableDirectedGraph * GetSIL()
Returns the SIL. This valid only after BuildSIL() has been called.
int RequestInformation()
Get metadata for an open file with handle exoid.
void ClearConnectivityCaches()
Delete any cached connectivity information (for all blocks and sets)
int AppWordSize
These aren't the variables you're looking for.
void ResetSettings()
Return user-specified variables to their default values.
const char * GetObjectArrayName(int otype, int i)
For a given object type, returns the name of the i-th array.
void InsertSetSides(vtkIdTypeArray *refs, int otyp, int obj, SetInfoType *sinfo)
Insert cells referenced by a side set.
int GetObjectAttributeStatus(int objectType, int objectIndex, int attribIndex)
void SetUnsortedObjectStatus(int otype, int i, int stat)
For a given object type, sets the status of the i-th object, where i is an index into the unsorted ob...
int GetNumberOfObjectArraysOfType(int otype)
Returns the number of arrays defined over objects of a given type (e.g., EX_ELEM_BLOCK,...
int SqueezePoints
Should the reader output only points used by elements in the output mesh, or all the points.
int AssembleOutputCellMaps(vtkIdType timeStep, int otyp, int oidx, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output)
int AssembleOutputCellArrays(vtkIdType timeStep, int otyp, int oidx, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output)
Add the requested arrays to the output grid's cell data.
const struct ex_init_params * GetModelParams() const
void InsertBlockPolyhedra(BlockInfoType *binfo, vtkIntArray *facesPerCell, vtkIdTypeArray *exoCellConn)
Insert polyhedral cells (called from InsertBlockCells when a block is polyhedral).
vtkExodusIIReaderParser * Parser
int GetPartStatus(int idx)
std::map< int, std::vector< MapInfoType > > MapInfo
Maps a map type (EX_ELEM_MAP, ..., EX_NODE_MAP) to a list of maps of that type.
double CacheSize
The size of the cache in MiB.
int AssembleOutputProceduralArrays(vtkIdType timeStep, int otyp, int oidx, vtkUnstructuredGrid *output)
Add procedurally generated arrays to an output mesh.
const char * GetPartBlockInfo(int idx)
void SetMaterialStatus(int idx, int on)
virtual void SetParser(vtkExodusIIReaderParser *)
void InsertSetNodeCopies(vtkIdTypeArray *refs, int otyp, int obj, SetInfoType *sinfo)
Insert cells referenced by a node set.
int GetNumberOfTimeSteps()
Return the number of time steps in the open file.
int SetUpEmptyGrid(vtkMultiBlockDataSet *output)
Description: Prepare a data set with the proper structure and arrays but no cells.
int GetMaterialStatus(int idx)
std::map< int, std::vector< ArrayInfoType > > InitialArrayInfo
Maps an object type (EX_ELEM_BLOCK, EX_NODE_SET, ...) to a list of arrays defined on that type.
vtkIdType GetSqueezePointId(BlockSetInfoType *bsinfop, int i)
Find or create a new SqueezePoint ID (unique sequential list of points referenced by cells in blocks/...
std::vector< PartInfoType > PartInfo
virtual void SetApplyDisplacements(vtkTypeBool d)
vtkExodusIICache * Cache
A least-recently-used cache to hold raw arrays.
void SetTimesOverrides(const std::vector< double > &times)
GlomTypes
Tags to indicate how single-component Exodus arrays are glommed (aggregated) into multi-component VTK...
int GetSetTypeFromSetConnType(int sctyp)
Given a set connectivity type (NODE_SET_CONN, ...), return the associated object type (NODE_SET,...
int Exoid
The handle of the currently open file.
void GlomArrayNames(int i, int num_obj, int num_vars, char **var_names, int *truth_tab)
Aggregate Exodus array names into VTK arrays with multiple components.
int GetNumberOfObjectsAtTypeIndex(int typeIndex)
Return the number of objects of the given type.
void SetObjectStatus(int otype, int i, int stat)
For a given object type, sets the status of the i-th object.
static vtkExodusIIReaderPrivate * New()
Read exodus 2 files .ex2.
dynamic, self-adjusting array of vtkIdType
a simple class to control print indentation
Definition: vtkIndent.h:34
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:40
Composite dataset that organizes datasets into blocks.
An editable directed graph.
abstract base class for most VTK objects
Definition: vtkObject.h:63
Read Exodus II files (.exii)
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:35
record modification and/or execution time
Definition: vtkTimeStamp.h:33
dataset represents arbitrary combinations of all possible cell types
@ field
Definition: vtkX3D.h:183
@ on
Definition: vtkX3D.h:445
@ info
Definition: vtkX3D.h:382
@ type
Definition: vtkX3D.h:522
@ name
Definition: vtkX3D.h:225
@ size
Definition: vtkX3D.h:259
A struct to hold information about time-varying arrays.
int StorageType
Storage type of array (a type that can be passed to vtkDataArray::Create())
void Reset()
Clear all the structure members.
int GlomType
The type of "glomming" performed.
std::vector< int > ObjectTruth
A map describing which objects the variable is defined on.
vtkStdString Name
The name of the array.
int Source
The source of the array (Result or Attribute)
std::vector< int > OriginalIndices
The index of each component of the array as ordered by the Exodus file.
int Status
Whether or not the array should be loaded by RequestData.
std::vector< vtkStdString > OriginalNames
The name of each component of the array as defined by the Exodus file.
int Components
The number of components in the array.
A struct to hold information about Exodus blocks.
A struct to hold information about Exodus blocks or sets (they have some members in common)
std::map< vtkIdType, vtkIdType > PointMap
A map from nodal IDs in an Exodus file to nodal IDs in the output mesh.
vtkIdType FileOffset
Id (1-based) of first entry in file-local list across all blocks in file.
BlockSetInfoType & operator=(const BlockSetInfoType &block)
std::map< vtkIdType, vtkIdType > ReversePointMap
A map from nodal ids in the output mesh to those in an Exodus file.
vtkUnstructuredGrid * CachedConnectivity
Cached cell connectivity arrays for mesh.
BlockSetInfoType(const BlockSetInfoType &block)
vtkIdType NextSqueezePoint
The next vtk ID to use for a connectivity entry when point squeezing is on and no point ID exists.
A struct to hold information about Exodus maps.
A struct to hold information about Exodus objects (blocks, sets, maps)
int Size
Number of entries in this block.
int Id
User-assigned identification number.
int Status
Should the reader load this block?
A struct to hold information about Exodus blocks.
A struct to hold information about Exodus sets.
int vtkTypeBool
Definition: vtkABI.h:69
int vtkIdType
Definition: vtkType.h:338