|
Flow123d
last_with_con_2.0.0-4-g42e6930
|
This class is used for output data to VTK file format. More...
#include <output_vtk.hh>


Public Types | |
| typedef OutputTime | FactoryBaseType |
Public Types inherited from OutputTime | |
| enum | DiscreteSpace { NODE_DATA = 0, CORNER_DATA = 1, ELEM_DATA = 2 } |
Public Member Functions | |
| OutputVTK () | |
| The constructor of this class. The head of file is written, when constructor is called. More... | |
| ~OutputVTK () | |
| The destructor of this class. It writes tail of the file too. More... | |
| int | write_data (void) |
| This function write data to VTK (.pvd) file format for curent time. More... | |
| int | write_head (void) |
| This function writes header of VTK (.pvd) file format. More... | |
| int | write_tail (void) |
| This function writes tail of VTK (.pvd) file format. More... | |
Public Member Functions inherited from OutputTime | |
| OutputTime () | |
| Default constructor. Only for testing. More... | |
| void | init_from_input (const std::string &equation_name, Mesh &mesh, const Input::Record &in_rec) |
| Constructor of OutputTime object. It opens base file for writing. More... | |
| virtual | ~OutputTime () |
| Destructor of OutputTime. It doesn't do anything, because all necessary destructors will be called in destructor of Output. More... | |
| Input::Iterator< Input::Array > | get_time_set_array () |
| void | make_output_mesh (FieldSet &output_fields) |
| template<int spacedim, class Value > | |
| void | register_data (const DiscreteSpace type, MultiField< spacedim, Value > &multi_field) |
| Generic method for registering output data stored in MultiField. More... | |
| template<int spacedim, class Value > | |
| void | register_data (const DiscreteSpace ref_type, Field< spacedim, Value > &field) |
| Generic method for registering of output data stored in Field. More... | |
| void | write_time_frame () |
| std::shared_ptr< Observe > | observe () |
| void | clear_data (void) |
Clear data for output computed by method compute_field_data. More... | |
| TYPEDEF_ERR_INFO (EI_FieldName, std::string) | |
| DECLARE_EXCEPTION (ExcOutputVariableVector,<< "Can not output field "<< EI_FieldName::qval<< " returning variable size vectors. Try convert to MultiField.\n") | |
Static Public Member Functions | |
| static const Input::Type::Record & | get_input_type () |
| The definition of input record for vtk file format. More... | |
| static const Input::Type::Selection & | get_input_type_variant () |
| The definition of input record for selection of variant of file format. More... | |
| static const Input::Type::Selection & | get_input_type_compression () |
| The definition of input record for selection of compression type. More... | |
Static Public Member Functions inherited from OutputTime | |
| static const Input::Type::Record & | get_input_type () |
| The specification of output stream. More... | |
| static Input::Type::Abstract & | get_input_format_type () |
| The specification of output file format. More... | |
| static std::shared_ptr< OutputTime > | create_output_stream (const std::string &equation_name, Mesh &mesh, const Input::Record &in_rec) |
| This method delete all object instances of class OutputTime stored in output_streams vector. More... | |
Protected Types | |
| enum | Variant { VARIANT_ASCII = 1, VARIANT_BINARY = 2 } |
| The declaration enumeration used for variant of file VTK format. More... | |
| enum | Compression { COMPRESSION_NONE = 1, COMPRESSION_GZIP = 2 } |
| The declaration of enumeration used for type of compression used in file format. More... | |
| enum | VTKElemType { VTK_VERTEX = 1, VTK_POLY_VERTEX = 2, VTK_LINE = 3, VTK_POLY_LINE = 4, VTK_TRIANGLE = 5, VTK_TRIANGLE_STRIP = 6, VTK_POLYGON = 7, VTK_PIXEL = 8, VTK_QUAD = 9, VTK_TETRA = 10, VTK_VOXEL = 11, VTK_HEXAHEDRON = 12, VTK_WEDGE = 13, VTK_PYRAMID = 14, VTK_QUADRIC_EDGE = 21, VTK_QUADRIC_TRIANGLE = 22, VTK_QUADRIC_QUAD = 23, VTK_QUADRIC_TETRA = 24, VTK_QUADRIC_HEXAHEDRON = 25 } |
| enum | VTKElemSize { VTK_LINE_SIZE = 2, VTK_TRIANGLE_SIZE = 3, VTK_TETRA_SIZE = 4 } |
| enum | VTKValueType { VTK_INT8, VTK_UINT8, VTK_INT16, VTK_UINT16, VTK_INT32, VTK_UINT32, VTK_FLOAT32, VTK_FLOAT64 } |
| typedef enum OutputVTK::Variant | Variant |
| The declaration enumeration used for variant of file VTK format. More... | |
| typedef enum OutputVTK::Compression | Compression |
| The declaration of enumeration used for type of compression used in file format. More... | |
Protected Types inherited from OutputTime | |
| typedef std::shared_ptr< OutputDataBase > | OutputDataPtr |
| typedef std::vector< OutputDataPtr > | OutputDataFieldVec |
| typedef unsigned int | DiscreteSpaceFlags |
Protected Member Functions | |
| void | write_vtk_vtu_head (void) |
| Write header of VTK file (.vtu) More... | |
| void | fill_element_types_vector (std::vector< unsigned int > &data) |
| Fills the given vector with VTK element types indicators. More... | |
| void | write_vtk_data_ascii (OutputDataFieldVec &output_data_map) |
| void | write_vtk_data_ascii (OutputDataPtr output_data, VTKValueType type) |
| void | write_vtk_data_names (ofstream &file, OutputDataFieldVec &output_data_map) |
Write names of data sets in output_data vector that have value type equal to type. Output is done into stream file. More... | |
| void | write_vtk_node_data (void) |
| Write data on nodes to the VTK file (.vtu) More... | |
| void | write_vtk_element_data (void) |
| Write data on elements to the VTK file (.vtu) More... | |
| void | write_vtk_vtu_tail (void) |
| Write tail of VTK file (.vtu) More... | |
| void | write_vtk_vtu (void) |
| This function write all scalar and vector data on nodes and elements to the VTK file (.vtu) More... | |
| void | make_subdirectory () |
Protected Member Functions inherited from OutputTime | |
| void | compute_discontinuous_output_mesh () |
| template<int spacedim, class Value > | |
| void | compute_field_data (DiscreteSpace type, Field< spacedim, Value > &field) |
| void | fix_main_file_extension (std::string extension) |
Static Protected Member Functions | |
| static const std::string | vtk_value_type_map (VTKValueType t) |
Protected Attributes | |
| ofstream | _data_file |
| string | subdir_name_ |
| string | main_output_basename_ |
| string | main_output_dir_ |
Protected Attributes inherited from OutputTime | |
| int | rank |
| OutputDataFieldVec | output_data_vec_ [N_DISCRETE_SPACES] |
| int | current_step |
| double | time |
| double | write_time |
| Input::Record | input_record_ |
| ofstream | _base_file |
| FilePath | _base_filename |
| std::string | equation_name_ |
| Mesh * | _mesh |
| std::shared_ptr< OutputMesh > | output_mesh_ |
| Output mesh. More... | |
| std::shared_ptr< OutputMeshDiscontinuous > | output_mesh_discont_ |
| Discontinuous (non-conforming) mesh. Used for CORNER_DATA. More... | |
| std::shared_ptr< Observe > | observe_ |
| bool | enable_refinement_ |
| Auxliary flag for refinement enabling, due to gmsh format. More... | |
Static Protected Attributes | |
| static const int | registrar |
| Registrar of class to factory. More... | |
Additional Inherited Members | |
Static Public Attributes inherited from OutputTime | |
| static const unsigned int | N_DISCRETE_SPACES = 3 |
This class is used for output data to VTK file format.
Definition at line 33 of file output_vtk.hh.
|
protected |
The declaration of enumeration used for type of compression used in file format.
| typedef OutputTime OutputVTK::FactoryBaseType |
Definition at line 36 of file output_vtk.hh.
|
protected |
The declaration enumeration used for variant of file VTK format.
|
protected |
The declaration of enumeration used for type of compression used in file format.
| Enumerator | |
|---|---|
| COMPRESSION_NONE | |
| COMPRESSION_GZIP | |
Definition at line 95 of file output_vtk.hh.
|
protected |
The declaration enumeration used for variant of file VTK format.
| Enumerator | |
|---|---|
| VARIANT_ASCII | |
| VARIANT_BINARY | |
Definition at line 86 of file output_vtk.hh.
|
protected |
| Enumerator | |
|---|---|
| VTK_LINE_SIZE | |
| VTK_TRIANGLE_SIZE | |
| VTK_TETRA_SIZE | |
Definition at line 124 of file output_vtk.hh.
|
protected |
Definition at line 101 of file output_vtk.hh.
|
protected |
| Enumerator | |
|---|---|
| VTK_INT8 | |
| VTK_UINT8 | |
| VTK_INT16 | |
| VTK_UINT16 | |
| VTK_INT32 | |
| VTK_UINT32 | |
| VTK_FLOAT32 | |
| VTK_FLOAT64 | |
Definition at line 130 of file output_vtk.hh.
| OutputVTK::OutputVTK | ( | ) |
The constructor of this class. The head of file is written, when constructor is called.
Definition at line 74 of file output_vtk.cc.
| OutputVTK::~OutputVTK | ( | ) |
The destructor of this class. It writes tail of the file too.
Definition at line 81 of file output_vtk.cc.
|
protected |
Fills the given vector with VTK element types indicators.
Definition at line 177 of file output_vtk.cc.

