Is this a multiblock dataset? ParaView 2.4 and VTK 5 support multiblock datasets. You have to create a .vtm file. The vtm file supports multi-block as well as hierarchical structured AMR datasets. For more information, look at the header files of these:
<br><br>vtkMultiGroupDataSet<br>vtkMultiBlockDataSet<br>vtkHierarchicalDataSet<br>vtkHierarchicalBoxDataSet<br>vtkXMLMultiGroupDataSetReader<br>vtkXMLMultiBlockDataSetReader<br><br>The format is simple. The vtm file is a meta-file that points to other XML files. Here is a small example:
<br><br><?xml version="1.0"?><br><VTKFile type="vtkMultiBlockDataSet" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor"><br> <vtkMultiBlockDataSet>
<br> <DataSet group="0" dataset="0" file="test/test_0.vts"/><br> <DataSet group="1" dataset="0" file="test/test_1.vts"/><br> <DataSet group="2" dataset="0" file="test/test_2.vts"/>
<br> </vtkMultiBlockDataSet><br></VTKFile><br><br>You can also have distributed multi-block datasets. Each group corresponds to one block and can contain one or more datasets. These "sub blocks" are the distributed data.
<br><br>-Berk<br><br><br><div><span class="gmail_quote">On 11/11/05, <b class="gmail_sendername">Steve Hudson</b> <<a href="mailto:s_hudson13@hotmail.com">s_hudson13@hotmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I am using Paraview version 2.2 to read a StructuredGrid. If I create more<br>than one "piece" in the same file, it displays only the last piece entered<br>and ignores the others. Is this what you would expect? I would like to
<br>display multiple pieces using in the same file. If this cannot be done I<br>guess I will have to use an unstructured grid.<br><br>Thanks<br><br>Steve<br><br><br>_______________________________________________<br>ParaView mailing list
<br><a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a><br><a href="http://www.paraview.org/mailman/listinfo/paraview">http://www.paraview.org/mailman/listinfo/paraview</a><br></blockquote></div><br>