By any chance, does this multi-block dataset contain a block that does not have arrays (scalars and/or vectors)? That&#39;s probably why those filters are disabled. You can always use Extract Blocks to extract the block you are interested in and then apply the filter. As for the Programmable Filter, if you set the output type to vtkUnstructuredGrid, you should be able to do:<div>
<br></div><div>self.GetOutput().ShallowCopy(self.GetInput().GetBlock(0))</div><div><br></div><div>assuming that block 0 is a uns. grid.</div><div><br></div><div>-berk<br><br><div class="gmail_quote">On Tue, Mar 1, 2011 at 5:29 PM, Sohail Shafii <span dir="ltr">&lt;<a href="mailto:sohailshafii@yahoo.com">sohailshafii@yahoo.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><table cellspacing="0" cellpadding="0" border="0"><tbody><tr><td valign="top" style="font:inherit"><br>Hi,<br><br>I&#39;ve read in a CAS file, which Paraview read in a Multi-block dataset, which contains within it a unstructured grid.<br>
<br>Initially I had a problem where all of the data items were one-tuple arrays.  So I created a UVW (3-tuple velocity) array and added it to the pipeline this way using a Python programmable filter:<br><br>input   = self.GetInput()<br>
output = self.GetOutput()<br><br>output.ShallowCopy(input)<br><br>****create array here***<br>output.GetBlock(0).GetCellData().AddArray(UVWArray)<br><br>Note that &quot;GetBlock(0)&quot; gives me access to the grid object.  For some reason the gradients and streamtracer filters were greyed out and unavailable.  So I decided to make the output variable a vtkUnstructuredGrid instead and transferred the UVW array to it this way:<br>
<br>
output.GetPointData().AddArray(UVWArray)<br><br>Nope...didn&#39;t work.  Any thoughts how I can modify the pipeline so that the streamtracer and gradients of unstructured data sets array can become usable? I&#39;m guessing there is something in those classes which tells Paraview that they require certain input types. I&#39;ve seen references to stuff like FillInputPortInformation. <br>
<br>Thanks,<br>Sohail<br><br>
<br></td></tr></tbody></table><br>

      <br>_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the ParaView Wiki at: <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
<br></blockquote></div><br></div>