Re: [Paraview] Exporting ICEM CFD Mesh to ParaView

2010-01-19 Thread Mark Olesen
On Mon, 2010-01-18 at 19:37 -0200, Rafael Castaneda wrote: Hi, I'm trying to export a mesh generated in ICEM CFD to ParaView. I realized that I can export the mesh to Exodus II format and then open it with ParaView, but no information about the parts of the mesh is loaded, just the blocks.

[Paraview] Tiled Display

2010-01-19 Thread Christian Wohlschlager
** Reply Requested When Convenient ** Dear Everybody ! I read the mail on FAQ from 22.Maya 2009 satating that tiled display and stereo does not work, but if i draw i simple cube or line it it definatly working, if i read in a vtk or pvd file i cant this object displayed 3 or more times on each

Re: [Paraview] Exporting ICEM CFD Mesh to ParaView

2010-01-19 Thread Berk Geveci
Out of curiosity, what is the difference between parts and blocks? Or are you using them interchangeably? On Mon, Jan 18, 2010 at 11:28 AM, Rafael Castaneda ramacan...@gmail.com wrote: Hi, I'm trying to export a mesh generated in ICEM CFD to ParaView. I realized that I can export the mesh to

Re: [Paraview] Exporting ICEM CFD Mesh to ParaView

2010-01-19 Thread Rafael Castaneda
Hi, thanks for answering. I've programmed a plugin for CFD preprocessing purposes (I mean, setting boundary and initial conditions, solver parameters and so on) and I would like that a user could make a model+mesh in ICEM CFD and export it to ParaView. When using ICEM CFD, one usually creates

Re: [Paraview] Exporting ICEM CFD Mesh to ParaView

2010-01-19 Thread Adriano Gagliardi
Are you sure that all the information exists in the output file from ICEM? I know from past experience that when outputing a Plot3D file after using ICEM Hexa that none of the boundary information was included. There is an output format known as Multiblock-Info that should contain the information

Re: [Paraview] new plugin errors

2010-01-19 Thread Dave Partyka
My apologies, I added that. I didn't realize plugins were being linked against. Thanks Utkarsh! On Tue, Jan 19, 2010 at 3:34 AM, Biddiscombe, John A. biddi...@cscs.chwrote: Thanks Utkarsh, it works as normal again. JB -Original Message- From: Utkarsh Ayachit

[Paraview] Problems with WriteImage using pvpython

2010-01-19 Thread Adriano Gagliardi
I am coming across a weird problem. I'm attempting to use the WriteImage paraview.simple command in batch mode. However, whenever I run the script it gives me a segmentation fault; no other error appears. The same script runs fine via the Python Shell. I am using ParaView version 3.6.2-RC1, which

[Paraview] MultiBlock Dataset Naming Issues

2010-01-19 Thread Michael Jackson
I have my MultiBlockDataset reader working nicely now. I have a custom panel that contains a tree view and I can select various selections from the tree and have something rendered in the 3D view. Awesome. Now, the problems. When I click on the Information tab to see the list of datasets

[Paraview] VTK: Re(z), Im(z) plotted as |z|^2, arg(z) ?

2010-01-19 Thread Nico Schlömer
Hi, I'm having that very simple legacy VTK file (STRUCTURED_GRID) with one big block of SCALARS with two components, representing the real part and the imaginary part of complex values z. The values that are interesting for plotting are |z|^2 and arg(z), which of course can be entirely expressed

Re: [Paraview] How to pick a point and get it in a plugin?

2010-01-19 Thread Fred Fred
Sorry to put this message up but I suspect there is a way to get the coords or point id of a point picked with select point on functionnality, so please may someone give me some hints? From: stan1...@hotmail.fr To: paraview@paraview.org Date: Sat, 16 Jan 2010 19:29:09 +0100 Subject: [Paraview]

Re: [Paraview] VTK: Re(z), Im(z) plotted as |z|^2, arg(z) ?

2010-01-19 Thread Moreland, Kenneth
Can you use the array calculator filter to compute the derived values? -Ken On 1/19/10 9:39 AM, Nico Schlömer nico.schloe...@gmail.com wrote: Hi, I'm having that very simple legacy VTK file (STRUCTURED_GRID) with one big block of SCALARS with two components, representing the real part and the

[Paraview] Overview in Paraview3.6.2 binary release

2010-01-19 Thread Xunlei Wu
Hi All, Is Overview http://kitware.com/InfovisWiki/index.php/OverView#Why_OverView.3F part of Paraview 3.6.2 binary release? Or I need to grab CVS source tree and compile from the scratch? Thanks a lot. Best, xunlei ___ Powered by www.kitware.com

