Re: [Paraview] Creating Append Attributes filter using python

2009-03-26 Thread tpk
Thanks for the prompt answer, Eric. That seems to work nicely. tpk From: Eric E. Monson emon...@cs.duke.edu Subject: Re: [Paraview] Creating Append Attributes filter using python To: tpk stream.ga...@yahoo.co.uk Cc: paraview@paraview.org Date: Wednesday, 25 March, 2009, 5:41 PM Hello, It looks

[Paraview] [xdmf] read in H5T_COMPOUND

2009-03-26 Thread Cyril Flaig
Hello, I try to read in hdf5 files with the xdmf reader. The read in of the mesh works. But I have some problems with the attributes. I have the following two hdf datasets: DATASET Displacements { DATATYPE H5T_COMPOUND { H5T_STD_I32LE Node; H5T_ARRAY {

Re: [Paraview] pvpython, pvbatch error loading module?

2009-03-26 Thread Utkarsh Ayachit
Jean, I've just committed a fix for this issue. Let me know if it does not work. The new charting representations/views have Qt dependencies. Those needed to be disabled from the server manager XML as well when Qt support was not enabled. /cvsroot/ParaView3/ParaView3/vtkPVConfig.h.in,v --

[Paraview] Two follow-up questions on readers

2009-03-26 Thread Thorsten Hater
Hello, I've got two more questions on reader plugins in ParaView. 1) How do I populate GUI-Elements with data read from a file. The ParaView book mentions InformationHelpers but does not explain their usage. 2) Can I use custom files - which I provide a reader for - in

Re: [Paraview] Select Points on and nearest point ...

2009-03-26 Thread Berk Geveci
Hi Stefan, Try this: - load dataset - apply probe location - create spreadsheet - go to settings and turn on 'Auto Apply' - change the probe location using 'p' Does that work? What is the performance like? -berk On Fri, Mar 20, 2009 at 2:00 AM, Stefan Melber stefan.mel...@dlr.de wrote: Hi

Re: [Paraview] Multiple views with different timesteps

2009-03-26 Thread Utkarsh Ayachit
Renato, Currently there's no way to plot different timesteps in different views directly. An round-about way is to use the Temporal Shift Scale filter to shift the time for showing data in the second view such that the same global time maps to different timesteps in different views. Utkarsh

[Paraview] How to add scalar data in a custom reader?

2009-03-26 Thread shenyanwen
Hi, everyone! I am writing a custom reader to read my own file which VTK does not support! The output type of my file is vtkImageData, and each point has 3~5 type of scalar. Now I have written the reader like below, I just do not know how to add the scalar value to the output object! Please check

Re: [Paraview] using netcdf in paraview

2009-03-26 Thread John Biddiscombe
Martha Build paraview as usual, ignore all the guff about PARAVIEW_EXTRA_EXTERNAL_MODULES, remove this from your paraview build, remove any CSCS addons you might have specified from paraview 'core' build. Then build a new new project which will be plugins, using the cmakelists from the root

Re: [Paraview] using netcdf in paraview

2009-03-26 Thread Burlen Loring
I will commit the work next week, along with a Wiki describing how to build/configure the dependencies. For planning purposes plan on late next week. John Biddiscombe wrote: Martha Build paraview as usual, ignore all the guff about PARAVIEW_EXTRA_EXTERNAL_MODULES, remove this from your

Re: [Paraview] Question about writing custom reader for paraview

2009-03-26 Thread Moreland, Kenneth
You can add more fields by simply adding them to the point data of the output data object. output-GetPointData()-AddArray(pressure); Make sure that you set a name for the arrays (using the SetName method of vtkDataArray). That is how ParaView/VTK differentiates the fields. -Ken On 3/23/09

Re: [Paraview] material properities

2009-03-26 Thread Moreland, Kenneth
I think this is one of the features that never got re-implemented after the major overhaul for the 3.0 release. There is not a lot of call for this feature, so it has been a low priority. http://www.paraview.org/Bug/view.php?id=4885 -Ken On 3/23/09 9:21 AM, N O twentypoundtr...@yahoo.com

Re: [Paraview] Weird cellNormals

2009-03-26 Thread Eric E. Monson
Hey David, You can do it if you apply the Generate Surface Normals filter. That gives you point data Normals that can be glyphed. Maybe someone else that is more well versed in VTK data structures can chime in on why cellNormals shows up in the color combo-box but is not really

[Paraview] Thresholding a RectilinearGrid

2009-03-26 Thread Stephens, Michael M ERDC-ITL-MS
folks, hopefully i missed something that's already out there; but this has me scraatching my head. what i'm doing is simple enough. took a Rectilinear Grid (aaa.vtr) and did a Threshold using one of the cell arrays. then since i'm gonna use this later i save it out as a vtu. when i try to

Re: [Paraview] The errer about building plugin

2009-03-26 Thread David E DeMarle
Canot open file: D:/MyReaderPlugin/MyReaderPlugin/XMLFiles/MyReaderPlugin_pvsm.xml;GUI_RESOURCE_FILES;D:/MyReaderPlugin/MyReaderPlugin/XMLFiles/MyReaderPlugin_gui.xml This looks like the CMakeLists.txt is wrong such that the ADD_PARAVIEW_PLUGIN Macro thinks that this is all one long filename:

Re: [Paraview] Weird cellNormals

2009-03-26 Thread Moreland, Kenneth
I believe the issue is that the glyph by cell data because the glyphs are placed on the points rather than the cells. Thus, all cell data is removed from the vectors list. Try running the cell centers filter and then apply the glyphs to that. Alternatively you can run the point to cell data

[Paraview] vtkXMLPRectilinearGridWriter

2009-03-26 Thread Rakesh Hammond
Hi I have a vtkRectilinearGrid - I would like to use the vtkXMLPRectilinearGridWriter to write the output of data into several pieces. In order to do this, I do the following writer-SetInput(grid); writer-SetNumberOfPieces(5); writer-Write(); What this seems to be doing is writing a

Re: [Paraview] Thresholding a RectilinearGrid

2009-03-26 Thread Berk Geveci
I have not. Sounds like a bug. Can you provide a dataset to reproduce it? On Thu, Mar 26, 2009 at 3:09 PM, Stephens, Michael M ERDC-ITL-MS michael.m.steph...@usace.army.mil wrote: folks, hopefully i missed something that's already out there; but this has me scraatching my head. what i'm

[Paraview] paraview as a mesh editor?

2009-03-26 Thread Richard Beare
Hi, I was wondering whether there are any options that allow some interactive editing of mesh objects in paraview? Is this a capability that can be included in the existing pipeline structure or is it completely outside the design. My reason for thinking about paraview for this application is

[Paraview] Mapper Plugin?

2009-03-26 Thread Biao She
Hi everyone. I want to use a new mapper which isn't exist in Paraview. I saw the wiki page at http://www.paraview.org/Wiki/Plugin_HowTo;. It seems to me that adding a new mapper requires to add a new representation. Considering that adding a new representation to paraview is complex and still in