Re: [Paraview] custom view plugin - minimal example needed

2018-01-26 Thread Mathieu Westphal
Hi Kolja Inheriting directly from vtkPVView is not possible as there is specific code dedicated to managing each type of base view. Even if it was possible, it would not allow you to add QtWidget anywhere in the view. This is not possible due to design. However, there are possibilities to add Qt

[Paraview] Multiple identical "sources" proxies in a saved XML state file (GlyphType)

2018-01-26 Thread Artem Bodrin
Hello, dear developers. I have issued this question on a bug tracker, but will duplicate it here, if you do not mind https://gitlab.kitware.com/paraview/paraview/issues/17957 I'm not sure if this is a bug, but I have noticed, that

Re: [Paraview] Extracting data on the surface of a block?

2018-01-26 Thread Steytler, Louis Louw
Utkarsh, I forget, meant to say blocks 1 and 2 represent the drop. I actually extracted and merged these two in ParaView. Will send a state file soon, apologies for late, I have been traveling the past two days. Thanks again, Louis Steytler Department of Mechanical Science and Engineering

Re: [Paraview] Multiple identical "sources" proxies in a saved XML state file (GlyphType)

2018-01-26 Thread Utkarsh Ayachit
Artem, You raise good points. In reality, only saving the state of the currently selected proxy from proxy-list domain should be sufficient. There are challenges to doing that given the current implementation, however. Let me try to figure out a viable solution and get back to you. Utkarsh On

[Paraview] Save Animation option in ParaView 5.4.0 vs 5.3.0

2018-01-26 Thread Van Moer, Mark W
Hello, In ParaView 5.3.0 and earlier, when Animation mode was Snap to TimeSteps, in the Save Animation dialog box there was an option for No. of Frames / timestep. This doesn't show up in the 5.4.0 dialog box. Was this just moved or was it removed completely? My use case for this is a data

Re: [Paraview] Plain text data with white space delimiters; Use raw array as axis/variables

2018-01-26 Thread Andy Bauer
Hi, ParaView should be able to handle this. Try giving the filename a .csv extension and then add a space for the Field Delimiter Characters options. Optionally, you may also want to enable the Merge Consecutive Delimiters option. On Fri, Jan 26, 2018 at 8:33 AM, Liang Wang

Re: [Paraview] Save Animation option in ParaView 5.4.0 vs 5.3.0

2018-01-26 Thread Van Moer, Mark W
I forgot to mention that I can write out the number of frames I want if I use Sequence instead of Snap to TimeSteps, however, then an Annotate Time source will show an interpolated time based on the sequence rather than the actual timesteps. If there's a work around for that behavior I could do

[Paraview] Plain text data with white space delimiters; Use raw array as axis/variables

2018-01-26 Thread Liang Wang
Hi All, 1) Does the ParaView GUI read a plain text file with white space as delimiters? 2) Can ParaView use a giving 1d array as an axis? My problem: I have a plain text data file, each column is a different variable, and delimiters are white space, e.g., x y z variable1 variable 2 Is there a

Re: [Paraview] OpenGL Vendor

2018-01-26 Thread Utkarsh Ayachit
To add to what Ken said, the "Client Information" tab shows you info about OpenGL for the "paraview" executable, while the "Connection Information" gives you info for the "pvserver", if any. On Fri, Jan 26, 2018 at 10:54 AM, Ken Martin wrote: > OpenGL is loaded at runtime

Re: [Paraview] Save Animation option in ParaView 5.4.0 vs 5.3.0

2018-01-26 Thread David E DeMarle
Hey Mark, Looks like we took that out as part of the revamp described here: https://gitlab.kitware.com/paraview/paraview/issues/15917 Specifically this merge request took out the "No. Frames" entry. https://gitlab.kitware.com/paraview/paraview/merge_requests/896 because, at least at that time,

Re: [Paraview] OpenGL Vendor

2018-01-26 Thread Ken Martin
OpenGL is loaded at runtime so what matters is the mostly the system it is running on as opposed to the system it was compiled on (except OSMesa see below). To make it a bit more complicated, if you use GLXforwarding or a similar OpenGL forwarding mechanism then what matters is some combination

Re: [Paraview] Plain text data with white space delimiters; Use raw array as axis/variables

2018-01-26 Thread Liang Wang
Thanks, Andy. That works! Now the problem is how I can use the 1d arrays to construct 3d plots. Now I have many 1d arrays: x, y, z, variable1, variable2, ..., etc. Unfortunately, they are AMR data, not regularly indexed, (in fact they are TecPlot ascii data, but ParaView could not read them