[Paraview] TecPlot problem or question for alternative format

2010-03-26 Thread Fabian Wein
Hi, I got a code which exports data (LBM) in a very simple format: --- TITLE= LBM data VARIABLES = X, Y, RHO, U, V, VOR ZONE T = Z I= 351, J= 122, K=1, ZONETYPE=ORDERED DATAPACKING=POINT DT=(SINGLE SINGLE SINGLE SINGLE SINGLE SINGLE) 11 0.000D+00

[Paraview] Dashboard Failures from *.hooperlab

2010-03-26 Thread Kevin H. Hobbs
What can I do to help with the 5 tests that have been failing on all of my dashboard submissions? These account for 20 / 35 of the test failures in Nightly expected and 25 / 217 in Nightly. signature.asc Description: OpenPGP digital signature ___

Re: [Paraview] Dashboard Failures from *.hooperlab

2010-03-26 Thread Dave Partyka
Hey Kevin, For those 5 can you run them by hand and see if you notice why they are hanging/failing? On some of them it looks like pvserver might be crashing? Can you attach a debugger and see if you can get a stack trace? Thank you very much for offering to help. On Fri, Mar 26, 2010 at 9:49 AM,

Re: [Paraview] Problem compiling plugin for using with ParaView 64

2010-03-26 Thread Sven Buijssen
Hi Rafael, Did you set VTK_USE_64BIT_IDS to OFF? If not that might very well explain your problem on 64 bit. See also http://markmail.org/message/xgjbz5rlwsedkpgo Sven Rafael Castaneda wrote, On 26.03.2010 14:40: Hey all, I have programmed a plugin, and I want to get it to work with

[Paraview] svn-buildpackage

2010-03-26 Thread Cecile Forella
Hello, I'm trying to do a svn-buildpackage on paraview's sources and I've got the following error: cd . QUILT_PATCHES=/home/forella/Debian/paraview/debian/patches quilt --quiltrc /dev/null push -a || test $? = 2 Application de use-ffmpeg-swscaler.patch patching file

Re: [Paraview] Problem compiling plugin for using with ParaView 64

2010-03-26 Thread Rafael Castaneda
No, I actually didn't do anything different when compiling the 32 and 64 versions of ParaView. Just checked BUILD SHARED LIBS, that's all. There are some flags in CMAKE which I'm not certain what value should I set. For instance there is a flag CMAKE_CXX_FLAGS which is set to /DWIN32. Shouldn't

Re: [Paraview] TecPlot problem or question for alternative format

2010-03-26 Thread Zhanping Liu
Farian: It seems the Tecplot file does not provide the section of x and y corrdinates (before the solution) at all, or you just skipped it at your e-mail for simplification purposes? -Zhanping On Fri, Mar 26, 2010 at 4:53 AM, Fabian Wein fabian.w...@am.uni-erlangen.de wrote: Hi, I

[Paraview] Algorithm causing reader RequestData when running

2010-03-26 Thread Paul Edwards
Hi, I am writing an algorithm to operate on a vtkMultiBlockDataSet where I would like to extract blocks depending on field data that is set. Internally in my algorithm I am using the vtkExtractBlock filter and when this is updated it causes the RequestData for my reader to be executed again.

Re: [Paraview] Problem compiling plugin for using with ParaView 64

2010-03-26 Thread Michael Jackson
YES. You need to use the proper command prompt from the start menu when compiling Qt to make sure you get the correct type of build (32 vs 64 bit). AFTER you have then built Qt correctly, then launch CMake-GUI and configure ParaView to build using a clean build directory. MAKE SURE YOU

Re: [Paraview] Dashboard Failures from *.hooperlab

2010-03-26 Thread Kevin H. Hobbs
On 03/26/2010 09:55 AM, Dave Partyka wrote: Hey Kevin, For those 5 can you run them by hand and see if you notice why they are hanging/failing? On some of them it looks like pvserver might be crashing? Can you attach a debugger and see if you can get a stack trace? Thank you very much for

Re: [Paraview] TecPlot problem or question for alternative format

2010-03-26 Thread Fabian Wein
It seems the Tecplot file does not provide the section of x and y corrdinates (before the solution) at all, or you just skipped it at your e-mail for simplification purposes? No, I did not skip anything, this is the data I have. The X and Y coordinates are just data values as the following

Re: [Paraview] Algorithm causing reader RequestData when running

2010-03-26 Thread Burlen Loring
If I'm not mistaken, when creating a VTK pipeline inside of a PV filter, you need to make a shallow copy of the input dataset in order to keep the PV pipeline isolated as your VTK pipeline executes. Try making a shallow copy of input and passing that into extractBlockFilter, and see if it

Re: [Paraview] Dashboard Failures from *.hooperlab

2010-03-26 Thread Kevin H. Hobbs
On 03/26/2010 09:55 AM, Dave Partyka wrote: Hey Kevin, For those 5 can you run them by hand and see if you notice why they are hanging/failing? On some of them it looks like pvserver might be crashing? Can you attach a debugger and see if you can get a stack trace? Thank you very much for

