Re: [Paraview] [EXTERNAL] [Paraview-developers] ANN: ParaView 5.1.0 available for download

2016-06-22 Thread Scott, W Alan
Very nice. Pat on the back to the VTK and ParaView developers, and especially Kitware. Nice help menu and startup screen! Alan -Original Message- From: Paraview-developers [mailto:paraview-developers-boun...@paraview.org] On Behalf Of Utkarsh Ayachit Sent: Tuesday, June 21, 2016

[Paraview] need some help reading data in pvpython

2016-06-22 Thread Beach, Timothy A. (GRC-LTE0)[Vantage Partners, LLC]
I’ve done some neat stuff with pvpython but I’m stuck on something really basic. I’ve read a structured multi block dataset(plot3d). Where do I find the number of blocks and the size of each block. I’ve been using help and dir() but I haven’t found that info. Thanks Tim

Re: [Paraview] Transparent background in python scripts

2016-06-22 Thread Utkarsh Ayachit
Currently, it's not exposed to Python. It's on the TODO list to get that fixed for 5.2. On Mon, Jun 20, 2016 at 12:03 PM, Armin Wehrfritz wrote: > Hi! > > How can I save screenshots with a transparent (alpha channel based) > background from a python script? > > Currently, I'm

Re: [Paraview] Paraview 5.0.1 - Registering new view

2016-06-22 Thread Utkarsh Ayachit
You just need to tell ParaView which pqView subclass to create for your view proxy e.g. if pqContextView class would work for your case, then you'd add something like the following in your CMakeList.txt add_pqproxy(OUTIFACES OUTSRCS TYPE pqContextView XML_GROUP views XML_NAME

Re: [Paraview] Required CMake version 3.5

2016-06-22 Thread Ben Boeckel
On Wed, Jun 22, 2016 at 05:21:33 +0200, Christoph Grüninger wrote: > thanks for link to the developer mailing list discussion. I think CMake 3.3 > is better then > 3.5, because at least the last Leap 42.1 release provides that. > I patched ParaView to require CMake 3.0 and it builds fine. I will

Re: [Paraview] Automatically updating time variable dataset

2016-06-22 Thread corinna reuter
This is not practical. We have tried this before. The data are updated in a background thread, so that data to be displayed are always available without any delay. The continuous redrawing uses 100% cpu. Even with a refresh rate reduced to 20 updates per second (sleep commands) cpu usage is still

Re: [Paraview] [Non-DoD Source] ANN: ParaView 5.1.0 available for download

2016-06-22 Thread Utkarsh Ayachit
> Should there be a tag for v5.1.0 for the Superbuild?I was looking at > the Superbuild wiki and I should be able to checkout the Superbuild using > a new tag - unless those instructions are now obsolete? Doh, I always forget that :). All set. ___

Re: [Paraview] [Non-DoD Source] ANN: ParaView 5.1.0 available for download

2016-06-22 Thread Angelini, Richard C (Rick) CIV USARMY RDECOM ARL (US)
Should there be a tag for v5.1.0 for the Superbuild?I was looking at the Superbuild wiki and I should be able to checkout the Superbuild using a new tag - unless those instructions are now obsolete? Rick Angelini USArmy Research Laboratory CISD/HPC

[Paraview] Paraview 5.0.1 - Registering new view

2016-06-22 Thread Andrzej Peczak
Hi I am trying to figure out how can I register a new view under a name different than the default "YXYChartView" which replaces the default representation in Paraview, but I am either getting the assertion failure "ASSERT: "pqPreferredView" in file

Re: [Paraview] Minor bug in OPENFOAM filter

2016-06-22 Thread Eugene de Villiers
Hi Takuya! The problem is that not all boundaries have "value" entries. zeroGradient, fixedGradient, symmetry, empty - none have values. It is a frustrating inconsistency for 3rd-party interfaces, but that's the way it is unfortunately. If you want a reasonable and straight-forward solution,

[Paraview] Map Projection filter

2016-06-22 Thread Steve Lamont
Perhaps I'm just missing it but I can't find any documentation for the Map Projection filter. It looks as if it's producing a Mercator projection but I wouldn't swear to it. Also, is there any way when using it to retain the latitude/longitude values for the axes? Any guidance would be

Re: [Paraview] Minor bug in OPENFOAM import filter

2016-06-22 Thread Eugene de Villiers
Hi Dave, Sure thing. Attached find a small case. Just load the “case.foam” file from inside the directory once you have uncompressed it. You will see the error pop up (I am running Paraview 5.0.0). Thanks for your help, Eugene From: David Lonie [mailto:david.lo...@kitware.com] Sent: 22

