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
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
// SPDX-License-Identifier: BSD-3-Clause
/**
* @class vtkPExodusIIWriter
* @brief Write Exodus II files
*
* This is a vtkWriter that writes it's vtkUnstructuredGrid
* input out to an Exodus II file. Go to http://endo.sandia.gov/SEACAS/
* for more information about the Exodus II format.
*
* Exodus files contain much information that is not captured
* in a vtkUnstructuredGrid, such as time steps, information
* lines, node sets, and side sets. This information can be
* stored in a vtkModelMetadata object.
*
* The vtkExodusReader and vtkPExodusReader can create
* a vtkModelMetadata object and embed it in a vtkUnstructuredGrid
* in a series of field arrays. This writer searches for these
* field arrays and will use the metadata contained in them
* when creating the new Exodus II file.
*
* You can also explicitly give the vtkExodusIIWriter a
* vtkModelMetadata object to use when writing the file.
*
* In the absence of the information provided by vtkModelMetadata,
* if this writer is not part of a parallel application, we will use
* reasonable defaults for all the values in the output Exodus file.
* If you don't provide a block ID element array, we'll create a
* block for each cell type that appears in the unstructured grid.
*
* However if this writer is part of a parallel application (hence
* writing out a distributed Exodus file), then we need at the very
* least a list of all the block IDs that appear in the file. And
* we need the element array of block IDs for the input unstructured grid.
*
* In the absence of a vtkModelMetadata object, you can also provide
* time step information which we will include in the output Exodus
* file.
*
* @warning
* If the input floating point field arrays and point locations are all
* floats or all doubles, this class will operate more efficiently.
* Mixing floats and doubles will slow you down, because Exodus II
* requires that we write only floats or only doubles.
*
* @warning
* We use the terms "point" and "node" interchangeably.
* Also, we use the terms "element" and "cell" interchangeably.
*/
#ifndef vtkPExodusIIWriter_h
#define vtkPExodusIIWriter_h
#include "vtkExodusIIWriter.h"
#include "vtkIOParallelExodusModule.h" // For export macro
#include "vtkSmartPointer.h" // For vtkSmartPointer
#include <map> // STL Header
#include <string> // STL Header
#include <vector> // STL Header
VTK_ABI_NAMESPACE_BEGIN
class vtkModelMetadata;
class vtkDoubleArray;
class vtkIntArray;
class vtkUnstructuredGrid;
class VTKIOPARALLELEXODUS_EXPORT vtkPExodusIIWriter : public vtkExodusIIWriter
{
public:
static vtkPExodusIIWriter* New();
vtkTypeMacro(vtkPExodusIIWriter, vtkExodusIIWriter);
void PrintSelf(ostream& os, vtkIndent indent) override;
protected:
vtkPExodusIIWriter();
~vtkPExodusIIWriter() override;
int CheckParameters() override;
void CheckBlockInfoMap() override;
int RequestUpdateExtent(vtkInformation* request, vtkInformationVector** inputVector,
vtkInformationVector* outputVector) override;
int GlobalContinueExecuting(int localContinue) override;
/**
* Get the maximum length name in the input data set. If it is smaller
* than 32 characters long we just return the ExodusII default of 32.
*/
unsigned int GetMaxNameLength() override;
private:
vtkPExodusIIWriter(const vtkPExodusIIWriter&) = delete;
void operator=(const vtkPExodusIIWriter&) = delete;
};
VTK_ABI_NAMESPACE_END
#endif
|