|
static |
The definition of input record for vtk file format.
Definition at line 33 of file output_vtk.cc.

|
static |
The definition of input record for selection of compression type.
Definition at line 59 of file output_vtk.cc.

|
static |
The definition of input record for selection of variant of file format.
Definition at line 49 of file output_vtk.cc.

|
protected |
Set appropriate file path substrings. Make subdirectory for VTU time frames.
Definition at line 150 of file output_vtk.cc.

|
inlinestaticprotected |
|
virtual |
This function write data to VTK (.pvd) file format for curent time.
Implements OutputTime.
Definition at line 89 of file output_vtk.cc.
| int OutputVTK::write_head | ( | void | ) |
This function writes header of VTK (.pvd) file format.
Definition at line 404 of file output_vtk.cc.

| int OutputVTK::write_tail | ( | void | ) |
This function writes tail of VTK (.pvd) file format.
Definition at line 424 of file output_vtk.cc.

|
protected |
Write registered data to output stream using ascii format
Definition at line 244 of file output_vtk.cc.

|
protected |
Write registered data to output stream using ascii format
Definition at line 217 of file output_vtk.cc.
|
protected |
Write names of data sets in output_data vector that have value type equal to type. Output is done into stream file.
Definition at line 253 of file output_vtk.cc.

|
protected |
Write data on elements to the VTK file (.vtu)
Definition at line 302 of file output_vtk.cc.

|
protected |
Write data on nodes to the VTK file (.vtu)
Definition at line 275 of file output_vtk.cc.

|
protected |
This function write all scalar and vector data on nodes and elements to the VTK file (.vtu)
Definition at line 331 of file output_vtk.cc.

|
protected |
Write header of VTK file (.vtu)
Definition at line 164 of file output_vtk.cc.

|
protected |
Write tail of VTK file (.vtu)
Definition at line 322 of file output_vtk.cc.

|
protected |
Data output stream (could be same as base_file)
Definition at line 202 of file output_vtk.hh.
|
protected |
Definition at line 209 of file output_vtk.hh.
|
protected |
Definition at line 211 of file output_vtk.hh.
|
staticprotected |
Registrar of class to factory.
Definition at line 139 of file output_vtk.hh.
|
protected |
Path to time frame VTU data subdirectory
Definition at line 207 of file output_vtk.hh.
1.8.11