<div dir="ltr"><div><div><div><div>Hi Tim,<br><br></div>Glad you figured out the issue. <br><br></div>As for the XDMF writer with Catalyst, you can do it but it takes some modifications to the Catalyst Python script. Currently only the parallel VTK XML writers and the ADIOS writer are fully supported in Catalyst through the script generation utility. I haven't tested the XDMF writer very much in parallel but maybe it's about time to see about that and then add it to the list of writers that are fully supported in Catalyst.<br><br></div>Cheers,<br></div>Andy<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Jan 30, 2016 at 11:20 AM, Tim Gallagher <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><div style="font-family:times new roman,new york,times,serif;font-size:12pt;color:#000000">Hi Andy,<br><br>Thanks for the reply! The data is a vtkMultiBlockDataSet with structured grids. I forgot about the grid writing debugging technique, I found the issue.<br><br>It turns out that all of my runs/testing in the past 4 years I've had coprocessing had only 1 block per processor and this simulation we were trying had multiple blocks per processor. Buried deep in my interface adapter code where I set the pointers for the grid arrays, I was pointing to the first pointer in the array of pointers instead of incrementing through the array for each block. So all the blocks besides the first on the processor were using the wrong coordinates and it just so happened that meant we didn't have any grid points where the slice was. So changing my ptr = x[0] to ptr = x[i] was all it took... kind of embarrassing. <br><br>At any rate, one of the things I tried to do while debugging was to write out the grid using Xdmf instead of VTK. But that didn't work. I had:<br><br>writer = coprocessor.CreateWriter( XdmfWriter, "filename_%t.xmf", 1 )<br><br>and I got:<br><br>...<br>  File "/data4/pv4.4Build/lib/site-packages/paraview/coprocessing.py", line 319, in WriterParametersProxy<br>    proxy.GetProperty("Input").SetInputConnection(<br>AttributeError: 'NoneType' object has no attribute 'GetProperty'<br>ERROR: In /data3/ParaView/ParaViewCore/ServerImplementation/Core/vtkSIProxyDefinitionManager.cxx, line 565<br>vtkSIProxyDefinitionManager (0x3854340): No proxy that matches: group=insitu_writer_parameters and proxy=XdmfWriter were found.<br><br>Is it possible to write out a multiblock dataset from coprocessing using XDMF?<br><br>Thanks again,<br><br>Tim<br><br><hr><div style="color:#000;font-weight:normal;font-style:normal;text-decoration:none;font-family:Helvetica,Arial,sans-serif;font-size:12pt"><b>From: </b>"Andy Bauer" <<a href="mailto:andy.bauer@kitware.com" target="_blank">andy.bauer@kitware.com</a>><br><b>To: </b>"tim gallagher" <<a href="mailto:tim.gallagher@gatech.edu" target="_blank">tim.gallagher@gatech.edu</a>><br><b>Cc: </b>"paraview" <<a href="mailto:paraview@paraview.org" target="_blank">paraview@paraview.org</a>><br><b>Sent: </b>Saturday, January 30, 2016 7:46:01 AM<br><b>Subject: </b>Re: [Paraview] Slice not appearing while coprocessing<br><br><div dir="ltr"><div><div>Hi Tim,<br><br></div>Everything seems to be correct. Maybe on the "input" name/identifier isn't matching? This is an unstructured grid output, correct?<br><br></div>Maybe try writing out the full grid to see if Catalyst is getting the proper input information. <br><div><div><div><div><div><br></div><div>Cheers,<br></div><div>Andy<br></div><div><br></div></div></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jan 29, 2016 at 4:18 PM, Tim Gallagher <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">Hi everybody,<br>
<br>
I was working with a colleague to get his simulation running with coprocessing and I am totally stumped on the problem. I have been able to set up and render some very complex things with our code, but for some reason this simulation just won't work as expected.<br>
<br>
We generated the coprocessing script with version 4.3 and we are running it on a cluster with the same version, using off-screen rendering. I have attached the script, it really just takes a slice through the center of the domain.<br>
<br>
It is producing images of the colorbar and nothing else. I tried to save the slice data to an xdmf file from the coprocessing script and it all reports dimensions of zero. So the slice doesn't seem to be actually doing anything.<br>
<br>
We took the exact lines from the Pipeline class and moved them to their own python file. We then removed the coprocessor.RegisterView and changed the coprocessor.CreateProducer line so it loads a datafile off disk instead. We then ran it through the python shell in the paraview GUI and we get exactly the slice we expected to get.<br>
<br>
So, for some reason, this renders fine in the GUI but outputs the background with just the colorbar when we are using coprocessing.<br>
<br>
Any ideas or glaring problems in the coprocessing script that we are missing?<br>
<br>
Thanks,<br>
<br>
Tim<br>_______________________________________________<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/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/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=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/mailman/listinfo/paraview</a><br>
<br></blockquote></div><br></div>
</div><br></div></div></blockquote></div><br></div>