#include <vtkMultiBlockPLOT3DReader.h>
vtkMultiBlockPLOT3DReader is a reader object that reads PLOT3D formatted files and generates structured grid(s) on output. PLOT3D is a computer graphics program designed to visualize the grids and solutions of computational fluid dynamics. Please see the "PLOT3D User's Manual" available from NASA Ames Research Center, Moffett Field CA.
PLOT3D files consist of a grid file (also known as XYZ file), an optional solution file (also known as a Q file), and an optional function file that contains user created data (currently unsupported). The Q file contains solution information as follows: the four parameters free stream mach number (Fsmach), angle of attack (Alpha), Reynolds number (Re), and total integration time (Time). This information is stored in an array called Properties in the FieldData of each output (tuple 0: fsmach, tuple 1: alpha, tuple 2: re, tuple 3: time). In addition, the solution file contains the flow density (scalar), flow momentum (vector), and flow energy (scalar).
The reader can generate additional scalars and vectors (or "functions") from this information. To use vtkMultiBlockPLOT3DReader, you must specify the particular function number for the scalar and vector you want to visualize. This implementation of the reader provides the following functions. The scalar functions are: -1 - don't read or compute any scalars 100 - density 110 - pressure 120 - temperature 130 - enthalpy 140 - internal energy 144 - kinetic energy 153 - velocity magnitude 163 - stagnation energy 170 - entropy 184 - swirl.
The vector functions are: -1 - don't read or compute any vectors 200 - velocity 201 - vorticity 202 - momentum 210 - pressure gradient.
(Other functions are described in the PLOT3D spec, but only those listed are implemented here.) Note that by default, this reader creates the density scalar (100) and momentum vector (202) as output. (These are just read in from the solution file.) Please note that the validity of computation is a function of this class's gas constants (R, Gamma) and the equations used. They may not be suitable for your computational domain.
Additionally, you can read other data and associate it as a vtkDataArray into the output's point attribute data. Use the method AddFunction() to list all the functions that you'd like to read. AddFunction() accepts an integer parameter that defines the function number.
Definition at line 89 of file vtkMultiBlockPLOT3DReader.h.
Public Types | |
enum | { FILE_BIG_ENDIAN = 0, FILE_LITTLE_ENDIAN = 1 } |
typedef vtkMultiBlockDataSetAlgorithm | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual int | CanReadBinaryFile (const char *fname) |
void | SetFileName (const char *name) |
const char * | GetFileName () |
virtual void | SetXYZFileName (const char *) |
virtual char * | GetXYZFileName () |
virtual void | SetQFileName (const char *) |
virtual char * | GetQFileName () |
int | GetNumberOfBlocks () |
int | GetNumberOfGrids () |
virtual void | SetBinaryFile (int) |
virtual int | GetBinaryFile () |
virtual void | BinaryFileOn () |
virtual void | BinaryFileOff () |
virtual void | SetMultiGrid (int) |
virtual int | GetMultiGrid () |
virtual void | MultiGridOn () |
virtual void | MultiGridOff () |
virtual void | SetHasByteCount (int) |
virtual int | GetHasByteCount () |
virtual void | HasByteCountOn () |
virtual void | HasByteCountOff () |
virtual void | SetIBlanking (int) |
virtual int | GetIBlanking () |
virtual void | IBlankingOn () |
virtual void | IBlankingOff () |
virtual void | SetTwoDimensionalGeometry (int) |
virtual int | GetTwoDimensionalGeometry () |
virtual void | TwoDimensionalGeometryOn () |
virtual void | TwoDimensionalGeometryOff () |
virtual void | SetForceRead (int) |
virtual int | GetForceRead () |
virtual void | ForceReadOn () |
virtual void | ForceReadOff () |
void | SetByteOrderToBigEndian () |
void | SetByteOrderToLittleEndian () |
virtual void | SetByteOrder (int) |
virtual int | GetByteOrder () |
const char * | GetByteOrderAsString () |
virtual void | SetR (double) |
virtual double | GetR () |
virtual void | SetGamma (double) |
virtual double | GetGamma () |
virtual void | SetUvinf (double) |
virtual double | GetUvinf () |
virtual void | SetVvinf (double) |
virtual double | GetVvinf () |
virtual void | SetWvinf (double) |
virtual double | GetWvinf () |
void | SetScalarFunctionNumber (int num) |
virtual int | GetScalarFunctionNumber () |
void | SetVectorFunctionNumber (int num) |
virtual int | GetVectorFunctionNumber () |
void | AddFunction (int functionNumber) |
void | RemoveFunction (int) |
void | RemoveAllFunctions () |
Static Public Member Functions | |
static vtkMultiBlockPLOT3DReader * | New () |
static int | IsTypeOf (const char *type) |
static vtkMultiBlockPLOT3DReader * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkMultiBlockPLOT3DReader () | |
~vtkMultiBlockPLOT3DReader () | |
int | CheckFile (FILE *&fp, const char *fname) |
int | CheckGeometryFile (FILE *&xyzFp) |
int | CheckSolutionFile (FILE *&qFp) |
void | SkipByteCount (FILE *fp) |
int | ReadIntBlock (FILE *fp, int n, int *block) |
int | ReadFloatBlock (FILE *fp, int n, float *block) |
int | GetNumberOfBlocksInternal (FILE *xyzFp, int verify=1) |
int | ReadGeometryHeader (FILE *fp) |
int | ReadQHeader (FILE *fp) |
void | CalculateFileSize (FILE *fp) |
long | EstimateSize (int ni, int nj, int nk) |
void | AssignAttribute (int fNumber, vtkStructuredGrid *output, int attributeType) |
void | MapFunction (int fNumber, vtkStructuredGrid *output) |
void | ComputeTemperature (vtkStructuredGrid *output) |
void | ComputePressure (vtkStructuredGrid *output) |
void | ComputeEnthalpy (vtkStructuredGrid *output) |
void | ComputeKineticEnergy (vtkStructuredGrid *output) |
void | ComputeVelocityMagnitude (vtkStructuredGrid *output) |
void | ComputeEntropy (vtkStructuredGrid *output) |
void | ComputeSwirl (vtkStructuredGrid *output) |
void | ComputeVelocity (vtkStructuredGrid *output) |
void | ComputeVorticity (vtkStructuredGrid *output) |
void | ComputePressureGradient (vtkStructuredGrid *output) |
void | ClearGeometryCache () |
int | GenerateDefaultConfiguration () |
int | VerifySettings (char *buf, int bufSize) |
void | ReadIntBlockV (char **buf, int n, int *block) |
void | SkipByteCountV (char **buf) |
virtual int | FillOutputPortInformation (int port, vtkInformation *info) |
virtual int | RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *) |
virtual int | RequestInformation (vtkInformation *, vtkInformationVector **, vtkInformationVector *) |
Protected Attributes | |
char * | XYZFileName |
char * | QFileName |
int | BinaryFile |
int | HasByteCount |
int | TwoDimensionalGeometry |
int | MultiGrid |
int | ForceRead |
int | ByteOrder |
int | IBlanking |
long | FileSize |
double | R |
double | Gamma |
double | Uvinf |
double | Vvinf |
double | Wvinf |
vtkIntArray * | FunctionList |
int | ScalarFunctionNumber |
int | VectorFunctionNumber |
vtkFloatArray ** | PointCache |
vtkUnsignedCharArray ** | IBlankCache |
Reimplemented from vtkMultiBlockDataSetAlgorithm.
Definition at line 93 of file vtkMultiBlockPLOT3DReader.h.
anonymous enum |
Definition at line 242 of file vtkMultiBlockPLOT3DReader.h.
vtkMultiBlockPLOT3DReader::vtkMultiBlockPLOT3DReader | ( | ) | [protected] |
vtkMultiBlockPLOT3DReader::~vtkMultiBlockPLOT3DReader | ( | ) | [protected] |
static vtkMultiBlockPLOT3DReader* vtkMultiBlockPLOT3DReader::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
virtual const char* vtkMultiBlockPLOT3DReader::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkMultiBlockDataSetAlgorithm.
static int vtkMultiBlockPLOT3DReader::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
virtual int vtkMultiBlockPLOT3DReader::IsA | ( | const char * | name | ) | [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 vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
static vtkMultiBlockPLOT3DReader* vtkMultiBlockPLOT3DReader::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkMultiBlockDataSetAlgorithm.
void vtkMultiBlockPLOT3DReader::PrintSelf | ( | ostream & | os, | |
vtkIndent | indent | |||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
void vtkMultiBlockPLOT3DReader::SetFileName | ( | const char * | name | ) | [inline] |
Set/Get the PLOT3D geometry filename.
Definition at line 98 of file vtkMultiBlockPLOT3DReader.h.
const char* vtkMultiBlockPLOT3DReader::GetFileName | ( | ) | [inline] |
Set/Get the PLOT3D geometry filename.
Definition at line 99 of file vtkMultiBlockPLOT3DReader.h.
virtual void vtkMultiBlockPLOT3DReader::SetXYZFileName | ( | const char * | ) | [virtual] |
Set/Get the PLOT3D geometry filename.
virtual char* vtkMultiBlockPLOT3DReader::GetXYZFileName | ( | ) | [virtual] |
Set/Get the PLOT3D geometry filename.
virtual void vtkMultiBlockPLOT3DReader::SetQFileName | ( | const char * | ) | [virtual] |
Set/Get the PLOT3D solution filename.
virtual char* vtkMultiBlockPLOT3DReader::GetQFileName | ( | ) | [virtual] |
Set/Get the PLOT3D solution filename.
int vtkMultiBlockPLOT3DReader::GetNumberOfBlocks | ( | ) |
This returns the number of outputs this reader will produce. This number is equal to the number of grids in the current file. This method has to be called before getting any output if the number of outputs will be greater than 1 (the first output is always the same). Note that every time this method is invoked, the header file is opened and part of the header is read.
int vtkMultiBlockPLOT3DReader::GetNumberOfGrids | ( | ) | [inline] |
This returns the number of outputs this reader will produce. This number is equal to the number of grids in the current file. This method has to be called before getting any output if the number of outputs will be greater than 1 (the first output is always the same). Note that every time this method is invoked, the header file is opened and part of the header is read.
Definition at line 118 of file vtkMultiBlockPLOT3DReader.h.
virtual void vtkMultiBlockPLOT3DReader::SetBinaryFile | ( | int | ) | [virtual] |
Is the file to be read written in binary format (as opposed to ascii).
virtual int vtkMultiBlockPLOT3DReader::GetBinaryFile | ( | ) | [virtual] |
Is the file to be read written in binary format (as opposed to ascii).
virtual void vtkMultiBlockPLOT3DReader::BinaryFileOn | ( | ) | [virtual] |
Is the file to be read written in binary format (as opposed to ascii).
virtual void vtkMultiBlockPLOT3DReader::BinaryFileOff | ( | ) | [virtual] |
Is the file to be read written in binary format (as opposed to ascii).
virtual void vtkMultiBlockPLOT3DReader::SetMultiGrid | ( | int | ) | [virtual] |
Does the file to be read contain information about number of grids. In some PLOT3D files, the first value contains the number of grids (even if there is only 1). If reading such a file, set this to true.
virtual int vtkMultiBlockPLOT3DReader::GetMultiGrid | ( | ) | [virtual] |
Does the file to be read contain information about number of grids. In some PLOT3D files, the first value contains the number of grids (even if there is only 1). If reading such a file, set this to true.
virtual void vtkMultiBlockPLOT3DReader::MultiGridOn | ( | ) | [virtual] |
Does the file to be read contain information about number of grids. In some PLOT3D files, the first value contains the number of grids (even if there is only 1). If reading such a file, set this to true.
virtual void vtkMultiBlockPLOT3DReader::MultiGridOff | ( | ) | [virtual] |
Does the file to be read contain information about number of grids. In some PLOT3D files, the first value contains the number of grids (even if there is only 1). If reading such a file, set this to true.
virtual void vtkMultiBlockPLOT3DReader::SetHasByteCount | ( | int | ) | [virtual] |
Were the arrays written with leading and trailing byte counts ? Usually, files written by a fortran program will contain these byte counts whereas the ones written by C/C++ won't.
virtual int vtkMultiBlockPLOT3DReader::GetHasByteCount | ( | ) | [virtual] |
Were the arrays written with leading and trailing byte counts ? Usually, files written by a fortran program will contain these byte counts whereas the ones written by C/C++ won't.
virtual void vtkMultiBlockPLOT3DReader::HasByteCountOn | ( | ) | [virtual] |
Were the arrays written with leading and trailing byte counts ? Usually, files written by a fortran program will contain these byte counts whereas the ones written by C/C++ won't.
virtual void vtkMultiBlockPLOT3DReader::HasByteCountOff | ( | ) | [virtual] |
Were the arrays written with leading and trailing byte counts ? Usually, files written by a fortran program will contain these byte counts whereas the ones written by C/C++ won't.
virtual void vtkMultiBlockPLOT3DReader::SetIBlanking | ( | int | ) | [virtual] |
Is there iblanking (point visibility) information in the file. If there is iblanking arrays, these will be read and assigned to the PointVisibility array of the output.
virtual int vtkMultiBlockPLOT3DReader::GetIBlanking | ( | ) | [virtual] |
Is there iblanking (point visibility) information in the file. If there is iblanking arrays, these will be read and assigned to the PointVisibility array of the output.
virtual void vtkMultiBlockPLOT3DReader::IBlankingOn | ( | ) | [virtual] |
Is there iblanking (point visibility) information in the file. If there is iblanking arrays, these will be read and assigned to the PointVisibility array of the output.
virtual void vtkMultiBlockPLOT3DReader::IBlankingOff | ( | ) | [virtual] |
Is there iblanking (point visibility) information in the file. If there is iblanking arrays, these will be read and assigned to the PointVisibility array of the output.
virtual void vtkMultiBlockPLOT3DReader::SetTwoDimensionalGeometry | ( | int | ) | [virtual] |
If only two-dimensional data was written to the file, turn this on.
virtual int vtkMultiBlockPLOT3DReader::GetTwoDimensionalGeometry | ( | ) | [virtual] |
If only two-dimensional data was written to the file, turn this on.
virtual void vtkMultiBlockPLOT3DReader::TwoDimensionalGeometryOn | ( | ) | [virtual] |
If only two-dimensional data was written to the file, turn this on.
virtual void vtkMultiBlockPLOT3DReader::TwoDimensionalGeometryOff | ( | ) | [virtual] |
If only two-dimensional data was written to the file, turn this on.
virtual void vtkMultiBlockPLOT3DReader::SetForceRead | ( | int | ) | [virtual] |
Try to read a binary file even if the file length seems to be inconsistent with the header information. Use this with caution, if the file length is not the same as calculated from the header. either the file is corrupt or the settings are wrong.
virtual int vtkMultiBlockPLOT3DReader::GetForceRead | ( | ) | [virtual] |
Try to read a binary file even if the file length seems to be inconsistent with the header information. Use this with caution, if the file length is not the same as calculated from the header. either the file is corrupt or the settings are wrong.
virtual void vtkMultiBlockPLOT3DReader::ForceReadOn | ( | ) | [virtual] |
Try to read a binary file even if the file length seems to be inconsistent with the header information. Use this with caution, if the file length is not the same as calculated from the header. either the file is corrupt or the settings are wrong.
virtual void vtkMultiBlockPLOT3DReader::ForceReadOff | ( | ) | [virtual] |
Try to read a binary file even if the file length seems to be inconsistent with the header information. Use this with caution, if the file length is not the same as calculated from the header. either the file is corrupt or the settings are wrong.
void vtkMultiBlockPLOT3DReader::SetByteOrderToBigEndian | ( | ) |
Set the byte order of the file (remember, more Unix workstations write big endian whereas PCs write little endian). Default is big endian (since most older PLOT3D files were written by workstations).
void vtkMultiBlockPLOT3DReader::SetByteOrderToLittleEndian | ( | ) |
Set the byte order of the file (remember, more Unix workstations write big endian whereas PCs write little endian). Default is big endian (since most older PLOT3D files were written by workstations).
virtual void vtkMultiBlockPLOT3DReader::SetByteOrder | ( | int | ) | [virtual] |
Set the byte order of the file (remember, more Unix workstations write big endian whereas PCs write little endian). Default is big endian (since most older PLOT3D files were written by workstations).
virtual int vtkMultiBlockPLOT3DReader::GetByteOrder | ( | ) | [virtual] |
Set the byte order of the file (remember, more Unix workstations write big endian whereas PCs write little endian). Default is big endian (since most older PLOT3D files were written by workstations).
const char* vtkMultiBlockPLOT3DReader::GetByteOrderAsString | ( | ) |
Set the byte order of the file (remember, more Unix workstations write big endian whereas PCs write little endian). Default is big endian (since most older PLOT3D files were written by workstations).
virtual void vtkMultiBlockPLOT3DReader::SetR | ( | double | ) | [virtual] |
Set/Get the gas constant. Default is 1.0.
virtual double vtkMultiBlockPLOT3DReader::GetR | ( | ) | [virtual] |
Set/Get the gas constant. Default is 1.0.
virtual void vtkMultiBlockPLOT3DReader::SetGamma | ( | double | ) | [virtual] |
Set/Get the ratio of specific heats. Default is 1.4.
virtual double vtkMultiBlockPLOT3DReader::GetGamma | ( | ) | [virtual] |
Set/Get the ratio of specific heats. Default is 1.4.
virtual void vtkMultiBlockPLOT3DReader::SetUvinf | ( | double | ) | [virtual] |
Set/Get the x-component of the free-stream velocity. Default is 1.0.
virtual double vtkMultiBlockPLOT3DReader::GetUvinf | ( | ) | [virtual] |
Set/Get the x-component of the free-stream velocity. Default is 1.0.
virtual void vtkMultiBlockPLOT3DReader::SetVvinf | ( | double | ) | [virtual] |
Set/Get the y-component of the free-stream velocity. Default is 1.0.
virtual double vtkMultiBlockPLOT3DReader::GetVvinf | ( | ) | [virtual] |
Set/Get the y-component of the free-stream velocity. Default is 1.0.
virtual void vtkMultiBlockPLOT3DReader::SetWvinf | ( | double | ) | [virtual] |
Set/Get the z-component of the free-stream velocity. Default is 1.0.
virtual double vtkMultiBlockPLOT3DReader::GetWvinf | ( | ) | [virtual] |
Set/Get the z-component of the free-stream velocity. Default is 1.0.
void vtkMultiBlockPLOT3DReader::SetScalarFunctionNumber | ( | int | num | ) |
Specify the scalar function to extract. If ==(-1), then no scalar function is extracted.
virtual int vtkMultiBlockPLOT3DReader::GetScalarFunctionNumber | ( | ) | [virtual] |
Specify the scalar function to extract. If ==(-1), then no scalar function is extracted.
void vtkMultiBlockPLOT3DReader::SetVectorFunctionNumber | ( | int | num | ) |
Specify the vector function to extract. If ==(-1), then no vector function is extracted.
virtual int vtkMultiBlockPLOT3DReader::GetVectorFunctionNumber | ( | ) | [virtual] |
Specify the vector function to extract. If ==(-1), then no vector function is extracted.
void vtkMultiBlockPLOT3DReader::AddFunction | ( | int | functionNumber | ) |
Specify additional functions to read. These are placed into the point data as data arrays. Later on they can be used by labeling them as scalars, etc.
void vtkMultiBlockPLOT3DReader::RemoveFunction | ( | int | ) |
Specify additional functions to read. These are placed into the point data as data arrays. Later on they can be used by labeling them as scalars, etc.
void vtkMultiBlockPLOT3DReader::RemoveAllFunctions | ( | ) |
Specify additional functions to read. These are placed into the point data as data arrays. Later on they can be used by labeling them as scalars, etc.
virtual int vtkMultiBlockPLOT3DReader::CanReadBinaryFile | ( | const char * | fname | ) | [virtual] |
Return 1 if the reader can read the given file name. Only meaningful for binary files.
int vtkMultiBlockPLOT3DReader::CheckFile | ( | FILE *& | fp, | |
const char * | fname | |||
) | [protected] |
int vtkMultiBlockPLOT3DReader::CheckGeometryFile | ( | FILE *& | xyzFp | ) | [protected] |
int vtkMultiBlockPLOT3DReader::CheckSolutionFile | ( | FILE *& | qFp | ) | [protected] |
void vtkMultiBlockPLOT3DReader::SkipByteCount | ( | FILE * | fp | ) | [protected] |
int vtkMultiBlockPLOT3DReader::ReadIntBlock | ( | FILE * | fp, | |
int | n, | |||
int * | block | |||
) | [protected] |
int vtkMultiBlockPLOT3DReader::ReadFloatBlock | ( | FILE * | fp, | |
int | n, | |||
float * | block | |||
) | [protected] |
int vtkMultiBlockPLOT3DReader::GetNumberOfBlocksInternal | ( | FILE * | xyzFp, | |
int | verify = 1 | |||
) | [protected] |
int vtkMultiBlockPLOT3DReader::ReadGeometryHeader | ( | FILE * | fp | ) | [protected] |
int vtkMultiBlockPLOT3DReader::ReadQHeader | ( | FILE * | fp | ) | [protected] |
void vtkMultiBlockPLOT3DReader::CalculateFileSize | ( | FILE * | fp | ) | [protected] |
long vtkMultiBlockPLOT3DReader::EstimateSize | ( | int | ni, | |
int | nj, | |||
int | nk | |||
) | [protected] |
void vtkMultiBlockPLOT3DReader::AssignAttribute | ( | int | fNumber, | |
vtkStructuredGrid * | output, | |||
int | attributeType | |||
) | [protected] |
void vtkMultiBlockPLOT3DReader::MapFunction | ( | int | fNumber, | |
vtkStructuredGrid * | output | |||
) | [protected] |
void vtkMultiBlockPLOT3DReader::ComputeTemperature | ( | vtkStructuredGrid * | output | ) | [protected] |
void vtkMultiBlockPLOT3DReader::ComputePressure | ( | vtkStructuredGrid * | output | ) | [protected] |
void vtkMultiBlockPLOT3DReader::ComputeEnthalpy | ( | vtkStructuredGrid * | output | ) | [protected] |
void vtkMultiBlockPLOT3DReader::ComputeKineticEnergy | ( | vtkStructuredGrid * | output | ) | [protected] |
void vtkMultiBlockPLOT3DReader::ComputeVelocityMagnitude | ( | vtkStructuredGrid * | output | ) | [protected] |
void vtkMultiBlockPLOT3DReader::ComputeEntropy | ( | vtkStructuredGrid * | output | ) | [protected] |
void vtkMultiBlockPLOT3DReader::ComputeSwirl | ( | vtkStructuredGrid * | output | ) | [protected] |
void vtkMultiBlockPLOT3DReader::ComputeVelocity | ( | vtkStructuredGrid * | output | ) | [protected] |
void vtkMultiBlockPLOT3DReader::ComputeVorticity | ( | vtkStructuredGrid * | output | ) | [protected] |
void vtkMultiBlockPLOT3DReader::ComputePressureGradient | ( | vtkStructuredGrid * | output | ) | [protected] |
void vtkMultiBlockPLOT3DReader::ClearGeometryCache | ( | ) | [protected] |
int vtkMultiBlockPLOT3DReader::GenerateDefaultConfiguration | ( | ) | [protected] |
int vtkMultiBlockPLOT3DReader::VerifySettings | ( | char * | buf, | |
int | bufSize | |||
) | [protected] |
void vtkMultiBlockPLOT3DReader::ReadIntBlockV | ( | char ** | buf, | |
int | n, | |||
int * | block | |||
) | [protected] |
void vtkMultiBlockPLOT3DReader::SkipByteCountV | ( | char ** | buf | ) | [protected] |
virtual int vtkMultiBlockPLOT3DReader::FillOutputPortInformation | ( | int | port, | |
vtkInformation * | info | |||
) | [protected, virtual] |
Fill the output port information objects for this algorithm. This is invoked by the first call to GetOutputPortInformation for each port so subclasses can specify what they can handle.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
virtual int vtkMultiBlockPLOT3DReader::RequestData | ( | vtkInformation * | , | |
vtkInformationVector ** | , | |||
vtkInformationVector * | ||||
) | [protected, virtual] |
This is called by the superclass. This is the method you should override.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
virtual int vtkMultiBlockPLOT3DReader::RequestInformation | ( | vtkInformation * | , | |
vtkInformationVector ** | , | |||
vtkInformationVector * | ||||
) | [protected, virtual] |
This is called by the superclass. This is the method you should override.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
char* vtkMultiBlockPLOT3DReader::XYZFileName [protected] |
Definition at line 289 of file vtkMultiBlockPLOT3DReader.h.
char* vtkMultiBlockPLOT3DReader::QFileName [protected] |
Definition at line 290 of file vtkMultiBlockPLOT3DReader.h.
int vtkMultiBlockPLOT3DReader::BinaryFile [protected] |
Definition at line 292 of file vtkMultiBlockPLOT3DReader.h.
int vtkMultiBlockPLOT3DReader::HasByteCount [protected] |
Definition at line 293 of file vtkMultiBlockPLOT3DReader.h.
int vtkMultiBlockPLOT3DReader::TwoDimensionalGeometry [protected] |
Definition at line 294 of file vtkMultiBlockPLOT3DReader.h.
int vtkMultiBlockPLOT3DReader::MultiGrid [protected] |
Definition at line 295 of file vtkMultiBlockPLOT3DReader.h.
int vtkMultiBlockPLOT3DReader::ForceRead [protected] |
Definition at line 296 of file vtkMultiBlockPLOT3DReader.h.
int vtkMultiBlockPLOT3DReader::ByteOrder [protected] |
Definition at line 297 of file vtkMultiBlockPLOT3DReader.h.
int vtkMultiBlockPLOT3DReader::IBlanking [protected] |
Definition at line 298 of file vtkMultiBlockPLOT3DReader.h.
long vtkMultiBlockPLOT3DReader::FileSize [protected] |
Definition at line 300 of file vtkMultiBlockPLOT3DReader.h.
double vtkMultiBlockPLOT3DReader::R [protected] |
Definition at line 303 of file vtkMultiBlockPLOT3DReader.h.
double vtkMultiBlockPLOT3DReader::Gamma [protected] |
Definition at line 304 of file vtkMultiBlockPLOT3DReader.h.
double vtkMultiBlockPLOT3DReader::Uvinf [protected] |
Definition at line 305 of file vtkMultiBlockPLOT3DReader.h.
double vtkMultiBlockPLOT3DReader::Vvinf [protected] |
Definition at line 306 of file vtkMultiBlockPLOT3DReader.h.
double vtkMultiBlockPLOT3DReader::Wvinf [protected] |
Definition at line 307 of file vtkMultiBlockPLOT3DReader.h.
vtkIntArray* vtkMultiBlockPLOT3DReader::FunctionList [protected] |
Definition at line 310 of file vtkMultiBlockPLOT3DReader.h.
int vtkMultiBlockPLOT3DReader::ScalarFunctionNumber [protected] |
Definition at line 312 of file vtkMultiBlockPLOT3DReader.h.
int vtkMultiBlockPLOT3DReader::VectorFunctionNumber [protected] |
Definition at line 313 of file vtkMultiBlockPLOT3DReader.h.
vtkFloatArray** vtkMultiBlockPLOT3DReader::PointCache [protected] |
Definition at line 316 of file vtkMultiBlockPLOT3DReader.h.
vtkUnsignedCharArray** vtkMultiBlockPLOT3DReader::IBlankCache [protected] |
Definition at line 317 of file vtkMultiBlockPLOT3DReader.h.