<div dir="ltr"><br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" style="font-size:14pt;color:#000000;background-color:#ffffff;font-family:Calibri,Arial,Helvetica,sans-serif">

<p>I wasn't sure if I had to convert to numpy arrays for this to work so I tried<br>
</p>
<div>   xx = vtkDataArrayToVTKArray(block.CellData['USTRTOTXX'])</div>
<div>...</div>
<div><br>
</div>
<div>to get numpy arrays to use in sigma, but that doesn't work either.</div>
<div><br></div></div></blockquote><div><br></div><div>I do not think you should need that when you access the cell data as you are with block.CellData['XX']<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div dir="ltr" style="font-size:14pt;color:#000000;background-color:#ffffff;font-family:Calibri,Arial,Helvetica,sans-serif"><div>
</div>
<div>P1,P2 and P3 are not declared anywhere before they are first used - could that be the problem?<br>
​<br></div></div></blockquote><div><br></div><div>Yes that would be a problem when you try to assign an element to an array.  For example try using the python shell in paraview and executing "P1[0] = 2.0".  You should get an error message.  The list should be created prior to element assignment like<br>

<br>import numpy<br>P1 = numpy.zeros(1)<br></div><div>P1[0] = 2.0</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" style="font-size:14pt;color:#000000;background-color:#ffffff;font-family:Calibri,Arial,Helvetica,sans-serif">

<div>
</div>
<div>Also, how do I get debug prints to show up somewhere - I'm not getting any error messages in the console or the Output Window.<br>
</div>
<div><br></div></div></blockquote><div><br>I have not seen this problem before so I do not have many suggestions. Solving this first should help you debug the rest.  Have you tried putting some print statements in the very first lines of the filter?  Maybe try this in a new programmable filter in case there is a syntax error in the code and that is obscuring the printouts?  Can you confirm the output window you are looking at is the one you find in the Tools section of the menu?<br>

<br></div><div>Hope that helps.<br></div></div><br>-- <br><div dir="ltr">Casey B. Goodlett, Ph.D.<br>Technical Leader<br>Kitware, Inc. - North Carolina Office<br><a href="http://www.kitware.com" target="_blank">http://www.kitware.com</a><br>

(919) 969-6990 x310</div>
</div></div>