VTK Files


VTK is a data directory which contains examples of the VTK file format used by the Visualization Toolkit.

The Visualization Toolkit includes functions that can read and write graphics information in a variety of formats. For completeness, the designers included a native VTK file format.

Some 3D graphics programs, in turn, can import this VTK file format.

PARAVIEW is a 3D graphics program which can read VTK files and display the data. The home page for PARAVIEW is http://www.paraview.org/ .

VTK File characteristics:

The VTK file format consists of five parts; the first three are mandatory, and the last two are optional.

# vtk DataFile Version m.n
The header line. "m.n" is the version number.
a title
The title may be up to 256 characters, terminated by a new line.
ASCII or BINARY
indicates the format used for subsequent data.
DATASET type
values for type are "STRUCTURED_POINTS" or "STRUCTURED_GRID" or "UNSTRUCTURED_GRID" or "POLYDATA" or "RECTILINEAR_GRID"; Depending on the type chosen, there will be further lines of keywords and values to define the data.
POINT_DATA n
The number of data items n of each type must match the number of points in the dataset.

When describing the cells in terms of point indices, the points must be indexed starting at 0.

All point data must use 3 coordinates. Even if your model has 2D geometry, each point must have (X,Y,Z) coordinates. Simply set Z = 0 if you want to work in 2D.

Licensing:

The computer code and data files described and made available on this web page are distributed under the GNU LGPL license.

Related Programs and Data:

NS3D_FEM a MATLAB program which sets up and solves a finite element formulation of the steady incompressible 3D Navier Stokes equations on a user-defined geometry. The program can output graphics files for TECPLOT, VU or the VTK format used by PARAVIEW.

THREED_TO_VTK, a MATLAB program which accepts computational data from a 3D finite element fluid flow program and writes it to a VTK "legacy" file for postprocessing by PARAVIEW.

TWOD_TO_VTK, a MATLAB program which accepts computational data from a 2D finite element fluid flow program and writes it to a VTK "legacy" file for postprocessing by PARAVIEW.

VITLES_TO_VTK, a C program which reads VITLES solution files and creates a VTK file suitable for graphics processing by PARAVIEW and other 3D graphics packages.

VTU, a data directory which contains examples of VTU files, an XML-based file format used by the Visualization Toolkit for unstructured grids, and which can be displayed by the PARAVIEW program;

VTK_IO, a FORTRAN90 library which reads and writes files in the VTK format.

Reference:

  1. Will Schroeder, Ken Martin, Bill Lorensen,
    The Visualization Toolkit, An Object-Oriented Approach to 3D Graphics,
    Prentice Hall, 1998,
    ISBN: 0139546944,
    LC: QA76.64.S36.
  2. Amy Henderson Squillacote,
    The ParaView Guide,
    Kitware Inc, 2007,
    ISBN13: 978-1-930934-21-4.
  3. Kitware Incorporated,
    The Visualization Toolkit User's Guide,
    Kitware Inc
  4. http://public.kitware.com/VTK/

Sample Files:

You can go up one level to the DATA page.


Last revised on 06 February 2010.