Re: [Paraview] C++ Catalyst vtkSocket::Receive stuck in loop on Windows

2017-07-10 Thread Andy Bauer
Hi, Are you trying to close the connection from the in situ side? The design was for the connection to be close through the GUI. It's difficult to say what exactly is going on here without getting fairly deep into the problem. Theoretically though it should be possible to do the Live link in C++

Re: [Paraview] How to properly visualize data in Paraview using HDF5?

2017-07-10 Thread David E DeMarle
cc'ing the list back in xdmf has join for this purpose, but I typically use python filter in paraview to join the scalars together into a vector instead. That route is more widely traveled. David E DeMarle Kitware, Inc. Principal Engineer 21 Corporate Drive Clifton Park, NY 12065-8662 Phone:

Re: [Paraview] How to properly visualize data in Paraview using HDF5?

2017-07-10 Thread David E DeMarle
Does 19 19 91 work? David E DeMarle Kitware, Inc. Principal Engineer 21 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-881-4909 On Mon, Jul 10, 2017 at 11:46 AM, Jake Gerard wrote: > Good Morning, > > I am trying to update the visualization portion of an HPC

[Paraview] How to properly visualize data in Paraview using HDF5?

2017-07-10 Thread Jake Gerard
Good Morning, I am trying to update the visualization portion of an HPC fluid model. Used to use legacy VTK but its starting to reach its limits. I read that HDF5 was good for large data sets and that it could be viewed in Paraview with XDMF. However, it seems there are so few examples online. I

Re: [Paraview] C++ Catalyst vtkSocket::Receive stuck in loop on Windows

2017-07-10 Thread Simon Klarmann
Sorry I think I have chosen the wrong reply method. Hi Andy, I already got rid of Python on both sides. CoProcessing with Live connection is working by directly using the vtkLiveInsituLink (pure C++ implementation). Working with both Paraview 5.2 and 5.4. My problem is closing

Re: [Paraview] multiple visualization pipeline at a time with co-processing

2017-07-10 Thread Andy Bauer
Glad to hear it's working properly now! I figured it was something quite subtle but not overly complex to fix once the issue was found. On Mon, Jul 10, 2017 at 2:28 AM, wrote: > Hi Andy, > > Thanks for your help. I think i found the problem. In my case, the >

[Paraview] Clipping using a Surface

2017-07-10 Thread Manuel Schölling
Hi, I have a surface surrounding a volume and I have polygonal mesh (.vtk files). Now I would like to cut off the part of the polygonal mesh that is outside of this volume. I tried to play around a bit with the clipping tools but I could not figure out how to do this. Your help would be very

Re: [Paraview] Coloring isocontour by the coordinates outputted from a Transform filter and some other questions

2017-07-10 Thread Cory Quammen
Shuhao, If you don't want to use the Programmable Filter, which is actually pretty powerful and gives you access to just about all filters in VTK (at least those that are compiled for ParaView), then your second-best bet for what you want to do is to create a custom VTK filter and include that as

[Paraview] Quadrature point data contours

2017-07-10 Thread Darcy Beurle
Hi, Sorry if this has been covered before (I have attempted to read as much as I can on this), but I am still having difficulties getting what I want done. I have a finite element model with data at the quadrature points, and I wish to visualise these on a mesh (similar to nodal point values)

Re: [Paraview] multiple visualization pipeline at a time with co-processing

2017-07-10 Thread u . utku . turuncoglu
Hi Andy, Thanks for your help. I think i found the problem. In my case, the initialization code was something like following, ... vtkSmartPointer pipeline = vtkSmartPointer::New(); for (int i = 0; i < *nscript; i++) { pipeline->Initialize(pythonScriptNames[i]);