Dear DUNE developers,<br><br>When I VTKWriter::addVertexData() a vector(7 components for example), and open with ParaView,<br>I get the following:<br>
<style type="text/css">p, li { white-space: pre-wrap; }</style>
<table style="margin: 4px;" height="79" width="721">
<tbody><tr>
<td style="border: medium none;">
<p style="margin: 0px; text-indent: 0px;"><span style="font-family: 'Courier'; font-size: 9pt; color: rgb(0, 0, 0);">Warning: In /home/kitware/Kitware/ParaView-3.10/source/VTK/Filtering/vtkDataSetAttributes.cxx, line 1052</span></p>

<p style="margin: 0px; text-indent: 0px;"><span style="font-family: 'Courier'; font-size: 9pt; color: rgb(0, 0, 0);">vtkPointData (0x32b3830): Can not set attribute Vectors. Incorrect number of components.</span></p>
</td></tr></tbody></table>The problem is apparently that Paraview wants only vectors with 3 components.<br>I have found that this problem can be corrected by removing the underlined segment:<br><br><VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian"><br>
  <UnstructuredGrid><br>    <Piece NumberOfCells="4" NumberOfPoints="9"><br>      <PointData<u style="background-color: rgb(255, 255, 102);"> Vectors="u"</u>><br>        <DataArray type="Float32" Name="u" NumberOfComponents="7" format="ascii"><br>
        ....<br><br>This can be done by simple correction in beginPointData() in vtuwriter.hh:.<br>I attach the vtk file so you can see the problem.<br><br>best regards,<br>Oleh Krehel<br><br><br>