1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkCONVERGECFDReader.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 vtkCONVERGECFDReader
* @brief Reader for CONVERGE CFD post files.
*
* This class reads CONVERGE CFD post files containing meshes, surfaces,
* and parcels. Each stream in a file is read as a top-level
* block and meshes, surfaces, and parcels are datasets under
* each stream block.
*
* Cell data arrays associated with mesh cells can be individually
* selected for reading using the CellArrayStatus API.
*
* Point data arrays associated with parcels can be individually selected
* for reading using the ParcelArrayStatus API.
*
* Time series are supported. The reader assumes a time series is defined
* in a sequence of files that follow the naming convention
*
* \code
* <prefix><zero-padded index>[_][<time>].h5
* \endcode
*
* where the prefix is determined from the FileName property passed to
* the reader. The underscore and time elements are optional. The time
* value associated with each file is read from metadata in the file.
*
* Parallel data loading is not supported.
*/
#ifndef vtkCONVERGECFDReader_h
#define vtkCONVERGECFDReader_h
#include "vtkIOCONVERGECFDModule.h" // For export macro
#include "vtkNew.h" // for vtkNew
#include "vtkPartitionedDataSetCollectionAlgorithm.h"
#include <string> // for std::string
#include <vector> // for std::vector
VTK_ABI_NAMESPACE_BEGIN
class vtkDataArraySelection;
class VTKIOCONVERGECFD_EXPORT vtkCONVERGECFDReader : public vtkPartitionedDataSetCollectionAlgorithm
{
public:
static vtkCONVERGECFDReader* New();
vtkTypeMacro(vtkCONVERGECFDReader, vtkPartitionedDataSetCollectionAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent) override;
/**
* Access the cell data array selection to specify which cell data arrays
* should be read. Only the specified cell data arrays will be read from the file.
*/
vtkGetObjectMacro(CellDataArraySelection, vtkDataArraySelection);
/**
* Access the parcel data array selection to specify which point data arrays
* should be read and associated parcel. Only the specified parcel data arrays will
* be read from the file.
*/
vtkGetObjectMacro(ParcelDataArraySelection, vtkDataArraySelection);
/**
* Determine if the file can be read with this reader.
*/
virtual int CanReadFile(VTK_FILEPATH const char* fname);
///@{
/**
* Specify file name of the Exodus file.
*/
vtkSetFilePathMacro(FileName);
vtkGetFilePathMacro(FileName);
///@}
protected:
vtkCONVERGECFDReader();
~vtkCONVERGECFDReader() override;
int RequestInformation(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
int RequestData(
vtkInformation*, vtkInformationVector**, vtkInformationVector* outputVector) override;
// Look for series of files defining timesteps
void ReadTimeSteps(vtkInformation* outInfo);
// Get the OUTPUT_TIME attribute from the file
bool ReadOutputTime(const std::string& filePath, double& time);
// From the given information request, return the index of the file that supplies the timestep
size_t SelectTimeStepIndex(vtkInformation* info);
// Name of file chosen in the file system
char* FileName;
// List of files that match the chosen file name
std::vector<std::string> FileNames;
vtkNew<vtkDataArraySelection> CellDataArraySelection;
vtkNew<vtkDataArraySelection> ParcelDataArraySelection;
class vtkInternal;
vtkInternal* Internal;
private:
vtkCONVERGECFDReader(const vtkCONVERGECFDReader&) = delete;
void operator=(const vtkCONVERGECFDReader&) = delete;
};
VTK_ABI_NAMESPACE_END
#endif // vtkCONVERGECFDReader_h
|