Re: [Paraview] [EXTERNAL] Re: pvbatch

2017-11-15 Thread Ben Boeckel
On Mon, Nov 13, 2017 at 22:04:19 +, Scott, W Alan wrote: > I believe this is a change from the past. Here is what I desire – how > do I get it? > > I want to run pv(pythonScript). I want it to produce output. I want > it to run off screen, not showing on the console display or current > dis

Re: [Paraview] Exodus multiblock dataset block numbers vs block

2017-11-15 Thread Dennis Conklin
All, Okay, maybe not the clearest email I've ever written! See the attached image: Here I have loaded a single block out of a multi-block dataset. It is the 24th block in the dataset. It was assigned the block_ID 101 at creation (we separate different blocks into different number ranges) So,

Re: [Paraview] Exodus multiblock dataset block numbers vs block

2017-11-15 Thread Shawn Waldon
Hi Dennis, I can answer part of your question. The block number is the index in a pre-order traversal of the tree of blocks in the dataset. The root is element 0, its first child is 1, that block's first child (or if none, the root's second child) is 2 and so on. Your blocks with data are likel

[Paraview] OpenGL inside VMWare virtual machine

2017-11-15 Thread Cornelis Bockemühl
Dear all, I know that I cannot go for any performance record with this setup, but having both systems available without reboot has advantages if it is about testing some new development. WOULD have - if it fully worked! So far it looks like I am "almost there" - however not knowing whether the las

[Paraview] GoCAD and Earth Vision grid files *.ts & *.evgd

2017-11-15 Thread Sonya Davydycheva
Hello, 1) Is it possible to read/import GoCAD file *.ts (triangulated surfaces) using ParaView, with a possibility to further read its data in ascii format, or convert to a 3D function of space point (x,y,z)? 2) The same question about Earth Vision grid and the respective files *.evgd: can I read

Re: [Paraview] [EXT] Re: Exodus multiblock dataset block numbers vs block

2017-11-15 Thread Dennis Conklin
Shawn, I grok the origin of the non-intuitive, better omitted than displayed, highly confusing, should be replaced with block names, block numbers.However, in my Programmable filter I just have a single block and I need the index into the block name – I’m not sure it exists anywhere that I

Re: [Paraview] OpenGL inside VMWare virtual machine

2017-11-15 Thread Ken Martin
This could be a PV Qt interaction. Try setting MESA_GL_VERSION_OVERRIDE=3.2 in your environment Basically there is a bug in Qt on windows where it refuses to see the 3.2 context from Mesa because it is not a compatibility context. On Wed, Nov 15, 2017 at 10:09 AM, Cornelis Bockemühl < cornelis.b

Re: [Paraview] How to read the file info in *pvd file

2017-11-15 Thread Cory Quammen
What do you mean by "file info"? File name? Size of the file? Data arrays in the file? - Cory On Tue, Nov 14, 2017 at 4:45 PM, Ke Gao wrote: > Does anyone know how to read the file info from *pvd file? I know how to > get the time step values, just using the keyword of “TimestepValues”, > howev

Re: [Paraview] How to read the file info in *pvd file

2017-11-15 Thread Ke Gao
Hi, I mean how to get the file name info such as "Sout_1012.pvtu", "Sout_1013.pvtu". Currently I can only read the timestep info such as "+1.9880e+03". Many thanks. On Wed, Nov 15, 2017 at 10:33 AM, Cory Quammen wrote: > What do you mean by "file info"? File name? S

Re: [Paraview] GoCAD and Earth Vision grid files *.ts & *.evgd

2017-11-15 Thread Aashish Chaudhary
I do not think that GoCAR ASCII (ts) files are directly readable in ParaView. Although there is a reader in this repo http://paraviewgeo.objectivity.ca/documentation/user-manual/supported-formats that you could bring into ParaView / VTK. If that is the case, we would be happy to help bringing in th

Re: [Paraview] [EXTERNAL] Re: pvbatch

