I have a 3D triangulated surface. Nodes
and Conn
variables store the coordinates and connectivity of the triangles. At each vertex, a scalar quantity, S
, and a vector with three components, V
, are stored. These data are time-dependent. Also, my geometry does not change over time and I have one surface for all the timesteps.
How should I approach for writing a VTK file that has the transient data over this surface? In other words, I want to write the value of S
and V
at different timestep on this 3D surface in a single VTK file. I ultimately want to import this VTK file into Paraview for visualization. vtkTemporalDataSet
seems to be the solution for me but I could not find an example on how to write an ASCII or binary file for this VTK class. Could vtkPolyData
somehow be used to define time so that Paraview knows the transient nature of my dataset? I would appreciate any help or comment.