[Paraview] compiling ParaView on Windows

2008-09-24 Thread Randall Hand
I'm on a project to add a new Reader to ParaView, and have successfully gotten it working as a Plugin on linux. Now I need to do this for Windows. A few questions: 1) Can I compile my plugin as a DLL, that can be loaded with the downloaded windows binary? 2) Is that version compiled with MinGW

Re: [Paraview] compiling ParaView on Windows

2008-09-24 Thread Mike Jackson
Actually, the latest Qt 4.4.x supports the free versions of Visual Studio so you can compile the OpenSource version of Qt with Visual Studio Express. The ParaView devs can answer the rest of the questions with more authority but if you were to try to compile against the downloaded version of

Re: [Paraview] compiling ParaView on Windows

2008-09-24 Thread Randall Hand
Last I heard, ParaView was very specific about requiring QT 4.3.5 .. Is this no longer the case? fyi, I need to compile PV3.2.3, not the latest CVS. Randall Hand Visualization Scientist ERDC MSRC-ITL On Wed, Sep 24, 2008 at 10:07 AM, Mike Jackson [EMAIL

Re: [Paraview] compiling ParaView on Windows

2008-09-24 Thread Mike Jackson
I think it complains with a warning. Qt 4.3.5 can be compiled with VS2005 express and probably VS2008 Express although 2008 is not officially supported. So basically pull the sources for Qt 4.3.5 and compile with VS Express, then pull the PV sources and compile that. Should work. I think I had

Re: [Paraview] Unstructured Grids

2008-09-24 Thread Moreland, Kenneth
That is a pretty open ended question. Unstructured grids are defined by an array of point coordinates and a separate array of cell topologies. In your case, the list of points will simply correspond to each particle, and each cell will be a 0D cell (a vertex) that points to a single point.

Re: [Paraview] python scripts

2008-09-24 Thread Utkarsh Ayachit
That's weird. from paraview import servermanager should work from all the 3 locations client, pvbatch or pvpython. Can you try the following script and print your path in all the three applications? import sys print sys.path Utkarsh Patrick Shinpaugh wrote: Hi, I've been writing some

Re: [Paraview] python scripts

2008-09-24 Thread Patrick Shinpaugh
I created the script you posted. The results of each are displayed below: pvpython ~/paraview-test-path.py ['/home/project', '/usr/local/ParaView-3.2.2/lib/paraview-3.2', '/usr/lib/python25.zip', '/usr/lib/python2.5', '/usr/lib/python2.5/plat-linux2', '/usr/lib/python2.5/lib-tk',

[Paraview] How to write out data

2008-09-24 Thread Vadivelan C
Hi I am trying to plot 2d graph on gunplot. But i am facing problem while writing out the data from paraview. Can you please help me how to write data from paraview and if you know please tell me in which format i need to write it for gunplot. - Velan