2017-11-15 Thread Cory Quammen
Alan, You should be able to run pvpython --force-offscreen-rendering script.py and no render window will appear. The help for --force-offscreen-rendering says: "If supported by the build and platform, create headless (offscreen) render windows for rendering results." I believe this should wo

Re: [Paraview] GoCAD and Earth Vision grid files *.ts & *.evgd

2017-11-15 Thread Aashish Chaudhary
the actual code location is here: https://github.com/ObjectivitySRC/PVGPlugins/tree/master/Readers/GocadReader Let us know if you decide to bring in this code into VTK / ParaView as we will be very interested in it as well. Thanks, On Wed, Nov 15, 2017 at 12:46 PM Aashish Chaudhary < aashish.c

Re: [Paraview] OpenGL inside VMWare virtual machine

2017-11-15 Thread Cornelis Bockemühl
Thanks for the hint: I will definitely try this! Only one question: you write environment which sounds like an environment variable, but maybe you mean a variable ti be set in the CMake configuration!?! Regards, Cornelis Am 15.11.2017 17:40 schrieb "Ken Martin" : > This could be a PV Qt intera

[Paraview] Animation .avi output not working in v5.4.1, working in v4.4

2017-11-15 Thread Dennis Conklin
Anyone else seeing this? I'm getting the same msg I was getting in v4.4 (but in v4.4 it still produced a useable animation). [avi @ 0x8ec35c0] Using AVStream.codec.time_base as a timebase hint to the muxer is deprecated. Set AVStream.time_base instead. [avi @ 0x8ec35c0] Encoder did not produce

Re: [Paraview] GoCAD and Earth Vision grid files *.ts & *.evgd

2017-11-15 Thread Sonya Davydycheva
Thank you Aashish, But the link you provided includes: - GoCad ASCII Files (*.gp, *.ts, *.pl, *.vs, *.vts, *.vo, *.sg) (see Bottom of Supported Readers). Does it mean GoCAD files are doable already? Or, something still needs to be added to Paraview, to read them? Sonya Davydycheva

Re: [Paraview] GoCAD and Earth Vision grid files *.ts & *.evgd

2017-11-15 Thread Aashish Chaudhary
the code I pointed to is based on a older version of the VTK and ParaView and needs to be ported to newer VTK and ParaView. I do not expect it will be lot of work but some work and we can help you over the email if needed. Thanks On Wed, Nov 15, 2017 at 12:56 PM Sonya Davydycheva wrote: > Than

Re: [Paraview] How to read the file info in *pvd file

2017-11-15 Thread Cory Quammen
The file names are embedded in the same XML element as the time step: But I'll be that's not how you want to access them. Next question: From where do you want to access the file names? A Python script? In the UI? On Wed, Nov 15, 2017 at 12:35 PM, Ke Gao wrote: > Hi, > > I mean how to get th

Re: [Paraview] How to read the file info in *pvd file

2017-11-15 Thread Ke Gao
Actually, what I want to do is using python script to read *pvd file first to get the name info of *pvtu files. Then use the *pvtu file name to read through all of them one by one to extract the info I want. I'm not sure if there is a better way to realize this. Many thanks. On Wed, Nov 15, 2017

Re: [Paraview] OpenGL inside VMWare virtual machine

2017-11-15 Thread Cornelis Bockemühl
Question not any more relevant: setting an environment variable before starting paraview does indeed the trick: it works now indeed as expected! Thanks and regards, Cornelis Am Mittwoch, den 15.11.2017, 18:54 +0100 schrieb Cornelis Bockemühl: > Thanks for the hint: I will definitely try this! > >

[Paraview] Viewing Delft3D output in ParaView

2017-11-15 Thread Ahmed Bilal
Hello Everyone. Is there a way to see Delft 3D output in ParaView. Delft 3D produces its outout in NFIES compliant (*.dat) format. Any plugin to directly view these files. Or any way to convert these files into NetCDF for viewing in ParaView. Thanks in advance. Best regards, *Ahmed Bilal*