vtkWindBladeReader Class Reference

#include <vtkWindBladeReader.h>

Inheritance diagram for vtkWindBladeReader:

Inheritance graph
[legend]
Collaboration diagram for vtkWindBladeReader:

Collaboration graph
[legend]

List of all members.


Detailed Description

class for reading WindBlade data files

vtkWindBladeReader is a source object that reads WindBlade files which are block binary files with tags before and after each block giving the number of bytes within the block. The number of data variables dumped varies. The data is 3D rectilinear with irregular spacing on the Z dimension.

Definition at line 58 of file vtkWindBladeReader.h.


Public Types

typedef vtkStructuredGridAlgorithm Superclass

Public Member Functions

virtual const char * GetClassName ()
virtual int IsA (const char *type)
void PrintSelf (ostream &os, vtkIndent indent)
virtual void SetFilename (const char *)
virtual char * GetFilename ()
virtual void SetWholeExtent (int, int, int, int, int, int)
virtual void SetWholeExtent (int[6])
virtual int * GetWholeExtent ()
virtual void GetWholeExtent (int &, int &, int &, int &, int &, int &)
virtual void GetWholeExtent (int[6])
virtual void SetSubExtent (int, int, int, int, int, int)
virtual void SetSubExtent (int[6])
virtual int * GetSubExtent ()
virtual void GetSubExtent (int &, int &, int &, int &, int &, int &)
virtual void GetSubExtent (int[6])
int GetPointArrayStatus (const char *name)
void SetPointArrayStatus (const char *name, int status)
void DisableAllPointArrays ()
void EnableAllPointArrays ()
vtkStructuredGridGetFieldOutput ()
vtkUnstructuredGridGetBladeOutput ()
int GetNumberOfPointArrays ()
const char * GetPointArrayName (int index)

Static Public Member Functions

static vtkWindBladeReaderNew ()
static int IsTypeOf (const char *type)
static vtkWindBladeReaderSafeDownCast (vtkObject *o)

Protected Member Functions

 vtkWindBladeReader ()
 ~vtkWindBladeReader ()
