Re: [Paraview] surface construction with holes

2017-11-14 Thread kenichiro yoshimi
Hi Ufuk, vtkSurfaceReconstructionFilter with programmable filter detects holes in your data although they are somewhat inaccurate. As Ken mentioned, it would fail for other shapes with holes. But I think it is a little funny approach. import vtk pdi = self.GetInput() pdo = self.GetOutput()

Re: [Paraview] Does pv support mili

2017-11-14 Thread Aashish Chaudhary
Mili is something that came from LLNL and although it will work using visit bridge, visit itself had a plan to improve the support. Here is the link https://www.visitusers.org/index.php?title=Mili_Support_Overhaul I did not follow up or know the current status. - aashish On Tue, Nov 14, 2017

Re: [Paraview] Does pv support mili

2017-11-14 Thread Joachim Pouderoux
Alan, There is a Mili reader (*.m *.mili) support through the Visit bridge (see visit_readers.xml). However, this reader depends on the Mili library and is not compiled by default - the CMake variable VISIT_BUILD_READER_Mili has to be turned ON explicitly. May be Robert Maynard or Sebastien

Re: [Paraview] programmable filter, OK in serial, FAILS in mpi

2017-11-14 Thread A
Hi again! So I gave that a shot Berk (starting the server and client separatly), but it still fails (although now I can see the output). It seems like each thread is trying to operate on the data, but some of the threads have no data. E.g. if I do; from paraview.numpy_support import

Re: [Paraview] Does pv support mili

2017-11-14 Thread Scott, W Alan
Hi all, I had a person come up to my demonstration at SC, and ask if ParaView can read Mili files? I believe Rich Cook worked on a Mili reader about 4 or 5 years ago. So, can ParaView read a Mili file? Thanks, Alan ___ Powered by www.kitware.com

[Paraview] SWKey: File extension for PV Readers?

2017-11-14 Thread Samuel Key
Hi, I have an xyz.xmf file that loads just fine. By renaming the file to xyz.xmf3 I was able to get directly to Xdmf3 reader. Is there a file extension that can be used to get directly to the Xdmf3 'Top Level Partition' option? Thanks in advance for the bother. Samuel Key FMA Development

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

2017-11-14 Thread Ke Gao
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”, however, I tried different ways, still haven’t figured out how to read the file info. Thanks --

Re: [Paraview] Accessing particles generated by ParticleTracer

2017-11-14 Thread Van Moer, Mark W
Hi Mathieu, I was able to hack something together that worked well enough. I ended up copying vtkParticleTracerBase to a new vtkParticleTracerBaseWithSink class. Then I duplicated the minimal amount of seed-related code I could get away with to be used with the sinks, e.g. GetSeedSources ->

Re: [Paraview] TimerEvents not fired while dragging mouse in vtkRenderWindow

2017-11-14 Thread Kolja Petersen
Joachim, I have also sent my question to the vtkusers mailing list after you have suggested it. Unfortunately more than half of the questions sent to vtkusers are never answered, although my impression is that they are formulated better than most questions on the paraview list in general. So,

[Paraview] Exodus multiblock dataset block numbers vs block IDs

2017-11-14 Thread Dennis Conklin
All, I'm trying to retrieve the block names for blocks in an Exodus multi-block dataset. There is a weird block_ID, block_number thing which I don't understand and can't get past. Imagine I have many blocks in my dataset but I only load 2 Block_ID block_number(displayed in

Re: [Paraview] surface construction with holes

2017-11-14 Thread Moreland, Kenneth
Ufuk, The short answer is, no. You cannot keep the Delaunay2D filter from filling holes. The mathematical description of Delaunay triangulation fills in all the space in the convex hull of the points. The question about having the Delaunay triangulation keeping open space that is supposed to

Re: [Paraview] NaN values

2017-11-14 Thread Moreland, Kenneth
Doina, I wasn’t trying to suggest removing all the NaN values by hand. I was saying that the file is being written incorrectly, and you need to change the way you are saving it. The simplest way should be to change the Matlab script that writes the file in the first place. I appreciate that