<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
John Fettig wrote:
<blockquote cite="mid1182780772.5148.16.camel@s885697.sandia.gov"
 type="cite">
  <pre wrap="">On Mon, 2007-06-25 at 13:12 +0545, Hom Nath Gharti wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">I have different sets of *.vtk files for each time steps (Finite
Element Data with unstructured grids). Is it possible to animate
these data with Paraview?  I would greatly appreciate any
help/suggestions.
    </pre>
  </blockquote>
  <pre wrap=""><!---->
What I do is have a perl script generate a pvd file, which can then be
opened in paraview.  The pvd file is a very simple xml file which
basically lists the vtk files.  Here is some perl:

#!/usr/bin/perl -w

$DATA = "/path/to/datadir";
$ls = `ls -tr $DATA`;

@files = split(/\n/,$ls);

$i = 0;

open(VELOOUT, "&gt;$DATA/velo.pvd");

print VELOOUT "&lt;?xml version=\"1.0\"?&gt;\n";
print VELOOUT "&lt;VTKFile type=\"Collection\" version=\"0.1\"&gt;\n";
print VELOOUT "  &lt;Collection&gt;\n";

foreach $file (@files) {
    if ($file=~/velo.*.vtk/) {
        print VELOOUT "    &lt;DataSet timestep=\"$i\" group=\"\" part=\"0
\"\n";
        print VELOOUT "             file=\"$DATA/$file\" /&gt;\n";
        $i = $i+1;
    }
}

print VELOOUT "  &lt;/Collection&gt;\n";
print VELOOUT "&lt;/VTKFile&gt;\n";

##################################################


So basically, in the data directory I have a bunch of files representing
the timesteps as velo000000000.vtu, velo000000001.vtu, etc.  This file
creates a pvd file from them.

John
  </pre>
</blockquote>
<br>
Hi John,<br>
<br>
You mentioned&nbsp; using vtu files; are you sure the same method will work
for the legacy vtk format that Hom is using? I've been under the
impression that Paraview 3 doesn't support timesteps with that format,
and that the xml and legacy formats can't be mixed. I'd be happy to
learn otherwise, though, since I've also been using legacy vtk files
for unstructured grids of FEM data, and could animate them in earlier
Paraview versions. (My plan so far has been to switch to the .vtu
format and then use a pvd file, as you said.)<br>
<br>
Jesse<br>
<br>
</body>
</html>