<div dir="ltr"><div><div><div><div>Hi Dennis,<br><br></div>I'm assuming you're dealing with a vtkUnstructuredGrid (for the topologically regular grids you should just use the extent information). You'll want to look at the GetCellNeighbors() method -- <a href="https://www.vtk.org/doc/nightly/html/classvtkUnstructuredGrid.html#ac532485599a5d92acf4d9ca1e8818bfc">https://www.vtk.org/doc/nightly/html/classvtkUnstructuredGrid.html#ac532485599a5d92acf4d9ca1e8818bfc</a>. Here, cellId is the cell you want to get the neighbors from, ptIds is the list of points that need to be shared by both cells and cellIds is the return list. You'll have to iterate over all points of the cell you're interested in (i.e. call GetCellNeighbors() 8 times for a hex). <br><br></div><div>The basic algorithm is:<br></div><div>loop over cells:<br></div><div>  for each cell, loop over all of its points<br></div><div>    for each point call GeCellNeighbors(cellid, point id list with a single point)<br></div><div>      loop through cellids to compare cell sizes<br></div><div><br></div>Please let me know if this isn't clear enough to get you going...<br><br></div>Cheers,<br></div>Andy <br></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Feb 14, 2018 at 1:38 PM, Dennis Conklin <span dir="ltr"><<a href="mailto:dennis_conklin@goodyear.com" target="_blank">dennis_conklin@goodyear.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">





<div link="#0563C1" vlink="#954F72" lang="EN-US">
<div class="m_-8604436232748943722WordSection1">
<p class="MsoNormal">All,<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">I am looking to calculate a mesh quality measure that would be the ratio of the max/min of the element volumes of each element and all it’s neighbors (other elements with common nodes).  I intend to use this to quantify grid refinement
 transitions and perhaps establish some design standards for them.    I have tried Gradient of Element Volume, but I need to eliminate the distance part of that to get the number that I want.    So, if I have a hex element in a regular grid,  I would expect
 to have 26 “neighbor” elements plus the original element.    The number I want is  (max of 27 element volumes)/(min of 27 element volumes).    This quantity will highlight mesh refinement transitions.<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">My question (at last) is:    how do I find all the neighbor elements (share at least 1 node) of each element in my model?   I’d like to do this in a Programmable Filter.  I’m afraid I don’t know much about how connectivity is implemented
 in vtk.<span class="HOEnZb"><font color="#888888"><u></u><u></u></font></span></p><span class="HOEnZb"><font color="#888888">
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">Dennis<u></u><u></u></p>
</font></span></div>
</div>

<br>______________________________<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://public.kitware.com/mailman/listinfo/paraview" rel="noreferrer" target="_blank">https://public.kitware.com/<wbr>mailman/listinfo/paraview</a><br>
<br></blockquote></div><br></div>