void ReadGlobalData ()
void ReadDataVariables (ifstream &inStr)
void FindVariableOffsets ()
void SetupBladeData ()
void LoadBladeData (int timeStep)
void FillCoordinates ()
void CreateCoordinates ()
void CreateZTopography (float *zdata)
float GDeform (float sigma, float sigmaMax, int flag)
void spline (float *x, float *y, int n, float yp1, float ypn, float *y2)
void splint (float *xa, float *ya, float *y2a, int n, float x, float *y, int)
void LoadVariableData (int var)
void DivideByDensity (const char *name)
void CalculateVorticity (int vort, int uvw, int density)
void CalculatePressure (int pres, int prespre, int tempg, int density)
virtual int RequestData (vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
virtual int RequestInformation (vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
virtual int FillOutputPortInformation (int, vtkInformation *)

Static Protected Member Functions

static void SelectionCallback (vtkObject *caller, unsigned long eid, void *clientdata, void *calldata)
static void EventCallback (vtkObject *caller, unsigned long eid, void *clientdata, void *calldata)

Protected Attributes

char * Filename
FILE * FilePtr
int Rank
int TotalRank
vtkIdType NumberOfTuples
int WholeExtent [6]
int SubExtent [6]
int UpdateExtent [6]
int Dimension [3]
int SubDimension [3]
float Step [3]
int UseTopographyFile
vtkStdString TopographyFile
vtkPointsPoints
vtkPointsBPoints
float Compression
float Fit
vtkFloatArrayxSpacing
vtkFloatArrayySpacing
vtkFloatArrayzSpacing
float * zTopographicValues
int NumberOfFileVariables
int NumberOfDerivedVariables
int NumberOfVariables
vtkStringArrayDivideVariables
vtkStdStringVariableName
int * VariableStruct
int * VariableCompSize
int * VariableBasicType
int * VariableByteCount
long int * VariableOffset
int BlockSize
vtkFloatArray ** data
vtkStdString RootDirectory
vtkStdString DataDirectory
vtkStdString DataBaseName
int NumberOfTimeSteps
int TimeStepFirst
int TimeStepLast
int TimeStepDelta
double * TimeSteps
int NumberOfBladeTowers
int NumberOfBladePoints
int NumberOfBladeCells
vtkFloatArrayXPosition
vtkFloatArrayYPosition
vtkFloatArrayHubHeight
vtkIntArrayBladeCount
int UseTurbineFile
vtkStdString TurbineDirectory
vtkStdString TurbineTowerName
vtkStdString TurbineBladeName
int NumberLinesToSkip
vtkDataArraySelectionPointDataArraySelection
vtkCallbackCommandSelectionObserver
vtkMultiProcessControllerMPIController

Member Typedef Documentation

Reimplemented from vtkStructuredGridAlgorithm.

Definition at line 62 of file vtkWindBladeReader.h.


Constructor & Destructor Documentation

vtkWindBladeReader::vtkWindBladeReader (  )  [protected]

vtkWindBladeReader::~vtkWindBladeReader (  )  [protected]


Member Function Documentation

static vtkWindBladeReader* vtkWindBladeReader::New (  )  [static]

Create an object with Debug turned off, modified time initialized to zero, and reference counting on.

Reimplemented from vtkStructuredGridAlgorithm.

virtual const char* vtkWindBladeReader::GetClassName (  )  [virtual]

Reimplemented from vtkStructuredGridAlgorithm.

static int vtkWindBladeReader::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 vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkStructuredGridAlgorithm.

virtual int vtkWindBladeReader::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 vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkStructuredGridAlgorithm.

static vtkWindBladeReader* vtkWindBladeReader::SafeDownCast ( vtkObject o  )  [static]

Reimplemented from vtkStructuredGridAlgorithm.

void vtkWindBladeReader::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 vtkStructuredGridAlgorithm.

virtual void vtkWindBladeReader::SetFilename ( const char *   )  [virtual]

virtual char* vtkWindBladeReader::GetFilename (  )  [virtual]

virtual void vtkWindBladeReader::SetWholeExtent ( int  ,
int  ,
int  ,
int  ,
int  ,
int   
) [virtual]

virtual void vtkWindBladeReader::SetWholeExtent ( int  [6]  )  [virtual]

virtual int* vtkWindBladeReader::GetWholeExtent (  )  [virtual]

virtual void vtkWindBladeReader::GetWholeExtent ( int &  ,
int &  ,
int &  ,
int &  ,
int &  ,
int &   
) [virtual]

virtual void vtkWindBladeReader::GetWholeExtent ( int  [6]  )  [virtual]

virtual void vtkWindBladeReader::SetSubExtent ( int  ,
int  ,
int  ,
int  ,
int  ,
int   
) [virtual]

virtual void vtkWindBladeReader::SetSubExtent ( int  [6]  )  [virtual]

virtual int* vtkWindBladeReader::GetSubExtent (  )  [virtual]

virtual void vtkWindBladeReader::GetSubExtent ( int &  ,
int &  ,
int &  ,
int &  ,
int &  ,
int &   
) [virtual]

virtual void vtkWindBladeReader::GetSubExtent ( int  [6]  )  [virtual]

vtkStructuredGrid* vtkWindBladeReader::GetFieldOutput (  ) 

Get the reader's output

vtkUnstructuredGrid* vtkWindBladeReader::GetBladeOutput (  ) 

Get the reader's output

int vtkWindBladeReader::GetNumberOfPointArrays (  ) 

The following methods allow selective reading of solutions fields. By default, ALL data fields on the nodes are read, but this can be modified.

const char* vtkWindBladeReader::GetPointArrayName ( int  index  ) 

The following methods allow selective reading of solutions fields. By default, ALL data fields on the nodes are read, but this can be modified.

int vtkWindBladeReader::GetPointArrayStatus ( const char *  name  ) 

void vtkWindBladeReader::SetPointArrayStatus ( const char *  name,
int  status 
)

void vtkWindBladeReader::DisableAllPointArrays (  ) 

void vtkWindBladeReader::EnableAllPointArrays (  ) 

void vtkWindBladeReader::ReadGlobalData (  )  [protected]

void vtkWindBladeReader::ReadDataVariables ( ifstream &  inStr  )  [protected]

void vtkWindBladeReader::FindVariableOffsets (  )  [protected]

void vtkWindBladeReader::SetupBladeData (  )  [protected]

void vtkWindBladeReader::LoadBladeData ( int  timeStep  )  [protected]

void vtkWindBladeReader::FillCoordinates (  )  [protected]

void vtkWindBladeReader::CreateCoordinates (  )  [protected]

void vtkWindBladeReader::CreateZTopography ( float *  zdata  )  [protected]

float vtkWindBladeReader::GDeform ( float  sigma,
float  sigmaMax,
int  flag 
) [protected]

void vtkWindBladeReader::spline ( float *  x,
float *  y,
int  n,
float  yp1,
float  ypn,
float *  y2 
) [protected]

void vtkWindBladeReader::splint ( float *  xa,
float *  ya,
float *  y2a,
int  n,
float  x,
float *  y,
int   
) [protected]

void vtkWindBladeReader::LoadVariableData ( int  var  )  [protected]

void vtkWindBladeReader::DivideByDensity ( const char *  name  )  [protected]

void vtkWindBladeReader::CalculateVorticity ( int  vort,
int  uvw,
int  density 
) [protected]

void vtkWindBladeReader::CalculatePressure ( int  pres,
int  prespre,
int  tempg,
int  density 
) [protected]

virtual int vtkWindBladeReader::RequestData ( vtkInformation request,
vtkInformationVector **  inputVector,
vtkInformationVector outputVector 
) [protected, virtual]

This is called by the superclass. This is the method you should override.

Reimplemented from vtkStructuredGridAlgorithm.

virtual int vtkWindBladeReader::RequestInformation ( vtkInformation request,
vtkInformationVector **  inputVector,
vtkInformationVector outputVector 
) [protected, virtual]

Reimplemented from vtkStructuredGridAlgorithm.

static void vtkWindBladeReader::SelectionCallback ( vtkObject caller,
unsigned long  eid,
void *  clientdata,
void *  calldata 
) [static, protected]

static void vtkWindBladeReader::EventCallback ( vtkObject caller,
unsigned long  eid,
void *  clientdata,
void *  calldata 
) [static, protected]

virtual int vtkWindBladeReader::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 vtkStructuredGridAlgorithm.


Member Data Documentation

char* vtkWindBladeReader::Filename [protected]

Definition at line 98 of file vtkWindBladeReader.h.

FILE* vtkWindBladeReader::FilePtr [protected]

Definition at line 99 of file vtkWindBladeReader.h.

int vtkWindBladeReader::Rank [protected]

Definition at line 101 of file vtkWindBladeReader.h.

Definition at line 102 of file vtkWindBladeReader.h.

Definition at line 105 of file vtkWindBladeReader.h.

int vtkWindBladeReader::WholeExtent[6] [protected]

Definition at line 107 of file vtkWindBladeReader.h.

int vtkWindBladeReader::SubExtent[6] [protected]

Definition at line 108 of file vtkWindBladeReader.h.

Definition at line 109 of file vtkWindBladeReader.h.

int vtkWindBladeReader::Dimension[3] [protected]

Definition at line 110 of file vtkWindBladeReader.h.

Definition at line 111 of file vtkWindBladeReader.h.

float vtkWindBladeReader::Step[3] [protected]

Definition at line 113 of file vtkWindBladeReader.h.

Definition at line 114 of file vtkWindBladeReader.h.

Definition at line 115 of file vtkWindBladeReader.h.

Definition at line 116 of file vtkWindBladeReader.h.

Definition at line 117 of file vtkWindBladeReader.h.

Definition at line 118 of file vtkWindBladeReader.h.

float vtkWindBladeReader::Fit [protected]

Definition at line 119 of file vtkWindBladeReader.h.

Definition at line 122 of file vtkWindBladeReader.h.

Definition at line 123 of file vtkWindBladeReader.h.

Definition at line 124 of file vtkWindBladeReader.h.

Definition at line 125 of file vtkWindBladeReader.h.

Definition at line 128 of file vtkWindBladeReader.h.

Definition at line 129 of file vtkWindBladeReader.h.

Definition at line 130 of file vtkWindBladeReader.h.

Definition at line 132 of file vtkWindBladeReader.h.

Definition at line 133 of file vtkWindBladeReader.h.

Definition at line 134 of file vtkWindBladeReader.h.

Definition at line 135 of file vtkWindBladeReader.h.

Definition at line 136 of file vtkWindBladeReader.h.

Definition at line 137 of file vtkWindBladeReader.h.

long int* vtkWindBladeReader::VariableOffset [protected]

Definition at line 138 of file vtkWindBladeReader.h.

Definition at line 139 of file vtkWindBladeReader.h.

Definition at line 141 of file vtkWindBladeReader.h.

Definition at line 142 of file vtkWindBladeReader.h.

Definition at line 143 of file vtkWindBladeReader.h.

Definition at line 144 of file vtkWindBladeReader.h.

Definition at line 147 of file vtkWindBladeReader.h.

Definition at line 148 of file vtkWindBladeReader.h.

Definition at line 149 of file vtkWindBladeReader.h.

Definition at line 150 of file vtkWindBladeReader.h.

double* vtkWindBladeReader::TimeSteps [protected]

Definition at line 151 of file vtkWindBladeReader.h.

Definition at line 154 of file vtkWindBladeReader.h.

Definition at line 155 of file vtkWindBladeReader.h.

Definition at line 156 of file vtkWindBladeReader.h.

Definition at line 158 of file vtkWindBladeReader.h.

Definition at line 159 of file vtkWindBladeReader.h.

Definition at line 160 of file vtkWindBladeReader.h.

Definition at line 161 of file vtkWindBladeReader.h.

Definition at line 163 of file vtkWindBladeReader.h.

Definition at line 164 of file vtkWindBladeReader.h.

Definition at line 165 of file vtkWindBladeReader.h.

Definition at line 166 of file vtkWindBladeReader.h.

Definition at line 167 of file vtkWindBladeReader.h.

Definition at line 171 of file vtkWindBladeReader.h.

Definition at line 174 of file vtkWindBladeReader.h.

Definition at line 177 of file vtkWindBladeReader.h.


The documentation for this class was generated from the following file:

Generated on Mon Sep 27 19:02:04 2010 for VTK by  doxygen 1.5.6