dune-grid  2.1.1
Public Types | Static Public Attributes
Dune::VTKOptions Struct Reference

options for VTK output More...

#include <dune/grid/io/file/vtk/common.hh>

List of all members.

Public Types

typedef VTK::OutputType OutputType
 How the bulk data should be stored in the file.
typedef VTK::DataMode DataMode
 Whether to produce conforming or non-conforming output.

Static Public Attributes

static const VTK::OutputType ascii = VTK::ascii
 Output to the file is in ascii.
static const VTK::OutputType binary = VTK::base64
 Output to the file is inline binary.
static const VTK::OutputType binaryappended = VTK::appendedraw
 Ouput is appended binary to the file.
static const VTK::DataMode conforming = VTK::conforming
 Output conforming data.
static const VTK::DataMode nonconforming = VTK::nonconforming
 Output non-conforming data.

Detailed Description

options for VTK output

Deprecated:
Use the enums from the namespace VTK instead

Member Typedef Documentation

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.

Deprecated:
Use the enum from the namespace VTK instead. When converting your code, look for any occurances of VTKOptions::conforming or VTKOptions::nonconforming, and convert them es well. Unfortunately, marking the compatibility constants here as deprecated seems to have no effect.
Deprecated:

How the bulk data should be stored in the file.

Deprecated:
Use the enum from the namespace VTK instead. When converting your code, look for any occurances of VTKOptions::ascii, VTKOptions::binary, and VTKOptions::binaryappended, and convert them es well. Unfortunately, marking the compatibility constants here as deprecated seems to have no effect.
Deprecated:

Member Data Documentation

Output to the file is in ascii.

Deprecated:
Use VTK::ascii instead

Output to the file is inline binary.

Deprecated:
Use VTK::base64 instead

Ouput is appended binary to the file.

Deprecated:
Use VTK::appendedraw instead

Output conforming data.

Neighboring elements share common vertices and thus have a common DoF on that vertex.

Deprecated:
Use the value from the namespace VTK instead

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.

Deprecated:
Use the value from the namespace VTK instead

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