I am attempting to write some structured data in parallel. I have two files: parallel.pvti, and output0.vti When I open the serial .vti file in ParaView, it displays just fine. When I open the parallel .pvti file, I get the following error message:

ERROR: In /tmp/buildd/paraview-3.14.1/VTK/IO/vtkXMLPStructuredDataReader.cxx, line 277
vtkXMLPImageDataReader (0x212cde0): Piece 0 has invalid Extent.

ERROR: In /tmp/buildd/paraview-3.14.1/VTK/Filtering/vtkExecutive.cxx, line 756 vtkPVCompositeDataPipeline (0x212c260): Algorithm vtkXMLPImageDataReader(0x212cde0) returned failure for request: vtkInformation (0x21432a0)
  Debug: Off
  Modified Time: 70576
  Reference Count: 1
  Registered Events: (none)
  Request: REQUEST_INFORMATION
  ALGORITHM_AFTER_FORWARD: 1
  FORWARD_DIRECTION: 0

My .pvti file is as follows:

<?xml version="1.0"?>
<VTKFile type="PImageData" version="0.1" byte_order="LittleEndian">
<PImageData WholeExtent="0 10 0 10 0 10" GhostLevel="0" Origin="0 0 0" Spacing="1 1 1">
    <PPointData Scalars="Trogdor">
        <PDataArray Name="Trogdor" type="Float64"/>
    </PPointData>
<Piece Source="./output0.vti"/>
</PImageData>
</VTKFile>

And my .vti file is as follows:

<?xml version="1.0"?>
<VTKFile type="ImageData" version="0.1" byte_order="LittleEndian">
<ImageData WholeExtent="0 10 0 10 0 10" GhostLevel="0" Origin="0 0 0" Spacing="1 1 1">
<Piece Extent="0 10 0 10 0 10">
<PointData Scalars="Trogdor">
<DataArray Name="Trogdor" type="Float64" format="ascii">
0
1
***Lots of Numbers***
1329
1330
</DataArray>
</PointData>
</Piece>
</ImageData>
</VTKFile>

I am using ParaView version 3.14.1 64-bit
Qt version 4.8.2

I'm not sure what I've got wrong, and any help would be much appreciated. Thank you!

Dalon



_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview

Reply via email to