<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Arial,Helvetica,sans-serif;" dir="ltr">
<p>Thanks Andy,</p>
<p><br>
</p>
<p>I had a feeling the pipeline had to be manually updated. I thought maybe the UpdateProducers also updated the pipeline. Thanks for clarifying that.
<br>
</p>
<p><br>
</p>
<p>I also have the same concern about the value stored in each block's CellData field. I couldn't find any documentation that indicates how the IntegrateVariables filter distributes the data. But, looking at the block VTK files that are written out, they all
 contain the same value of Area so I think a global reduction is done in the filter and all blocks have the total values. I could be wrong though.
<br>
</p>
<p><br>
</p>
<p>Thanks again,</p>
<p><br>
</p>
<p>Tim<br>
</p>
<br>
<br>
<div style="color: rgb(49, 55, 57);">
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="divRplyFwdMsg" dir="ltr"><font style="font-size:11pt" color="#000000" face="Calibri, sans-serif"><b>From:</b> Andy Bauer <andy.bauer@kitware.com><br>
<b>Sent:</b> Tuesday, February 7, 2017 7:44 AM<br>
<b>To:</b> Gallagher, Timothy P<br>
<b>Cc:</b> paraview@paraview.org<br>
<b>Subject:</b> Re: [Paraview] Pipeline update with Catalyst</font>
<div> </div>
</div>
<div>
<div dir="ltr">
<div>
<div>
<div>
<div>
<div>Hi Tim,<br>
<br>
</div>
The short answer is that  you need to do coprocessor.Pipeline.flameArea.UpdatePipeline() before checking for the area. You also may need to use MPI to do the global sum or broadcast of the value since I think that value will either just have local values or
 maybe just the proper global value on processor 0. You should have access to mpi4py in the Python script in order to do that.<br>
<br>
</div>
The long answer is that ParaView & VTK use a demand-driven pipeline design meaning that until something explicitly tells a pipeline to update it won't. For the Catalyst scripts this is done in the coprocessor.WriteData(), coprocessor.WriteImages() and coprocessor.DoLiveVisualization()
 calls for each output that is required (e.g. for a writer that is supposed to output at that time step but not for other writers that are not supposed to output at that time step). You can manually force a filter to update by using the UpdatePipeline() method
 which will update that pipeline along with everything it depends on. It won't update any filters though that don't have an effect on it computing its requested information which means that for the flameArea filter it won't affect any writers or image output
 stuff which is what you want.<br>
