Re: [Paraview] Memory leaks in Catalyst ?

2018-02-22 Thread Andy Bauer
Hi Yvan, The vtkPKdTree ones look like they could be after looking at the code, especially vtkPKdTree::InitializeRegionAssignmentLists(). It seems like a good idea to replace the int **ProcessAssignmentMap with maybe a std::vector. Probably a good idea for the other member variables here as well.

Re: [Paraview] How to represent many glyphs colored by SeedIds per streamline?

2018-02-22 Thread Dan Lipsa
Thomas, Take a look at the ParaView pipeline in https://blog.kitware.com/evenly-spaced-streamlines-2d/ There, I place arrows along a streamline. Dan On Thu, Feb 22, 2018 at 1:53 PM, Thomas Oliveira wrote: > Hi, > > I am visualizing disks perpendicular to

[Paraview] How to represent many glyphs colored by SeedIds per streamline?

2018-02-22 Thread Thomas Oliveira
Hi, I am visualizing disks perpendicular to streamlines by performing the following steps, which works. 1) Create a Plane 2) Create a Stream Tracer with Custom Source using the plane 3) With the stream tracer selected in the pipeline browser, add the glyph filter 4) In the Glyph

Re: [Paraview] [EXTERNAL] Re: Hello

2018-02-22 Thread Scott, W Alan
Existing tutorials for ParaView are listed on the ParaView web site here: https://www.paraview.org/tutorials/ Does anyone in the community know of other ParaView tutorials that are up to date and publicly available? Thanks, Alan From: ParaView [mailto:paraview-boun...@public.kitware.com] On

Re: [Paraview] how to make a new protocol

2018-02-22 Thread Sgouros, Thomas
Thank you, I will look at it. -Tom On Thu, Feb 22, 2018 at 11:24 AM, Sebastien Jourdain < sebastien.jourd...@kitware.com> wrote: > LightViz will be a good example as it defines a custom set of protocols > instead of using only the default ones like in Visualizer. > >

Re: [Paraview] how to make a new protocol

2018-02-22 Thread Sebastien Jourdain
LightViz will be a good example as it defines a custom set of protocols instead of using only the default ones like in Visualizer. https://github.com/Kitware/light-viz/tree/master/server On Thu, Feb 22, 2018 at 6:59 AM, Sgouros, Thomas wrote: > Hello all: > > Can

Re: [Paraview] connecting buttons and python

2018-02-22 Thread Sebastien Jourdain
An example is available here https://github.com/Kitware/light-viz/blob/master/server/light_viz_protocols.py On Thu, Feb 22, 2018 at 4:32 AM, Sgouros, Thomas wrote: > There appears to be one more missing piece, though, because my attempt > provokes an assertion error

Re: [Paraview] Hello

2018-02-22 Thread Moreland, Kenneth
Hassan, If you are interested in learning how to use ParaView for post processing, I recommend starting with the ParaView Tutorial (https://www.paraview.org/Wiki/The_ParaView_Tutorial). The tutorial does not talk about SU2 specifically, but it teaches basic techniques for visualization,

[Paraview] how to make a new protocol

2018-02-22 Thread Sgouros, Thomas
Hello all: Can someone describe the steps necessary to create and use a web socket connection between a Paraviewweb client and a pvpython server? I am not having much luck finding the documentation for registerVtkWebProtocol() which appears to be an important part of the process. Google only

Re: [Paraview] connecting buttons and python

2018-02-22 Thread Sgouros, Thomas
Turns out you can't use capital letters for the protocol options (what should I call them?), according to the discussion at this link. Some people here might find it familiar: https://groups.google.com/forum/#!topic/autobahnws/mkjF21Fb8ow -Tom On Wed, Feb 21, 2018 at 7:56 PM, Scott Wittenburg