Re: [Paraview] XML plugin syntax for FileChooser

2016-06-22 Thread Utkarsh Ayachit
Ah! No, the current implementation doesn't support that, but if you want to extend the code to do so and push a merge-request on ParaView (d) -- which would be awesome -- here are a few pointers: 1. Extend pqFileChooserWidget (a) to add support for non-existing files. 2. Extend

Re: [Paraview] Minor bug in OPENFOAM filter

2016-06-22 Thread Takuya OSHIMA
Hi Eugene and all, Sorry for not giving a concrete solution but just a comment. The current reader handles the complex OpenFOAM format without a priori knowledge of exact format of a specific dictionary entry. With further growing complexity and format extensions made over OpenFOAM versions,

Re: [Paraview] Can a collaborative client share a pipeline without creating a view itself?

2016-06-22 Thread Utkarsh Ayachit
> can you give a quick update whether the suggested bug fix is likely to be > solved: Here you go: https://gitlab.kitware.com/paraview/paraview/merge_requests/844 Once the dashboards come back clean, this will get merged. If do get around to testing it, I'd suggest getting involved and giving

Re: [Paraview] Minor bug in OPENFOAM import filter

2016-06-22 Thread David Lonie
On Wed, Jun 22, 2016 at 8:04 AM, Eugene de Villiers wrote: > Hi, > > > > We have come across a minor, but annoying bug in the Paraview OPENFOAM > reader. > Hi Eugene, I'll take a look at this. I'm not terribly familiar with openfoam files, so if you could send me that

[Paraview] Minor bug in OPENFOAM import filter

2016-06-22 Thread Eugene de Villiers
Hi, We have come across a minor, but annoying bug in the Paraview OPENFOAM reader. The component of the Paraview OPENFOAM parser that reads boundary conditions has been set up to always expect another number where a scalar is encountered in the following configuration: (1.111 ### when you

Re: [Paraview] Table to structured grid problem

2016-06-22 Thread Cory Quammen
Lester, Yes, in structured grids in VTK the x dimension changes fastest, then y, then z. Cory On Wed, Jun 22, 2016 at 1:15 PM, Lester Anderson wrote: > Think I sorted it by reordering the data: > sort(z) -> sort(y) -> sort(x) (in Excel) > Gives the volume rendered

Re: [Paraview] Table to structured grid problem

2016-06-22 Thread Lester Anderson
Think I sorted it by reordering the data: sort(z) -> sort(y) -> sort(x) (in Excel) Gives the volume rendered properly. So is there a specific ordering scheme to follow? On 22 June 2016 at 10:23, Lester Anderson wrote: > As a quick note, each layer is ordered bottom left to

Re: [Paraview] Automatically updating time variable dataset

2016-06-22 Thread Mathieu Westphal
Hello A work around would be to declare two (fake) timestep in your reader and play the animation in loop in paraview. Regards, Mathieu Westphal On Wed, Jun 22, 2016 at 12:51 PM, corinna reuter wrote: > A question to the specialists: > Can Paraview refresh its view

[Paraview] Automatically updating time variable dataset

2016-06-22 Thread corinna reuter
A question to the specialists: Can Paraview refresh its view automatically when a dataset updates its state? A plugin starts a background thread that calculates new dataset values periodically. Each time a calculation step is finished, all filters and views connected to the generated dataset

Re: [Paraview] Table to structured grid problem

2016-06-22 Thread Lester Anderson
As a quick note, each layer is ordered bottom left to top right. The region is defined as: west = 117, East = 128.5, South = -11, North = -6 On 22 June 2016 at 06:42, Lester Anderson wrote: > Hi Ken, > > The data dimensions are: 116 x 51 x 51 (xyz), so the model extent was

[Paraview] XML plugin syntax for FileChooser

2016-06-22 Thread LB
[Paraview] XML plugin syntax for FileChooser. Hi, I would like to create a custom programmable python filter to write some calculation results in a file. I’ve tried to use the following XML plugin syntax to define a FileChooser button and help the user select the path of the output file :

Re: [Paraview] Required CMake version 3.5

2016-06-22 Thread Cory Quammen
Hi Christoph, Thanks for the information, and again, thanks for your hard work packaging ParaView. Best regards, Cory On Wed, Jun 22, 2016 at 5:21 AM, Christoph Grüninger wrote: > Hi Cory, > thanks for link to the developer mailing list discussion. I think CMake 3.3 > is