<div dir="ltr"><div>> Have you built ParaView yourself or do you install it from packages.</div><div><br></div><div>Usually just from the paraview tarballs, i can try adding the new change code next week though.</div><div><br></div>> It would help to have a small example file for us to test against.<br><div><br></div><div>Attached is a small example file (lid driven cavity, ldc.exoII) and an example output image of a slice with velocity vectors in ensight</div><div><br></div><div>Thanks,</div><div><br></div><div>Weston</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Feb 9, 2018 at 3:17 PM, David Thompson <span dir="ltr"><<a href="mailto:david.thompson@kitware.com" target="_blank">david.thompson@kitware.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Weston,<br>
<span class=""><br>
> Is there any way I could render HEX9 exodusii data as as HEX8 data in paraview,  (ignoring the 9th node) or work with it directly?<br>
<br>
</span>Not without modifying the source. Have you built ParaView yourself or do you install it from packages.<br>
<span class=""><br>
><br>
> HEX9 numbering: <a href="https://github.com/gsjaardema/seacas/blob/master/docs/topology/hex09.png" rel="noreferrer" target="_blank">https://github.com/gsjaardema/<wbr>seacas/blob/master/docs/<wbr>topology/hex09.png</a><br>
><br>
> It appears that Paraview reads the file as HEX8 but is reading the center node as part of one of the hexahedron's edges (see attached image)<br>
<br>
</span>It would help to have a small example file for us to test against. If you want to experiment, you can edit VTK/IO/Exodus/<wbr>vtkExodusIIReader.cxx around line 3237 (inside vtkExodusIIReaderPrivate::<wbr>DetermineVtkCellType) and add<br>
<br>
  else if ((elemType.substr(0,3) == "HEX") &&      (binfo.BdsPerEntry[0] == 9))<br>
    { binfo.CellType=VTK_HEXAHEDRON;               binfo.PointsPerCell = 8; }<br>
<br>
You can see that is what we do for 21-node hexes currently.<br>
<br>
        David<br>
<br>
<br>
> <simple_cube.png>_____________<wbr>______________________________<wbr>____<br>
> Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
><br>
> Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/<wbr>opensource/opensource.html</a><br>
><br>
> Please keep messages on-topic and check the ParaView Wiki at: <a href="http://paraview.org/Wiki/ParaView" rel="noreferrer" target="_blank">http://paraview.org/Wiki/<wbr>ParaView</a><br>
><br>
> Search the list archives at: <a href="http://markmail.org/search/?q=ParaView" rel="noreferrer" target="_blank">http://markmail.org/search/?q=<wbr>ParaView</a><br>
><br>
> Follow this link to subscribe/unsubscribe:<br>
> <a href="https://paraview.org/mailman/listinfo/paraview" rel="noreferrer" target="_blank">https://paraview.org/mailman/<wbr>listinfo/paraview</a><br>
<br>
</blockquote></div><br></div>