You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
5.2 KiB
C
140 lines
5.2 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkEnSight6Reader.h
|
||
|
|
||
|
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.
|
||
|
|
||
|
=========================================================================*/
|
||
|
/**
|
||
|
* @class vtkEnSight6Reader
|
||
|
* @brief class to read EnSight6 files
|
||
|
*
|
||
|
* vtkEnSight6Reader is a class to read EnSight6 files into vtk.
|
||
|
* Because the different parts of the EnSight data can be of various data
|
||
|
* types, this reader produces multiple outputs, one per part in the input
|
||
|
* file.
|
||
|
* All variable information is being stored in field data. The descriptions
|
||
|
* listed in the case file are used as the array names in the field data.
|
||
|
* For complex vector variables, the description is appended with _r (for the
|
||
|
* array of real values) and _i (for the array if imaginary values). Complex
|
||
|
* scalar variables are stored as a single array with 2 components, real and
|
||
|
* imaginary, listed in that order.
|
||
|
* @warning
|
||
|
* You must manually call Update on this reader and then connect the rest
|
||
|
* of the pipeline because (due to the nature of the file format) it is
|
||
|
* not possible to know ahead of time how many outputs you will have or
|
||
|
* what types they will be.
|
||
|
* This reader can only handle static EnSight datasets (both static geometry
|
||
|
* and variables).
|
||
|
*/
|
||
|
|
||
|
#ifndef vtkEnSight6Reader_h
|
||
|
#define vtkEnSight6Reader_h
|
||
|
|
||
|
#include "vtkEnSightReader.h"
|
||
|
#include "vtkIOEnSightModule.h" // For export macro
|
||
|
|
||
|
class vtkMultiBlockDataSet;
|
||
|
class vtkIdTypeArray;
|
||
|
class vtkPoints;
|
||
|
|
||
|
class VTKIOENSIGHT_EXPORT vtkEnSight6Reader : public vtkEnSightReader
|
||
|
{
|
||
|
public:
|
||
|
static vtkEnSight6Reader* New();
|
||
|
vtkTypeMacro(vtkEnSight6Reader, vtkEnSightReader);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
||
|
|
||
|
protected:
|
||
|
vtkEnSight6Reader();
|
||
|
~vtkEnSight6Reader() override;
|
||
|
|
||
|
/**
|
||
|
* Read the geometry file. If an error occurred, 0 is returned; otherwise 1.
|
||
|
*/
|
||
|
int ReadGeometryFile(const char* fileName, int timeStep, vtkMultiBlockDataSet* output) override;
|
||
|
|
||
|
/**
|
||
|
* Read the measured geometry file. If an error occurred, 0 is returned;
|
||
|
* otherwise 1.
|
||
|
*/
|
||
|
int ReadMeasuredGeometryFile(
|
||
|
const char* fileName, int timeStep, vtkMultiBlockDataSet* output) override;
|
||
|
|
||
|
/**
|
||
|
* Read scalars per node for this dataset. If an error occurred, 0 is
|
||
|
* returned; otherwise 1. If there will be more than one component in
|
||
|
* the scalars array, we assume that 0 is the first component added to the array.
|
||
|
*/
|
||
|
int ReadScalarsPerNode(const char* fileName, const char* description, int timeStep,
|
||
|
vtkMultiBlockDataSet* output, int measured = 0, int numberOfComponents = 1,
|
||
|
int component = 0) override;
|
||
|
|
||
|
/**
|
||
|
* Read vectors per node for this dataset. If an error occurred, 0 is
|
||
|
* returned; otherwise 1.
|
||
|
*/
|
||
|
int ReadVectorsPerNode(const char* fileName, const char* description, int timeStep,
|
||
|
vtkMultiBlockDataSet* output, int measured = 0) override;
|
||
|
|
||
|
/**
|
||
|
* Read tensors per node for this dataset. If an error occurred, 0 is
|
||
|
* returned; otherwise 1.
|
||
|
*/
|
||
|
int ReadTensorsPerNode(const char* fileName, const char* description, int timeStep,
|
||
|
vtkMultiBlockDataSet* output) override;
|
||
|
|
||
|
/**
|
||
|
* Read scalars per element for this dataset. If an error occurred, 0 is
|
||
|
* returned; otherwise 1. If there will be more than one component in the
|
||
|
* scalars array, we assume that 0 is the first component added to the array.
|
||
|
*/
|
||
|
int ReadScalarsPerElement(const char* fileName, const char* description, int timeStep,
|
||
|
vtkMultiBlockDataSet* output, int numberOfComponents = 1, int component = 0) override;
|
||
|
|
||
|
/**
|
||
|
* Read vectors per element for this dataset. If an error occurred, 0 is
|
||
|
* returned; otherwise 1.
|
||
|
*/
|
||
|
int ReadVectorsPerElement(const char* fileName, const char* description, int timeStep,
|
||
|
vtkMultiBlockDataSet* output) override;
|
||
|
|
||
|
/**
|
||
|
* Read tensors per element for this dataset. If an error occurred, 0 is
|
||
|
* returned; otherwise 1.
|
||
|
*/
|
||
|
int ReadTensorsPerElement(const char* fileName, const char* description, int timeStep,
|
||
|
vtkMultiBlockDataSet* output) override;
|
||
|
|
||
|
/**
|
||
|
* Read an unstructured part (partId) from the geometry file and create a
|
||
|
* vtkUnstructuredGrid output. Return 0 if EOF reached.
|
||
|
*/
|
||
|
int CreateUnstructuredGridOutput(
|
||
|
int partId, char line[256], const char* name, vtkMultiBlockDataSet* output) override;
|
||
|
|
||
|
/**
|
||
|
* Read a structured part from the geometry file and create a
|
||
|
* vtkStructuredGridOutput. Return 0 if EOF reached.
|
||
|
*/
|
||
|
int CreateStructuredGridOutput(
|
||
|
int partId, char line[256], const char* name, vtkMultiBlockDataSet* output) override;
|
||
|
|
||
|
// global list of points for the unstructured parts of the model
|
||
|
int NumberOfUnstructuredPoints;
|
||
|
vtkPoints* UnstructuredPoints;
|
||
|
vtkIdTypeArray* UnstructuredNodeIds; // matching of node ids to point ids
|
||
|
private:
|
||
|
vtkEnSight6Reader(const vtkEnSight6Reader&) = delete;
|
||
|
void operator=(const vtkEnSight6Reader&) = delete;
|
||
|
};
|
||
|
|
||
|
#endif
|