dune-grid  2.2.1
Public Types | Static Public Attributes | List of all members
Dune::VTKOptions Struct Reference

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...
 

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

const VTK::OutputType Dune::VTKOptions::ascii = VTK::ascii
static

Output to the file is in ascii.

Deprecated:
Use VTK::ascii instead
const VTK::OutputType Dune::VTKOptions::binary = VTK::base64
static

Output to the file is inline binary.

Deprecated:
Use VTK::base64 instead
const VTK::OutputType Dune::VTKOptions::binaryappended = VTK::appendedraw
static

Ouput is appended binary to the file.

Deprecated:
Use VTK::appendedraw instead
const VTK::DataMode Dune::VTKOptions::conforming = VTK::conforming
static

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
const VTK::DataMode Dune::VTKOptions::nonconforming = VTK::nonconforming
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.

Deprecated:
Use the value from the namespace VTK instead

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