VTK
9.1.0
|
This class holds metadata for an Exodus file. More...
#include <vtkExodusIIReaderPrivate.h>
Classes | |
struct | ArrayInfoType |
A struct to hold information about time-varying arrays. More... | |
struct | AssemblyInfoType |
struct | BlockInfoType |
A struct to hold information about Exodus blocks. More... | |
struct | BlockSetInfoType |
A struct to hold information about Exodus blocks or sets (they have some members in common) More... | |
struct | MapInfoType |
A struct to hold information about Exodus maps. More... | |
struct | MaterialInfoType |
struct | ObjectInfoType |
A struct to hold information about Exodus objects (blocks, sets, maps) More... | |
struct | PartInfoType |
A struct to hold information about Exodus blocks. More... | |
struct | SetInfoType |
A struct to hold information about Exodus sets. More... | |
Public Types | |
enum | GlomTypes { Scalar = 0 , Vector2 = 1 , Vector3 = 2 , SymmetricTensor = 3 , IntegrationPoint = 4 } |
Tags to indicate how single-component Exodus arrays are glommed (aggregated) into multi-component VTK arrays. More... | |
enum | ArraySourceTypes { Result = 0 , Attribute = 1 , Map = 2 , Generated = 3 } |
Tags to indicate the source of values for an array. More... | |
typedef vtkObject | Superclass |
Public Member Functions | |
void | PrintData (ostream &os, vtkIndent indent) |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Methods invoked by print to print information about the object including superclasses. | |
virtual vtkTypeBool | IsA (const char *type) |
Return 1 if this class is the same type of (or a subclass of) the named class. | |
vtkExodusIIReaderPrivate * | NewInstance () const |
int | OpenFile (const char *filename) |
Open an ExodusII file for reading. Returns 0 on success. | |
int | CloseFile () |
Close any ExodusII file currently open for reading. Returns 0 on success. | |
int | RequestInformation () |
Get metadata for an open file with handle exoid. | |
vtkMutableDirectedGraph * | GetSIL () |
Returns the SIL. This valid only after BuildSIL() has been called. | |
int | RequestData (vtkIdType timeStep, vtkMultiBlockDataSet *output) |
Read requested data and store in unstructured grid. | |
int | SetUpEmptyGrid (vtkMultiBlockDataSet *output) |
Description: Prepare a data set with the proper structure and arrays but no cells. | |
void | Reset () |
Reset the class so that another file may be read. | |
void | ResetSettings () |
Return user-specified variables to their default values. | |
void | ResetCache () |
Clears out any data in the cache and restores it to its initial state. | |
void | SetCacheSize (double size) |
Set the size of the cache in MiB. | |
virtual double | GetCacheSize () |
Get the size of the cache in MiB. | |
int | GetNumberOfTimeSteps () |
Return the number of time steps in the open file. | |
virtual int | GetSqueezePoints () |
Return whether subsequent RequestData() calls will produce the minimal point set required to represent the output. | |
void | SetSqueezePoints (int sp) |
Set whether subsequent RequestData() calls will produce the minimal point set required to represent the output. | |
virtual void | SqueezePointsOn () |
Convenience routines that for producing (or not) the minimal point set required to represent the output. | |
virtual void | SqueezePointsOff () |
int | GetNumberOfNodes () |
Return the number of nodes in the output (depends on SqueezePoints) | |
int | GetNumberOfObjectsOfType (int otype) |
Returns the number of objects of a given type (e.g., EX_ELEM_BLOCK, EX_NODE_SET, ...). | |
int | GetNumberOfObjectArraysOfType (int otype) |
Returns the number of arrays defined over objects of a given type (e.g., EX_ELEM_BLOCK, EX_NODE_SET, ...). | |
const char * | GetObjectName (int otype, int i) |
For a given object type, returns the name of the i-th object. | |
int | GetObjectId (int otype, int i) |
For a given object type, return the user-assigned ID of the i-th object. | |
int | GetObjectSize (int otype, int i) |
For a given object type, return the size of the i-th object. | |
int | GetObjectStatus (int otype, int i) |
For a given object type, returns the status of the i-th object. | |
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 object array. | |
void | SetObjectStatus (int otype, int i, int stat) |
For a given object type, sets the status of the i-th object. | |
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 object array. | |
const char * | GetObjectArrayName (int otype, int i) |
For a given object type, returns the name of the i-th array. | |
int | GetNumberOfObjectArrayComponents (int otype, int i) |
For a given object type, returns the number of components of the i-th array. | |
int | GetObjectArrayStatus (int otype, int i) |
For a given object type, returns the status of the i-th array. | |
void | SetObjectArrayStatus (int otype, int i, int stat) |
For a given object type, sets the status of the i-th array. | |
int | GetNumberOfObjectAttributes (int objectType, int objectIndex) |
Unlike object arrays, attributes are only defined over blocks (not sets) and are defined on a per-block (not a per-block-type) basis. | |
const char * | GetObjectAttributeName (int objectType, int objectIndex, int attributeIndex) |
int | GetObjectAttributeIndex (int objectType, int objectIndex, const char *attribName) |
int | GetObjectAttributeStatus (int objectType, int objectIndex, int attribIndex) |
void | SetObjectAttributeStatus (int objectType, int objectIndex, int attribIndex, int status) |
virtual vtkTypeBool | GetGenerateObjectIdArray () |
Generate an array containing the block or set ID associated with each cell. | |
virtual void | SetGenerateObjectIdArray (vtkTypeBool) |
virtual void | SetGenerateGlobalElementIdArray (vtkTypeBool) |
virtual vtkTypeBool | GetGenerateGlobalElementIdArray () |
virtual void | SetGenerateGlobalNodeIdArray (vtkTypeBool) |
virtual vtkTypeBool | GetGenerateGlobalNodeIdArray () |
virtual void | SetGenerateImplicitElementIdArray (vtkTypeBool) |
virtual vtkTypeBool | GetGenerateImplicitElementIdArray () |
virtual void | SetGenerateImplicitNodeIdArray (vtkTypeBool) |
virtual vtkTypeBool | GetGenerateImplicitNodeIdArray () |
virtual void | SetGenerateFileIdArray (vtkTypeBool) |
Should we generate an array defined over all cells (whether they are members of blocks or sets) indicating the source file? | |
virtual vtkTypeBool | GetGenerateFileIdArray () |
virtual void | SetFileId (int) |
Set/get the number that identifies this file in a series of files (defaults to 0). | |
virtual int | GetFileId () |
virtual void | SetApplyDisplacements (vtkTypeBool d) |
virtual vtkTypeBool | GetApplyDisplacements () |
virtual void | SetDisplacementMagnitude (double s) |
virtual double | GetDisplacementMagnitude () |
virtual void | SetHasModeShapes (int) |
virtual int | GetHasModeShapes () |
virtual void | SetModeShapeTime (double) |
virtual double | GetModeShapeTime () |
virtual void | SetAnimateModeShapes (int) |
virtual int | GetAnimateModeShapes () |
virtual void | SetIgnoreFileTime (bool) |
virtual bool | GetIgnoreFileTime () |
vtkDataArray * | FindDisplacementVectors (int timeStep) |
const struct ex_init_params * | GetModelParams () const |
virtual void | SetParser (vtkExodusIIReaderParser *) |
virtual vtkExodusIIReaderParser * | GetParser () |
void | SetTimesOverrides (const std::vector< double > ×) |
int | GetNumberOfParts () |
const char * | GetPartName (int idx) |
const char * | GetPartBlockInfo (int idx) |
int | GetPartStatus (int idx) |
int | GetPartStatus (const vtkStdString &name) |
void | SetPartStatus (int idx, int on) |
void | SetPartStatus (const vtkStdString &name, int flag) |
int | GetNumberOfMaterials () |
const char * | GetMaterialName (int idx) |
int | GetMaterialStatus (int idx) |
int | GetMaterialStatus (const vtkStdString &name) |
void | SetMaterialStatus (int idx, int on) |
void | SetMaterialStatus (const vtkStdString &name, int flag) |
int | GetNumberOfAssemblies () |
const char * | GetAssemblyName (int idx) |
int | GetAssemblyStatus (int idx) |
int | GetAssemblyStatus (const vtkStdString &name) |
void | SetAssemblyStatus (int idx, int on) |
void | SetAssemblyStatus (const vtkStdString &name, int flag) |
void | SetFastPathObjectType (vtkExodusIIReader::ObjectType type) |
void | SetFastPathObjectId (vtkIdType id) |
virtual void | SetFastPathIdType (const char *) |
bool | IsXMLMetadataValid () |
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, or if the name is empty, then of the same id as "info". | |
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, or if the name is empty, then of the same id as "info". | |
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. | |
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. | |
int | UpdateTimeInformation () |
Public Member Functions inherited from vtkObject | |
vtkBaseTypeMacro (vtkObject, vtkObjectBase) | |
virtual void | DebugOn () |
Turn debugging output on. | |
virtual void | DebugOff () |
Turn debugging output off. | |
bool | GetDebug () |
Get the value of the debug flag. | |
void | SetDebug (bool debugFlag) |
Set the value of the debug flag. | |
virtual void | Modified () |
Update the modification time for this object. | |
virtual vtkMTimeType | GetMTime () |
Return this object's modified time. | |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Methods invoked by print to print information about the object including superclasses. | |
void | RemoveObserver (unsigned long tag) |
void | RemoveObservers (unsigned long event) |
void | RemoveObservers (const char *event) |
void | RemoveAllObservers () |
vtkTypeBool | HasObserver (unsigned long event) |
vtkTypeBool | HasObserver (const char *event) |
int | InvokeEvent (unsigned long event) |
int | InvokeEvent (const char *event) |
unsigned long | AddObserver (unsigned long event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
unsigned long | AddObserver (const char *event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
vtkCommand * | GetCommand (unsigned long tag) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
void | RemoveObserver (vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
void | RemoveObservers (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
void | RemoveObservers (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
vtkTypeBool | HasObserver (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
vtkTypeBool | HasObserver (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Allow user to set the AbortFlagOn() with the return value of the callback method. | |
int | InvokeEvent (unsigned long event, void *callData) |
This method invokes an event and return whether the event was aborted or not. | |
int | InvokeEvent (const char *event, void *callData) |
This method invokes an event and return whether the event was aborted or not. | |
Public Member Functions inherited from vtkObjectBase | |
const char * | GetClassName () const |
Return the class name as a string. | |
virtual vtkTypeBool | IsA (const char *name) |
Return 1 if this class is the same type of (or a subclass of) the named class. | |
virtual vtkIdType | GetNumberOfGenerationsFromBase (const char *name) |
Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). | |
virtual void | Delete () |
Delete a VTK object. | |
virtual void | FastDelete () |
Delete a reference to this object. | |
void | InitializeObjectBase () |
void | Print (ostream &os) |
Print an object to an ostream. | |
virtual void | Register (vtkObjectBase *o) |
Increase the reference count (mark as used by another object). | |
virtual void | UnRegister (vtkObjectBase *o) |
Decrease the reference count (release by another object). | |
int | GetReferenceCount () |
Return the current reference count of this object. | |
void | SetReferenceCount (int) |
Sets the reference count. | |
bool | GetIsInMemkind () const |
A local state flag that remembers whether this object lives in the normal or extended memory space. | |
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. | |
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. | |
Static Public Member Functions | |
static vtkExodusIIReaderPrivate * | New () |
static vtkTypeBool | IsTypeOf (const char *type) |
static vtkExodusIIReaderPrivate * | SafeDownCast (vtkObjectBase *o) |
static const char * | GetObjectIdArrayName () |
static const char * | GetGlobalElementIdArrayName () |
static const char * | GetGlobalNodeIdArrayName () |
static const char * | GetImplicitElementIdArrayName () |
static const char * | GetImplicitNodeIdArrayName () |
static const char * | GetFileIdArrayName () |
static const char * | GetGlobalVariableValuesArrayName () |
static const char * | GetGlobalVariableNamesArrayName () |
Static Public Member Functions inherited from vtkObject | |
static vtkObject * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. | |
static void | BreakOnError () |
This method is called when vtkErrorMacro executes. | |
static void | SetGlobalWarningDisplay (int val) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
static void | GlobalWarningDisplayOn () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
static void | GlobalWarningDisplayOff () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
static int | GetGlobalWarningDisplay () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
Static Public Member Functions inherited from vtkObjectBase | |
static vtkTypeBool | IsTypeOf (const char *name) |
Return 1 if this class type is the same type of (or a subclass of) the named class. | |
static vtkIdType | GetNumberOfGenerationsFromBaseType (const char *name) |
Given a the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). | |
static vtkObjectBase * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. | |
static void | SetMemkindDirectory (const char *directoryname) |
The name of a directory, ideally mounted -o dax, to memory map an extended memory space within. | |
static bool | GetUsingMemkind () |
A global state flag that controls whether vtkObjects are constructed in the usual way (the default) or within the extended memory space. | |
Public Attributes | |
vtkTimeStamp | InformationTimeStamp |
Time stamp from last time we were in RequestInformation. | |
bool | ProducedFastPathOutput |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkExodusIIReaderPrivate () | |
~vtkExodusIIReaderPrivate () override | |
void | BuildSIL () |
Build SIL. This must be called only after RequestInformation(). | |
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. | |
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. | |
void | PrepareGeneratedArrayInfo () |
Add generated array information to array info lists. | |
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 block or set. | |
int | AssembleOutputPoints (vtkIdType timeStep, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output) |
Fill the output grid's point coordinates array. | |
int | AssembleOutputPointArrays (vtkIdType timeStep, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output) |
Add the requested arrays to the output grid's point data. | |
int | AssembleOutputCellArrays (vtkIdType timeStep, int otyp, int oidx, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output) |
Add the requested arrays to the output grid's cell data. | |
int | AssembleOutputProceduralArrays (vtkIdType timeStep, int otyp, int oidx, vtkUnstructuredGrid *output) |
Add procedurally generated arrays to an output mesh. | |
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. | |
int | AssembleOutputPointMaps (vtkIdType timeStep, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output) |
Add maps to an output mesh. | |
int | AssembleOutputCellMaps (vtkIdType timeStep, int otyp, int oidx, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output) |
int | AssembleArraysOverTime (vtkMultiBlockDataSet *output) |
Add fast-path time-varying data to field data of an output block or set. | |
vtkIdType | GetPolyhedronFaceConnectivity (vtkIdType fileLocalFaceId, vtkIdType *&facePtIds) |
Fetch the face-connectivity for one face of one polyhedron. | |
void | FreePolyhedronFaceArrays () |
Free any arrays held by PolyhedralFaceConnArrays (for polyhedral-face-connectivity lookup). | |
void | InsertBlockPolyhedra (BlockInfoType *binfo, vtkIntArray *facesPerCell, vtkIdTypeArray *exoCellConn) |
Insert polyhedral cells (called from InsertBlockCells when a block is polyhedral). | |
void | InsertBlockCells (int otyp, int obj, int conn_type, int timeStep, BlockInfoType *binfop) |
Insert cells from a specified block into a mesh. | |
void | InsertSetCells (int otyp, int obj, int conn_type, int timeStep, SetInfoType *sinfop) |
Insert cells from a specified set into a mesh. | |
void | AddPointArray (vtkDataArray *src, BlockSetInfoType *bsinfop, vtkUnstructuredGrid *output) |
Add a point array to an output grid's point data, squeezing if necessary. | |
void | InsertSetNodeCopies (vtkIdTypeArray *refs, int otyp, int obj, SetInfoType *sinfo) |
Insert cells referenced by a node set. | |
void | InsertSetCellCopies (vtkIdTypeArray *refs, int otyp, int obj, SetInfoType *sinfo) |
Insert cells referenced by an edge, face, or element set. | |
void | InsertSetSides (vtkIdTypeArray *refs, int otyp, int obj, SetInfoType *sinfo) |
Insert cells referenced by a side set. | |
vtkDataArray * | GetCacheOrRead (vtkExodusIICacheKey) |
Return an array for the specified cache key. | |
int | GetConnTypeIndexFromConnType (int ctyp) |
Return the index of an object type (in a private list of all object types). | |
int | GetObjectTypeIndexFromObjectType (int otyp) |
Return the index of an object type (in a private list of all object types). | |
int | GetNumberOfObjectsAtTypeIndex (int typeIndex) |
Return the number of objects of the given type. | |
ObjectInfoType * | GetObjectInfo (int typeIndex, int objectIndex) |
Return a pointer to the ObjectInfo of the specified type and index. | |
ObjectInfoType * | GetSortedObjectInfo (int objectType, int objectIndex) |
Return a pointer to the ObjectInfo of the specified type and index, but using indices sorted by object ID. | |
ObjectInfoType * | GetUnsortedObjectInfo (int objectType, int objectIndex) |
Return a pointer to the ObjectInfo of the specified type and index, but using indices sorted by object ID. | |
int | GetBlockIndexFromFileGlobalId (int otyp, int refId) |
Get the index of the block containing the entity referenced by the specified file-global ID. | |
BlockInfoType * | GetBlockFromFileGlobalId (int otyp, int refId) |
Get the block containing the entity referenced by the specified file-global ID. | |
vtkIdType | GetSqueezePointId (BlockSetInfoType *bsinfop, int i) |
Find or create a new SqueezePoint ID (unique sequential list of points referenced by cells in blocks/sets with Status == 1) | |
void | DetermineVtkCellType (BlockInfoType &binfo) |
Determine the VTK cell type for a given edge/face/element block. | |
ArrayInfoType * | FindArrayInfoByName (int otyp, const char *name) |
Find an ArrayInfo object for a specific object type using the name as a key. | |
int | IsObjectTypeBlock (int otyp) |
Does the specified object type match? Avoid using these... they aren't robust against new types being implemented. | |
int | IsObjectTypeSet (int otyp) |
int | IsObjectTypeMap (int otyp) |
int | GetObjectTypeFromMapType (int mtyp) |
Given a map type (NODE_MAP, EDGE_MAP, ...) return the associated object type (NODAL, EDGE_BLOCK, ...) or vice-versa. | |
int | GetMapTypeFromObjectType (int otyp) |
int | GetTemporalTypeFromObjectType (int otyp) |
int | GetSetTypeFromSetConnType (int sctyp) |
Given a set connectivity type (NODE_SET_CONN, ...), return the associated object type (NODE_SET, ...) or vice-versa. | |
int | GetBlockConnTypeFromBlockType (int btyp) |
Given a block type (EDGE_BLOCK, ...), return the associated block connectivity type (EDGE_BLOCK_CONN, ...) or vice-versa. | |
void | RemoveBeginningAndTrailingSpaces (int len, char **names, int maxNameLength) |
Function to trim space from names retrieved with ex_get_var_names. | |
void | ClearConnectivityCaches () |
Delete any cached connectivity information (for all blocks and sets) | |
Protected Member Functions inherited from vtkObject | |
vtkObject () | |
~vtkObject () override | |
void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr) |
These methods allow a command to exclusively grab all events. | |
void | InternalReleaseFocus () |
These methods allow a command to exclusively grab all events. | |
Protected Member Functions inherited from vtkObjectBase | |
vtkObjectBase () | |
virtual | ~vtkObjectBase () |
virtual void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) |
virtual void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) |
virtual void | ReportReferences (vtkGarbageCollector *) |
vtkObjectBase (const vtkObjectBase &) | |
void | operator= (const vtkObjectBase &) |
Protected Attributes | |
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. | |
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. | |
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. | |
std::vector< PartInfoType > | PartInfo |
std::vector< MaterialInfoType > | MaterialInfo |
std::vector< AssemblyInfoType > | AssemblyInfo |
std::map< int, std::vector< int > > | SortedObjectIndices |
Maps an object type to vector of indices that reorder objects of that type by their IDs. | |
std::map< int, std::vector< ArrayInfoType > > | ArrayInfo |
Maps an object type (EX_ELEM_BLOCK, EX_NODE_SET, ...) to a list of arrays. | |
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. | |
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 | AppWordSize |
These aren't the variables you're looking for. | |
int | DiskWordSize |
float | ExodusVersion |
The version of Exodus that wrote the currently open file (or a negative number otherwise). | |
int | Exoid |
The handle of the currently open file. | |
struct ex_init_params | ModelParameters |
Parameters describing the currently open Exodus file. | |
std::vector< double > | Times |
A list of time steps for which results variables are stored. | |
bool | SkipUpdateTimeInformation |
double | ModeShapeTime |
The time value. | |
vtkTypeBool | GenerateObjectIdArray |
vtkTypeBool | GenerateGlobalIdArray |
vtkTypeBool | GenerateFileIdArray |
vtkTypeBool | GenerateGlobalElementIdArray |
vtkTypeBool | GenerateGlobalNodeIdArray |
vtkTypeBool | GenerateImplicitElementIdArray |
vtkTypeBool | GenerateImplicitNodeIdArray |
int | FileId |
Defaults to 0. | |
vtkExodusIICache * | Cache |
A least-recently-used cache to hold raw arrays. | |
double | CacheSize |
The size of the cache in MiB. | |
vtkTypeBool | ApplyDisplacements |
float | DisplacementMagnitude |
vtkTypeBool | HasModeShapes |
vtkTypeBool | AnimateModeShapes |
bool | IgnoreFileTime |
int | SqueezePoints |
Should the reader output only points used by elements in the output mesh, or all the points. | |
vtkExodusIIReader * | Parent |
Pointer to owning reader... this is not registered in order to avoid circular references. | |
vtkExodusIIReaderParser * | Parser |
std::map< int, std::vector< std::vector< vtkIdType > > > | PolyhedralFaceConnArrays |
Face connectivity for polyhedra. | |
vtkExodusIIReader::ObjectType | FastPathObjectType |
vtkIdType | FastPathObjectId |
char * | FastPathIdType |
vtkMutableDirectedGraph * | SIL |
Protected Attributes inherited from vtkObject | |
bool | Debug |
vtkTimeStamp | MTime |
vtkSubjectHelper * | SubjectHelper |
Protected Attributes inherited from vtkObjectBase | |
std::atomic< int32_t > | ReferenceCount |
vtkWeakPointerBase ** | WeakPointers |
Friends | |
class | vtkExodusIIReader |
class | vtkPExodusIIReader |
Additional Inherited Members | |
Static Protected Member Functions inherited from vtkObjectBase | |
static vtkMallocingFunction | GetCurrentMallocFunction () |
static vtkReallocingFunction | GetCurrentReallocFunction () |
static vtkFreeingFunction | GetCurrentFreeFunction () |
static vtkFreeingFunction | GetAlternateFreeFunction () |
This class holds metadata for an Exodus file.
Definition at line 32 of file vtkExodusIIReaderPrivate.h.
Definition at line 39 of file vtkExodusIIReaderPrivate.h.
Tags to indicate how single-component Exodus arrays are glommed (aggregated) into multi-component VTK arrays.
Definition at line 397 of file vtkExodusIIReaderPrivate.h.
Tags to indicate the source of values for an array.
Definition at line 408 of file vtkExodusIIReaderPrivate.h.
|
protected |
|
overrideprotected |
|
static |
|
inline |
Definition at line 37 of file vtkExodusIIReaderPrivate.h.
|
overridevirtual |
|
static |
|
virtual |
Return 1 if this class is the same type of (or a subclass of) the named class.
Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObjectBase.
|
static |
|
protectedvirtual |
vtkExodusIIReaderPrivate * vtkExodusIIReaderPrivate::NewInstance | ( | ) | const |
int vtkExodusIIReaderPrivate::OpenFile | ( | const char * | filename | ) |
Open an ExodusII file for reading. Returns 0 on success.
int vtkExodusIIReaderPrivate::CloseFile | ( | ) |
Close any ExodusII file currently open for reading. Returns 0 on success.
int vtkExodusIIReaderPrivate::RequestInformation | ( | ) |
Get metadata for an open file with handle exoid.
|
inline |
Returns the SIL. This valid only after BuildSIL() has been called.
Definition at line 52 of file vtkExodusIIReaderPrivate.h.
int vtkExodusIIReaderPrivate::RequestData | ( | vtkIdType | timeStep, |
vtkMultiBlockDataSet * | output | ||
) |
Read requested data and store in unstructured grid.
int vtkExodusIIReaderPrivate::SetUpEmptyGrid | ( | vtkMultiBlockDataSet * | output | ) |
Description: Prepare a data set with the proper structure and arrays but no cells.
This is used by the parallel reader when a process has no files assigned to it.
void vtkExodusIIReaderPrivate::Reset | ( | ) |
Reset the class so that another file may be read.
This does not change any user-specified parameters, such as which generated arrays should be present, whether there are mode shapes or time steps, etc. Note that which arrays should be loaded is a more delicate issue; if you set these after RequestInformation has been called, these will not be saved. Any settings you make before RequestInformation is called will be saved because they are stored in InitialArrayInfo and InitialObjectInfo.
void vtkExodusIIReaderPrivate::ResetSettings | ( | ) |
Return user-specified variables to their default values.
Calling ResetSettings() and then Reset() will return the class to a state just like it was after New() was called.
void vtkExodusIIReaderPrivate::ResetCache | ( | ) |
Clears out any data in the cache and restores it to its initial state.
void vtkExodusIIReaderPrivate::SetCacheSize | ( | double | size | ) |
Set the size of the cache in MiB.
|
virtual |
Get the size of the cache in MiB.
|
inline |
Return the number of time steps in the open file.
You must have called RequestInformation() before invoking this member function.
Definition at line 95 of file vtkExodusIIReaderPrivate.h.
|
virtual |
Return whether subsequent RequestData() calls will produce the minimal point set required to represent the output.
void vtkExodusIIReaderPrivate::SetSqueezePoints | ( | int | sp | ) |
Set whether subsequent RequestData() calls will produce the minimal point set required to represent the output.
|
virtual |
Convenience routines that for producing (or not) the minimal point set required to represent the output.
|
virtual |
int vtkExodusIIReaderPrivate::GetNumberOfNodes | ( | ) |
Return the number of nodes in the output (depends on SqueezePoints)
int vtkExodusIIReaderPrivate::GetNumberOfObjectsOfType | ( | int | otype | ) |
Returns the number of objects of a given type (e.g., EX_ELEM_BLOCK, EX_NODE_SET, ...).
You must have called RequestInformation before invoking this member function.
int vtkExodusIIReaderPrivate::GetNumberOfObjectArraysOfType | ( | int | otype | ) |
Returns the number of arrays defined over objects of a given type (e.g., EX_ELEM_BLOCK, EX_NODE_SET, ...).
You must have called RequestInformation before invoking this member function.
N.B.: This method will eventually disappear. Really, what we should be providing is an interface to query the arrays defined on a particular object, not a class of objects. However, until the reader outputs multiblock datasets, we can't be that specific.
const char * vtkExodusIIReaderPrivate::GetObjectName | ( | int | otype, |
int | i | ||
) |
For a given object type, returns the name of the i-th object.
You must have called RequestInformation before invoking this member function.
int vtkExodusIIReaderPrivate::GetObjectId | ( | int | otype, |
int | i | ||
) |
For a given object type, return the user-assigned ID of the i-th object.
You must have called RequestInformation before invoking this member function.
int vtkExodusIIReaderPrivate::GetObjectSize | ( | int | otype, |
int | i | ||
) |
For a given object type, return the size of the i-th object.
The size is the number of entries. As an example, for an element block, it is the number of elements. You must have called RequestInformation before invoking this member function.
int vtkExodusIIReaderPrivate::GetObjectStatus | ( | int | otype, |
int | i | ||
) |
For a given object type, returns the status of the i-th object.
You must have called RequestInformation before invoking this member function.
int vtkExodusIIReaderPrivate::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 object array.
You must have called RequestInformation before invoking this member function.
void vtkExodusIIReaderPrivate::SetObjectStatus | ( | int | otype, |
int | i, | ||
int | stat | ||
) |
For a given object type, sets the status of the i-th object.
You must have called RequestInformation before invoking this member function.
void vtkExodusIIReaderPrivate::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 object array.
You must have called RequestInformation before invoking this member function.
const char * vtkExodusIIReaderPrivate::GetObjectArrayName | ( | int | otype, |
int | i | ||
) |
For a given object type, returns the name of the i-th array.
You must have called RequestInformation before invoking this member function.
int vtkExodusIIReaderPrivate::GetNumberOfObjectArrayComponents | ( | int | otype, |
int | i | ||
) |
For a given object type, returns the number of components of the i-th array.
You must have called RequestInformation before invoking this member function.
int vtkExodusIIReaderPrivate::GetObjectArrayStatus | ( | int | otype, |
int | i | ||
) |
For a given object type, returns the status of the i-th array.
You must have called RequestInformation before invoking this member function.
void vtkExodusIIReaderPrivate::SetObjectArrayStatus | ( | int | otype, |
int | i, | ||
int | stat | ||
) |
For a given object type, sets the status of the i-th array.
You must have called RequestInformation before invoking this member function.
int vtkExodusIIReaderPrivate::GetNumberOfObjectAttributes | ( | int | objectType, |
int | objectIndex | ||
) |
Unlike object arrays, attributes are only defined over blocks (not sets) and are defined on a per-block (not a per-block-type) basis.
In other words, there is no truth table for attributes. This means the interface is different because each block can have a different number of attributes with different names.
const char * vtkExodusIIReaderPrivate::GetObjectAttributeName | ( | int | objectType, |
int | objectIndex, | ||
int | attributeIndex | ||
) |
int vtkExodusIIReaderPrivate::GetObjectAttributeIndex | ( | int | objectType, |
int | objectIndex, | ||
const char * | attribName | ||
) |
int vtkExodusIIReaderPrivate::GetObjectAttributeStatus | ( | int | objectType, |
int | objectIndex, | ||
int | attribIndex | ||
) |
void vtkExodusIIReaderPrivate::SetObjectAttributeStatus | ( | int | objectType, |
int | objectIndex, | ||
int | attribIndex, | ||
int | status | ||
) |
|
virtual |
Generate an array containing the block or set ID associated with each cell.
|
virtual |
|
inlinestatic |
Definition at line 215 of file vtkExodusIIReaderPrivate.h.
|
virtual |
|
virtual |
|
inlinestatic |
Definition at line 219 of file vtkExodusIIReaderPrivate.h.
|
virtual |
|
virtual |
|
inlinestatic |
Definition at line 223 of file vtkExodusIIReaderPrivate.h.
|
virtual |
|
virtual |
|
inlinestatic |
Definition at line 227 of file vtkExodusIIReaderPrivate.h.
|
virtual |
|
virtual |
|
inlinestatic |
Definition at line 231 of file vtkExodusIIReaderPrivate.h.
|
virtual |
Should we generate an array defined over all cells (whether they are members of blocks or sets) indicating the source file?
|
virtual |
|
inlinestatic |
Definition at line 238 of file vtkExodusIIReaderPrivate.h.
|
virtual |
Set/get the number that identifies this file in a series of files (defaults to 0).
|
virtual |
|
inlinestatic |
Definition at line 244 of file vtkExodusIIReaderPrivate.h.
|
inlinestatic |
Definition at line 245 of file vtkExodusIIReaderPrivate.h.
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
vtkDataArray * vtkExodusIIReaderPrivate::FindDisplacementVectors | ( | int | timeStep | ) |
|
inline |
Definition at line 267 of file vtkExodusIIReaderPrivate.h.
|
virtual |
|
virtual |
|
inline |
Definition at line 430 of file vtkExodusIIReaderPrivate.h.
int vtkExodusIIReaderPrivate::GetNumberOfParts | ( | ) |
const char * vtkExodusIIReaderPrivate::GetPartName | ( | int | idx | ) |
const char * vtkExodusIIReaderPrivate::GetPartBlockInfo | ( | int | idx | ) |
int vtkExodusIIReaderPrivate::GetPartStatus | ( | int | idx | ) |
int vtkExodusIIReaderPrivate::GetPartStatus | ( | const vtkStdString & | name | ) |
void vtkExodusIIReaderPrivate::SetPartStatus | ( | int | idx, |
int | on | ||
) |
void vtkExodusIIReaderPrivate::SetPartStatus | ( | const vtkStdString & | name, |
int | flag | ||
) |
int vtkExodusIIReaderPrivate::GetNumberOfMaterials | ( | ) |
const char * vtkExodusIIReaderPrivate::GetMaterialName | ( | int | idx | ) |
int vtkExodusIIReaderPrivate::GetMaterialStatus | ( | int | idx | ) |
int vtkExodusIIReaderPrivate::GetMaterialStatus | ( | const vtkStdString & | name | ) |
void vtkExodusIIReaderPrivate::SetMaterialStatus | ( | int | idx, |
int | on | ||
) |
void vtkExodusIIReaderPrivate::SetMaterialStatus | ( | const vtkStdString & | name, |
int | flag | ||
) |
int vtkExodusIIReaderPrivate::GetNumberOfAssemblies | ( | ) |
const char * vtkExodusIIReaderPrivate::GetAssemblyName | ( | int | idx | ) |
int vtkExodusIIReaderPrivate::GetAssemblyStatus | ( | int | idx | ) |
int vtkExodusIIReaderPrivate::GetAssemblyStatus | ( | const vtkStdString & | name | ) |
void vtkExodusIIReaderPrivate::SetAssemblyStatus | ( | int | idx, |
int | on | ||
) |
void vtkExodusIIReaderPrivate::SetAssemblyStatus | ( | const vtkStdString & | name, |
int | flag | ||
) |
|
inline |
Definition at line 462 of file vtkExodusIIReaderPrivate.h.
|
inline |
Definition at line 466 of file vtkExodusIIReaderPrivate.h.
|
virtual |
bool vtkExodusIIReaderPrivate::IsXMLMetadataValid | ( | ) |
void vtkExodusIIReaderPrivate::GetInitialObjectStatus | ( | int | otype, |
ObjectInfoType * | info | ||
) |
For a given object type, looks for an object in the collection of initial objects of the same name, or if the name is empty, then of the same id as "info".
If found, info's Status is set to the status of the found object. You DO NOT need to have called RequestInformation before invoking this member function.
void vtkExodusIIReaderPrivate::GetInitialObjectArrayStatus | ( | int | otype, |
ArrayInfoType * | info | ||
) |
For a given array type, looks for an object in the collection of initial objects of the same name, or if the name is empty, then of the same id as "info".
If found, info's Status is set to the status of the found object. You DO NOT need to have called RequestInformation before invoking this member function.
void vtkExodusIIReaderPrivate::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.
If the name contains a "ID: %d" substring, then it is used to initialize the ObjectInfoType.Id value. You DO NOT need to have called RequestInformation before invoking this member function.
void vtkExodusIIReaderPrivate::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.
You DO NOT need to have called RequestInformation before invoking this member function.
int vtkExodusIIReaderPrivate::UpdateTimeInformation | ( | ) |
|
protected |
Build SIL. This must be called only after RequestInformation().
|
protected |
Returns true when order and text of names are consistent with integration points.
Called from GlomArrayNames().
|
protected |
Aggregate Exodus array names into VTK arrays with multiple components.
|
protected |
Add generated array information to array info lists.
|
protected |
Read connectivity information and populate an unstructured grid with cells corresponding to a single block or set.
If the connectivity hasn't changed since the last time RequestData was called, this copies a cache to the output.
Otherwise, this routine iterates over all block and set types. For each type, it iterates over all objects of that type. For each object whose status is 1, it reads that object's connectivity entries from cache or disk and inserts cells into CachedConnectivity. If SqueezePoints is on, then connectivity entries are translated as required and PointMap is populated. Finally, CachedConnectivity is shallow-copied to the output.
AssembleOutputConnectivity returns 1 if cache was used, 0 otherwise.
|
protected |
Fill the output grid's point coordinates array.
Returns 1 on success, 0 on failure. Failure occurs when the Exodus library is unable to read the point coordinates array. This can be caused when there is not enough memory or there is a file I/O problem.
|
protected |
Add the requested arrays to the output grid's point data.
This adds time-varying results arrays to the grid's vtkPointData object.
|
protected |
Add the requested arrays to the output grid's cell data.
This adds time-varying results arrays to the grid's vtkCellData object.
|
protected |
Add procedurally generated arrays to an output mesh.
Currently, the only array that is procedurally generated is the object id array. Others may be added in the future.
|
protected |
Add mesh-global field data such as QA records to the output mesh.
|
protected |
Add maps to an output mesh.
Maps are special integer arrays that may serve as GlobalId fields in vtkDataSetAttributes objects. Maps may be procedurally generated if no map is contained in a file. Maps are not time-varying.
|
protected |
|
protected |
Add fast-path time-varying data to field data of an output block or set.
|
protected |
Fetch the face-connectivity for one face of one polyhedron.
The number of points (or zero) is returned and facePtIds holds a pointer to the connectivity upon exit. The pointer is owned by this object's PolyhedralFaceConnArrays member and must be freed by calling FreePolyhedronFaceConnectivity(). However, you should only free the cache after processing all of the faces of interest (it is currently called once per polyhedral element block) so that the cost of generating the cache can be amortized across many calls.
The point IDs returned in facePtIds do not include any mapping due to SqueezePoints (i.e., GetSqueezePointId is not called on each point). This is because multiple blocks may refer to the same face, but each block will have a different vtkPoints object.
|
protected |
Free any arrays held by PolyhedralFaceConnArrays (for polyhedral-face-connectivity lookup).
|
protected |
Insert polyhedral cells (called from InsertBlockCells when a block is polyhedral).
|
protected |
Insert cells from a specified block into a mesh.
|
protected |
Insert cells from a specified set into a mesh.
|
protected |
Add a point array to an output grid's point data, squeezing if necessary.
|
protected |
Insert cells referenced by a node set.
|
protected |
Insert cells referenced by an edge, face, or element set.
|
protected |
Insert cells referenced by a side set.
|
protected |
Return an array for the specified cache key.
If the array was not cached, read it from the file. This function can still return 0 if you are foolish enough to request an array not present in the file, grasshopper.
|
protected |
Return the index of an object type (in a private list of all object types).
This returns a 0-based index if the object type was found and -1 if it was not.
|
protected |
Return the index of an object type (in a private list of all object types).
This returns a 0-based index if the object type was found and -1 if it was not.
|
protected |
Return the number of objects of the given type.
The integer typeIndex is not the type of the object (e.g., EX_ELEM_BLOCK), but is rather the index into the list of all object types (see obj_types in vtkExodusIIReader.cxx).
|
protected |
Return a pointer to the ObjectInfo of the specified type and index.
The integer typeIndex is not the type of the object (e.g., EX_ELEM_BLOCK), but is rather the index into the list of all object types (see obj_types in vtkExodusIIReader.cxx). The integer objectIndex is not the ID of the object (i.e., the ID stored in the Exodus file), but is rather the index into the list of all objects of the given type.
|
protected |
Return a pointer to the ObjectInfo of the specified type and index, but using indices sorted by object ID.
This is the same as GetObjectInfo() except that it uses the SortedObjectIndices member to permute the requested objectIndex and it takes an object type (e.g., EX_ELEM_BLOCK) rather than an object type index.
|
protected |
Return a pointer to the ObjectInfo of the specified type and index, but using indices sorted by object ID.
This is the same as GetSortedObjectInfo() except that objectIndex directly indexes the object info array rather SortedObjectIndices, and it takes an object type (e.g., EX_ELEM_BLOCK) rather than an object type index.
|
protected |
Get the index of the block containing the entity referenced by the specified file-global ID.
In this case, an entity is an edge, face, or element.
|
protected |
Get the block containing the entity referenced by the specified file-global ID.
In this case, an entity is an edge, face, or element.
|
protected |
Find or create a new SqueezePoint ID (unique sequential list of points referenced by cells in blocks/sets with Status == 1)
|
protected |
Determine the VTK cell type for a given edge/face/element block.
|
protected |
Find an ArrayInfo object for a specific object type using the name as a key.
|
protected |
Does the specified object type match? Avoid using these... they aren't robust against new types being implemented.
|
protected |
|
protected |
|
protected |
Given a map type (NODE_MAP, EDGE_MAP, ...) return the associated object type (NODAL, EDGE_BLOCK, ...) or vice-versa.
|
protected |
|
protected |
|
protected |
Given a set connectivity type (NODE_SET_CONN, ...), return the associated object type (NODE_SET, ...) or vice-versa.
|
protected |
Given a block type (EDGE_BLOCK, ...), return the associated block connectivity type (EDGE_BLOCK_CONN, ...) or vice-versa.
|
protected |
Function to trim space from names retrieved with ex_get_var_names.
This was added because some meshes had displacement arrays named "DISPX ", "DISPY ", "DISPZ " (note trailing spaces), which prevented glomming and use of the vector field for displacements.
|
protected |
Delete any cached connectivity information (for all blocks and sets)
|
friend |
Definition at line 421 of file vtkExodusIIReaderPrivate.h.
|
friend |
Definition at line 422 of file vtkExodusIIReaderPrivate.h.
vtkTimeStamp vtkExodusIIReaderPrivate::InformationTimeStamp |
Time stamp from last time we were in RequestInformation.
Definition at line 419 of file vtkExodusIIReaderPrivate.h.
bool vtkExodusIIReaderPrivate::ProducedFastPathOutput |
Definition at line 506 of file vtkExodusIIReaderPrivate.h.
|
protected |
Maps a block type (EX_ELEM_BLOCK, EX_FACE_BLOCK, ...) to a list of blocks of that type.
Definition at line 741 of file vtkExodusIIReaderPrivate.h.
|
protected |
Maps a set type (EX_ELEM_SET, ..., EX_NODE_SET) to a list of sets of that type.
Definition at line 745 of file vtkExodusIIReaderPrivate.h.
|
protected |
Maps a map type (EX_ELEM_MAP, ..., EX_NODE_MAP) to a list of maps of that type.
In old-style files, the only entries will be a single node and a single element map which have no specified ID number or name. In that case, an ID of 0 and a name of "Default" will be given to both.
Definition at line 751 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 753 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 754 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 755 of file vtkExodusIIReaderPrivate.h.
|
protected |
Maps an object type to vector of indices that reorder objects of that type by their IDs.
This is used by the user interface to access blocks, sets, and maps in ascending order. It is not used internally.
Definition at line 761 of file vtkExodusIIReaderPrivate.h.
|
protected |
Maps an object type (EX_ELEM_BLOCK, EX_NODE_SET, ...) to a list of arrays.
Definition at line 764 of file vtkExodusIIReaderPrivate.h.
|
protected |
Maps an object type (EX_ELEM_BLOCK, EX_NODE_SET, ...) to a list of arrays defined on that type.
Used to store initial status of arrays before RequestInformation can be called.
Definition at line 770 of file vtkExodusIIReaderPrivate.h.
|
protected |
Maps an object type (EX_ELEM_BLOCK, EX_NODE_SET, ...) to a list of objects defined on that type.
Used to store initial status of objects before RequestInformation can be called.
Definition at line 776 of file vtkExodusIIReaderPrivate.h.
|
protected |
These aren't the variables you're looking for.
Definition at line 779 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 780 of file vtkExodusIIReaderPrivate.h.
|
protected |
The version of Exodus that wrote the currently open file (or a negative number otherwise).
Definition at line 785 of file vtkExodusIIReaderPrivate.h.
|
protected |
The handle of the currently open file.
Definition at line 788 of file vtkExodusIIReaderPrivate.h.
|
protected |
Parameters describing the currently open Exodus file.
Definition at line 791 of file vtkExodusIIReaderPrivate.h.
|
protected |
A list of time steps for which results variables are stored.
Definition at line 794 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 795 of file vtkExodusIIReaderPrivate.h.
|
protected |
The time value.
This is used internally when HasModeShapes is true and ignored otherwise.
Definition at line 800 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 802 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 803 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 804 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 805 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 806 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 807 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 808 of file vtkExodusIIReaderPrivate.h.
|
protected |
Defaults to 0.
Set by vtkPExodusIIReader on each entry of ReaderList. Used to generate the file ID array over all output cells.
Definition at line 813 of file vtkExodusIIReaderPrivate.h.
|
protected |
A least-recently-used cache to hold raw arrays.
Definition at line 816 of file vtkExodusIIReaderPrivate.h.
|
protected |
The size of the cache in MiB.
Definition at line 819 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 821 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 822 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 823 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 824 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 826 of file vtkExodusIIReaderPrivate.h.
|
protected |
Should the reader output only points used by elements in the output mesh, or all the points.
Outputting all the points is much faster since the point array can be read straight from disk and the mesh connectivity need not be altered. Squeezing the points down to the minimum set needed to produce the output mesh is useful for glyphing and other point-based operations. On large parallel datasets, loading all the points implies loading all the points on all processes and performing subsequent filtering on a much larger set.
By default, SqueezePoints is true for backwards compatibility.
Definition at line 839 of file vtkExodusIIReaderPrivate.h.
|
protected |
Pointer to owning reader... this is not registered in order to avoid circular references.
Definition at line 844 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 846 of file vtkExodusIIReaderPrivate.h.
|
protected |
Face connectivity for polyhedra.
This is a map from face block index to ragged connectivity arrays for each face in a block. We store the ragged arrays of face connectivity without squeeze-points applied since multiple blocks (with different squeeze-points) can refer to the same face.
Definition at line 856 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 858 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 859 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 860 of file vtkExodusIIReaderPrivate.h.
|
protected |
Definition at line 862 of file vtkExodusIIReaderPrivate.h.