Re: [Paraview] ExtractSelection loses selection order

2010-01-19 Thread David Doria
On Mon, Jan 18, 2010 at 12:31 PM, David Doria daviddo...@gmail.com wrote: If I select 3 points and then use the ExtractSelection filter, I would expect the IDs of the points to be 0,1,2, in the order selected. Instead, they are 2, 0, 1. Is there any way to prevent this? I am trying to set

Re: [Paraview] Packaging branded binary

2010-01-19 Thread Eric E. Monson
Hey Utkarsh,So, at this point the Ubuntu packaging is manageable for now. (libaudio is the only thing that seems to be required that doesn't get packaged.)In moving on to the OS X packaging I'm having a few issues, some of which are probably just due to my ignorance:1. The install_qt_libs() macro

Re: [Paraview] MultiBlock Dataset Naming Issues

2010-01-19 Thread burlen
PV expects each block to have the same set of arrays, if an array is missing from one of the blocks then PV treats it as a partial array. Are you setting the same arrays in each block? Michael Jackson wrote: I have my MultiBlockDataset reader working nicely now. I have a custom panel that

Re: [Paraview] How to pick a point and get it in a plugin?

2010-01-19 Thread burlen
If you make your filter have two inputs, you might be able to use select points on and the extract selection filter as the second input. That will let you get point actually on the surface. Fred Fred wrote: Sorry to put this message up but I suspect there is a way to get the coords or point

Re: [Paraview] MultiBlock Dataset Naming Issues

2010-01-19 Thread Michael Jackson
I am doing the following: vtkImageData* imageData = ... // Initialize output with the proper dimensions and other stuff . // Set the Name of the Scalars imageData-GetPointData()-GetScalars()-SetName(record- getRecordName().c_str()); imageData-GetPointData()-SetActiveScalars(record-

Re: [Paraview] Overview in Paraview3.6.2 binary release

2010-01-19 Thread Utkarsh Ayachit
OverView binaries are not a part of the ParaView 3.6.2 binaries. You can check out CVS with tag ParaView-3-6-2 for get OverView. Utkarsh On Tue, Jan 19, 2010 at 1:13 PM, Xunlei Wu xun...@renci.org wrote: Hi All, Is Overview http://kitware.com/InfovisWiki/index.php/OverView#Why_OverView.3F

Re: [Paraview] MultiBlock Dataset Naming Issues

2010-01-19 Thread Michael Jackson
Ok. But wouldn't that just set the name of the multiblock dataset that holds all the extracted datasets? I am looking for something like: multiblock-SetDataName(blockNumber, Name); And for those names to show up in the gui somewhere I guess. -- Mike Jackson www.bluequartz.net On Jan 19,

[Paraview] vtkPOpenFOAM reader

2010-01-19 Thread Pierre-Olivier Dallaire
Good afternoon, I have noticed last week that Takuya's OpenFOAM reader is now included in the cvs version, which is good ! I know that in the last versions of the reader, a refresh button was included in order to reload the case / is this something that could be included in the cvs version as

Re: [Paraview] VTK: Re(z), Im(z) plotted as |z|^2, arg(z) ?

2010-01-19 Thread Nico Schlömer
Yes, excellent, much better. Thanks a lot! On Tue, Jan 19, 2010 at 8:32 PM, Moreland, Kenneth kmo...@sandia.gov wrote: Actually, I was just talking about the calculator filter (third toolbar down, all the way to the left, icon looks like a calculator).  It is nowhere near as powerful, but it

Re: [Paraview] MultiBlock Dataset Naming Issues

2010-01-19 Thread burlen
typo in my example, this one should be better burlen wrote: if you set the vtkCompositeDataSet::NAME() in each block it will show up in the object inspector information tab. I attached an example. Michael Jackson wrote: Ok. But wouldn't that just set the name of the multiblock dataset that

Re: [Paraview] MultiBlock Dataset Naming Issues

2010-01-19 Thread burlen
if you set the vtkCompositeDataSet::NAME() in each block it will show up in the object inspector information tab. I attached an example. Michael Jackson wrote: Ok. But wouldn't that just set the name of the multiblock dataset that holds all the extracted datasets? I am looking for something

Re: [Paraview] vtkPOpenFOAM reader

2010-01-19 Thread Takuya OSHIMA
Hi Pierre-Olivier, The reload feature is not included because I used a GPLed version of Qt 4.3 for the development (thus I thought that part had to be GPLed) when I submitted the reader. Also, the reader is based on a version of around a year ago that supports syntaxes up until OF 1.5 (no