Re: [Paraview] vtu: how to represent variation in cell end values?

2010-03-26 Thread Berk Geveci
Emily, It sounds like you need point data not cell data. Point data arrays contain a value per point (those values are interpolated to obtain values that are in the interior of the cell), cell data array contain a value per cell (which is assumed to be constant across the cell). VTK will

Re: [Paraview] TecPlot problem or question for alternative format

2010-03-26 Thread Berk Geveci
I suggest legacy VTK (http://www.vtk.org/VTK/img/file-formats.pdf). It sounds like this is a structured grid. One thing: VTK formats (and VTK itself) does not directly support 2D so you will have to add a Z value. Setting all Zs to 0 should work fine. On Fri, Mar 26, 2010 at 4:53 AM, Fabian Wein

Re: [Paraview] Algorithm causing reader RequestData when running

2010-03-26 Thread Berk Geveci
Burlen is correct. On Fri, Mar 26, 2010 at 11:30 AM, Burlen Loring burlen.lor...@gmail.com wrote: If I'm not mistaken, when creating a VTK pipeline inside of a PV filter, you need to make a shallow copy of the input dataset in order to keep the PV pipeline isolated as your VTK pipeline

Re: [Paraview] TecPlot problem or question for alternative format

2010-03-26 Thread Zhanping Liu
Try removing 'K = 1' from the zone header to see it the Tecplot reader works. As Berk suggested, you may converted the data to legacy VTK. -Zhanping On Fri, Mar 26, 2010 at 11:19 AM, Fabian Wein fabian.w...@am.uni-erlangen.de wrote: It seems the Tecplot file does not provide the section

Re: [Paraview] Python scripting: Updating PVDReader source when pvd file has changed and rendering latest time step

2010-03-26 Thread Florian Rathgeber
Translating that to Python as I understand it would correspond to: reader.FileName = reader.FileName = original That does the trick, thank you! I had tried that before and had hoped there is a nicer way, since I get VTK errors about not being able to open the file and read the file information

Re: [Paraview] vtu: how to represent variation in cell end values?

2010-03-26 Thread Berk Geveci
The only way to define discontinuities like that is to split cells. So you would have: Cell1: point1 - point2 Cell2: point3 - point4 where point2 == point3. I know it is a waste of memory but it is the only way. -berk On Fri, Mar 26, 2010 at 12:56 PM, Emily Leigh ec...@hotmail.com wrote:

Re: [Paraview] Paraview: python script from the command line

2010-03-26 Thread Rick Angelini
Utkarsh - this also works well under some circumstances, but leave it to the customers to figure out how to break it. If we startup paraview: paraview --server=Host --script=myscript.py And Host is a reverse-connection, the python script executes locally without waiting for the remote

Re: [Paraview] TecPlot problem or question for alternative format

2010-03-26 Thread Fabian Wein
Zhanping, Try removing 'K = 1' from the zone header to see it the Tecplot reader works. As Berk suggested, you may converted the data to legacy VTK. Thanks for your reply, it did not work. I'll create a VTK file by myself, it's not that much. Fabian

Re: [Paraview] Dashboard Failures from *.hooperlab

2010-03-26 Thread Kevin H. Hobbs
On 03/26/2010 10:52 AM, Kevin H. Hobbs wrote: On 03/26/2010 09:55 AM, Dave Partyka wrote: Hey Kevin, For those 5 can you run them by hand and see if you notice why they are hanging/failing? pv.XdmfReadStructuredGrid.XdmfReadStructuredGridCollection.XdmfGridAttributes I tried to narrow the

[Paraview] How to pass array from Server to Client with as 'Information Helper

2010-03-26 Thread Michael Jackson
I have a custom reader. Part of the reader is getting a NeighborList which is an vtkIntArray object although I have declared the following methods in my reader class: int* GetNeighborList(); void GetNeighborList(int* list); vtkIdType GetNumberOfNeighbors(); And in my ServerManagerXML

Re: [Paraview] How to pass array from Server to Client with as 'Information Helper

2010-03-26 Thread Michael Jackson
The problem is down in a generated file on the server side. if (!strcmp(GetNeighborList,method) msg.GetNumberOfArguments(0) == 3) { vtkClientServerStreamDataArgint temp0(msg, 0, 2); if(temp0) { op-GetNeighborList(temp0); return 1; } } The

Re: [Paraview] How to pass array from Server to Client with as 'Information Helper

2010-03-26 Thread Utkarsh Ayachit
Try returning a vtkIntArray from your reader instead and use IntArrayInformationHelper / as the information helper. (Look at it's use in readers.xml). Utkarsh On Fri, Mar 26, 2010 at 4:36 PM, Michael Jackson mike.jack...@bluequartz.net wrote: The problem is down in a generated file on the

Re: [Paraview] How to pass array from Server to Client with as 'Information Helper

2010-03-26 Thread Michael Jackson
THANKS! that worked great. One last item - where would I look for an example of have a custom widget (QListWidget) that is NOT getting registered with the proxy mananger, so that when something changes, like the selection, the Accept button gets lighted up. I am trying to work through the