dune-grid
2.2.1
|
options for VTK output More...
#include <dune/grid/io/file/vtk/common.hh>
Public Types | |
typedef VTK::OutputType | OutputType |
How the bulk data should be stored in the file. More... | |
typedef VTK::DataMode | DataMode |
Whether to produce conforming or non-conforming output. More... | |
Static Public Attributes | |
static const VTK::OutputType | ascii = VTK::ascii |
Output to the file is in ascii. More... | |
static const VTK::OutputType | binary = VTK::base64 |
Output to the file is inline binary. More... | |
static const VTK::OutputType | binaryappended = VTK::appendedraw |
Ouput is appended binary to the file. More... | |
static const VTK::DataMode | conforming = VTK::conforming |
Output conforming data. More... | |
static const VTK::DataMode | nonconforming = VTK::nonconforming |
Output non-conforming data. More... | |
options for VTK output
Whether to produce conforming or non-conforming output.
This applies to the conformity of the data; a non-conforming grid can still be written in conforming data mode, and it is quite possible for data to be non-conforming on a conforming grid.
How the bulk data should be stored in the file.
|
static |
Output to the file is in ascii.
|
static |
Output to the file is inline binary.
|
static |
Ouput is appended binary to the file.
|
static |
Output conforming data.
Neighboring elements share common vertices and thus have a common DoF on that vertex.
|
static |
Output non-conforming data.
Each element has it's own set of vertices. The position of a vertex of one element will concide with the position of the corresponding vertex on another element. This allows for multiple DoFs (one per element) on the "same" vertex.