<br>
</div>
There is some information on Catayst script details at <a previewremoved="true" id="LPlnk924266" href="https://blog.kitware.com/anatomy-of-a-paraview-catalyst-python-script/">
https://blog.kitware.com/anatomy-of-a-paraview-catalyst-python-script/</a> but I don't think that contains this information.
<div style="margin-bottom: 20px; overflow: auto; width: 100%; text-indent: 0px;" id="LPBorder_GT_14864716254810.48106436051284385">
<table style="width: 90%; background-color: rgb(255, 255, 255); position: relative; overflow: auto; padding-top: 20px; padding-bottom: 20px; margin-top: 20px; border-top: 1px dotted rgb(200, 200, 200); border-bottom: 1px dotted rgb(200, 200, 200);" id="LPContainer_14864716254740.027265943784062774" cellspacing="0">
<tbody>
<tr style="border-spacing: 0px;" valign="top">
<td colspan="1" style="width: 250px; position: relative; display: table-cell; padding-right: 20px;" id="ImageCell_14864716254770.07028136411092378">
<div style="background-color: rgb(255, 255, 255); height: 125px; position: relative; margin: auto; display: table; width: 100px;" id="LPImageContainer_14864716254770.7280136240546761">
<a target="_blank" href="https://blog.kitware.com/anatomy-of-a-paraview-catalyst-python-script/" style="display: table-cell; text-align: center;" id="LPImageAnchor_14864716254770.3321707710676972"><img id="LPThumbnailImageID_14864716254780.00860112815762426" aria-label="Preview image with link selected. Double-tap to open the link." style="display: inline-block; max-width: 250px; max-height: 250px; height: 125px; width: 100px; border-width: 0px; vertical-align: bottom;" height="125" width="100" src="https://blog.kitware.com/source/files/Small.4_447936566.jpg"></a></div>
</td>
<td colspan="2" style="vertical-align: top; position: relative; padding: 0px; display: table-cell;" id="TextCell_14864716254780.2558702480370797">
<div id="LPRemovePreviewContainer_14864716254780.7398717076792145"></div>
<div style="top: 0px; color: rgb(17, 111, 160); font-weight: 400; font-size: 21px; font-family: "wf_segoe-ui_light","Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif; line-height: 21px;" id="LPTitle_14864716254780.7697739656531463">
<a target="_blank" href="https://blog.kitware.com/anatomy-of-a-paraview-catalyst-python-script/" style="text-decoration: none;" id="LPUrlAnchor_14864716254790.7649144835302768">Anatomy of a ParaView Catalyst Python Script | The Kitware ...</a></div>
<div style="margin: 10px 0px 16px; color: rgb(102, 102, 102); font-weight: 400; font-family: "wf_segoe-ui_normal","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif; font-size: 14px; line-height: 14px;" id="LPMetadata_14864716254790.039913772958364735">
blog.kitware.com</div>
<div style="display: block; color: rgb(102, 102, 102); font-weight: 400; font-family: "wf_segoe-ui_normal","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif; font-size: 14px; line-height: 20px; max-height: 100px; overflow: hidden;" id="LPDescription_14864716254800.5245668952580711">
Introduction. ParaView Catalyst has yielded some amazing results. Such results include iso-surfacing and generating images with 256K Message Passing Interface (MPI ...</div>
</td>
</tr>
</tbody>
</table>
</div>
<br>
<br>
</div>
Cheers,<br>
</div>
Andy<br>
</div>
<div class="gmail_extra"><br>
<div class="gmail_quote">On Tue, Feb 7, 2017 at 7:14 AM, Gallagher, Timothy P <span dir="ltr">
<<a href="mailto:tim.gallagher@gatech.edu" target="_blank">tim.gallagher@gatech.edu</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex">
<div dir="ltr">
<div id="m_-3543213876447494334divtagdefaultwrapper" dir="ltr" style="font-size:12pt; color:#000000; font-family:Calibri,Arial,Helvetica,sans-serif">
<p>Hello again,</p>
<p><br>
</p>
<p>I am working on a pipeline using Catalyst that writes data only when features are detected. The idea is to have a 3D contour generated in the pipeline, and when it is big enough, start recording data. There is a long lead-up to when the features appear,
 and then they disappear rapidly, so I would like to only collect data when the features are present.
<br>
</p>
<p><br>
</p>
<p>To that end, my DoCoProcessing() function has something that checks the 'Area' value in the CellData of an IntegrateVariables filter. The full function is below. However, this doesn't ever write any images or data. It also doesn't throw any errors, so I
 have a feeling the pipeline isn't actually evaluated/updated after the call to UpdateProducers.
<br>
</p>
<p><br>
</p>
<p>So, my question -- at what point in the DoCoProcessing function is the pipeline actually evaluated? Do all the filters execute when the UpdatedProducers function is called? Or do they only update when the outputs to which they are connected are called, ie.
 WriteData and WriteImages? <br>
</p>
<p><br>
</p>
<p>Thanks,</p>
<p><br>
</p>
<p>Tim</p>
<p><br>
</p>
<p></p>
<div>def DoCoProcessing(<wbr>datadescription):<br>
    "Callback to do co-processing for current timestep"<br>
    global coprocessor<br>
    global lastTime<br>
    global deltaT<br>
<br>
    # Update the coprocessor by providing it the newly generated simulation data.                         <wbr>                              <wbr>                              <wbr>                              <wbr>               <br>
    # If the pipeline hasn't been setup yet, this will setup the pipeline.                     <wbr>                              <wbr>                              <wbr>                              <wbr>                          <br>
    coprocessor.UpdateProducers(<wbr>datadescription)<br>
<br>
    curTime = datadescription.GetTime()<br>
<br>
    if curTime >= lastTime + deltaT:<br>
      lastTime = curTime<br>
<br>
      if coprocessor.Pipeline.<wbr>flameArea.CellData['Area'] > 1e-9:<br>
        # Write output data, if appropriate.                  <wbr>                              <wbr>                              <wbr>                              <wbr>                              <wbr>                             <br>
        coprocessor.WriteData(<wbr>datadescription);<br>
<br>
        # Write image capture (Last arg: rescale lookup table), if appropriate.                  <wbr>                              <wbr>                              <wbr>                              <wbr>                        <br>
        coprocessor.WriteImages(<wbr>datadescription, rescale_lookuptable=False)<br>
<br>
        # Live Visualization, if enabled.                      <wbr>                              <wbr>                              <wbr>                              <wbr>                              <wbr>                            <br>
        coprocessor.<wbr>DoLiveVisualization(<wbr>datadescription, "localhost", 22222)<br>
</div>
<br>
<p></p>
</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="http://public.kitware.com/mailman/listinfo/paraview" rel="noreferrer" target="_blank">http://public.kitware.com/<wbr>mailman/listinfo/paraview</a><br>
<br>
</blockquote>
</div>
<br>
</div>
</div>
</div>
</div>
</body>
</html>