[Paraview] Tecplot 10 ASCII reading

2011-09-07 Thread Ingvar Tunell
Hello everyone.

There have been some discussions in various threads about both ASCII
and binary reading of Tecplot files.

There are several ways that paraview tries to read them depending on
the chosen extension.
For example .tec asks for "Visit's reader, or only Tecplot reader" and
when .dat is chosen it tries to use the Paradis reader

I'm not familiar with those readers, however from the discussion it
seems that the Visit reader is most up to date.

Unfortunately I never succeed in reading the ASCII files in Tecplot 10
format (the only tecplot version I have) with the Visit reader
(nor any other). I get the "vtkVisItTecplotReader ... Unable to find
any meshes" etc.

I've tried reading the new dataformat file for the 360-version that
supposedly work with paraview, however I can't see any noticable
differences between the Tecplot 10 and 360 versions.
In short what is the status of the Visit reader and how, if possible,
can I read Tecplot 10 ASCII data into ParaView (3.10.1 linux).
Binary is not an option I'm afraid (although that doesn't work
neither), as I also want to use other software that only writes
Tecplot 10 ASCII.


Cheers,
Ingvar
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Cell and Point Labels for visible cells only

2011-09-07 Thread Utkarsh Ayachit
Duncan,

Like Alan said, there's no easy way of doing this. The main inhibitor
for such a thing is the fact that it gets a bit tricky in parallel.
I've been mulling over this since your email and maybe we can try to
provide an improved labelling support for 4.0. Feel free to add this
to the bug tracker and I'll get a discussion started among the
developer team on how can this or something similar  be supported.

Utkarsh

On Tue, Sep 6, 2011 at 3:14 PM, Scott, W Alan  wrote:
> Duncan,
>
> No – I believe that what you ask for is not possible – but it sounds like a
> great idea.  Mind writing up a feature request on the Kitware site?
>
>
>
> Alan
>
>
>
> From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org]
> On Behalf Of Johnson, Duncan (UK)
> Sent: Monday, September 05, 2011 2:28 AM
> To: paraview@paraview.org
>
> Subject: [Paraview] Cell and Point Labels for visible cells only
>
>
>
> Hello all,
>
>
>
> Is it possible to label points in some way such that when the model is
> rotated, only visible points have their labels shown?  Currently, point and
> cell labels are seen through the model which can confuse the display.  I
> know it is possible to use the select visible points tool after each
> rotation but it would be nice not to have to.
>
>
>
> Many thanks,
>
>
>
> Duncan
>
> 
> This email and any attachments are confidential to the intended
> recipient and may also be privileged. If you are not the intended
> recipient please delete it from your system and notify the sender.
> You should not copy it or use it for any purpose nor disclose or
> distribute its contents to any other person.
> 
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Fail to get the input of a mapper

2011-09-07 Thread Utkarsh Ayachit
Please keep the discussion to the mailing list so others can
benefit-from/contribute-to the conversion.

There isn't any easy way, that I can think of, of getting the whole
data in an interactor style. If you can elaborate what you're trying
to do, maybe there's another way that using an interactor style of
doing what you're trying to do.

Utkarsh



On Tue, Sep 6, 2011 at 12:04 PM, 沈恩亚  wrote:
> I added this code in an interactor style class (such as
> vtkInteractorStyleUser).
> I try to get the "whole" data of the renderer by its actors.
> Is this possible? or any other way to get the "whole" data?
>
> Thank You!
>
> Best wishes!
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


[Paraview] add_executable cannot create imported target "vtkWrapPython"

2011-09-07 Thread Mathieu Malaterre
Hi all,

  I am trying to build a paraview module. I have VTK 5.8.0 and
ParaView 3.10.1 installed on a linux/debian machine. When importing
both VTK & ParaView cmake module, I am getting the following errors
(truncated):

...
CMake Error at /tmp/pv/usr/lib/paraview/CMake/ParaViewTargets.cmake:16
(ADD_EXECUTABLE):
  add_executable cannot create imported target "vtkWrapPython" because
  another target with the same name already exists.
Call Stack (most recent call first):
  /tmp/pv/usr/lib/paraview/ParaViewConfig.cmake:58 (INCLUDE)
  CMakeLists.txt:3 (find_package)


CMake Error at /tmp/pv/usr/lib/paraview/CMake/ParaViewTargets.cmake:19
(ADD_EXECUTABLE):
  add_executable cannot create imported target "vtkWrapPythonInit" because
  another target with the same name already exists.
Call Stack (most recent call first):
  /tmp/pv/usr/lib/paraview/ParaViewConfig.cmake:58 (INCLUDE)
  CMakeLists.txt:3 (find_package)
...


It can easily be reproduced with:

$ cat /tmp/bla/CMakeLists.txt
project(bla)
find_package(VTK REQUIRED)
find_package(ParaView REQUIRED)

Could someone please confirm this is an actual issue ? If so I'll
report that to paraview bug tracker. Meanwhile could someone please
suggest a fix, other than -tediously- adding blockers for each
imported target, eg:

$ cat /usr/lib/paraview/CMake/ParaViewTargets.cmake
...
# Create imported target vtkWrapPython
IF(NOT TARGET vtkWrapPython)
ADD_EXECUTABLE(vtkWrapPython IMPORTED)
ENDIF(NOT TARGET vtkWrapPython)
...

This issue can also be seen when building VTKEdge (svn checkout from 20110819).

Thanks much !
-- 
Mathieu
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] add_executable cannot create imported target "vtkWrapPython"

2011-09-07 Thread Utkarsh Ayachit
Mathieu,

I'm not surprised that it doesnt' work. You cannot bring in VTK and
ParaView in the same project. If you project depends on both, you
should just include ParaView and you'll get access to most of VTK as
well (I can't think of anything we disable explicitly when importing
VTK, but I may be wrong).

Utkarsh

On Wed, Sep 7, 2011 at 9:29 AM, Mathieu Malaterre
 wrote:
> Hi all,
>
>  I am trying to build a paraview module. I have VTK 5.8.0 and
> ParaView 3.10.1 installed on a linux/debian machine. When importing
> both VTK & ParaView cmake module, I am getting the following errors
> (truncated):
>
> ...
> CMake Error at /tmp/pv/usr/lib/paraview/CMake/ParaViewTargets.cmake:16
> (ADD_EXECUTABLE):
>  add_executable cannot create imported target "vtkWrapPython" because
>  another target with the same name already exists.
> Call Stack (most recent call first):
>  /tmp/pv/usr/lib/paraview/ParaViewConfig.cmake:58 (INCLUDE)
>  CMakeLists.txt:3 (find_package)
>
>
> CMake Error at /tmp/pv/usr/lib/paraview/CMake/ParaViewTargets.cmake:19
> (ADD_EXECUTABLE):
>  add_executable cannot create imported target "vtkWrapPythonInit" because
>  another target with the same name already exists.
> Call Stack (most recent call first):
>  /tmp/pv/usr/lib/paraview/ParaViewConfig.cmake:58 (INCLUDE)
>  CMakeLists.txt:3 (find_package)
> ...
>
>
> It can easily be reproduced with:
>
> $ cat /tmp/bla/CMakeLists.txt
> project(bla)
> find_package(VTK REQUIRED)
> find_package(ParaView REQUIRED)
>
> Could someone please confirm this is an actual issue ? If so I'll
> report that to paraview bug tracker. Meanwhile could someone please
> suggest a fix, other than -tediously- adding blockers for each
> imported target, eg:
>
> $ cat /usr/lib/paraview/CMake/ParaViewTargets.cmake
> ...
> # Create imported target vtkWrapPython
> IF(NOT TARGET vtkWrapPython)
> ADD_EXECUTABLE(vtkWrapPython IMPORTED)
> ENDIF(NOT TARGET vtkWrapPython)
> ...
>
> This issue can also be seen when building VTKEdge (svn checkout from 
> 20110819).
>
> Thanks much !
> --
> Mathieu
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at 
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at: 
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] add_executable cannot create imported target "vtkWrapPython"

2011-09-07 Thread David Partyka
Right, ParaView's Use file (ParaViewUse.cmake) already calls find VTK
seeding it with PARAVIEW_VTK_DIR. Hence the duplicate targets.


On Wed, Sep 7, 2011 at 9:36 AM, Utkarsh Ayachit  wrote:

> Mathieu,
>
> I'm not surprised that it doesnt' work. You cannot bring in VTK and
> ParaView in the same project. If you project depends on both, you
> should just include ParaView and you'll get access to most of VTK as
> well (I can't think of anything we disable explicitly when importing
> VTK, but I may be wrong).
>
> Utkarsh
>
> On Wed, Sep 7, 2011 at 9:29 AM, Mathieu Malaterre
>  wrote:
> > Hi all,
> >
> >  I am trying to build a paraview module. I have VTK 5.8.0 and
> > ParaView 3.10.1 installed on a linux/debian machine. When importing
> > both VTK & ParaView cmake module, I am getting the following errors
> > (truncated):
> >
> > ...
> > CMake Error at /tmp/pv/usr/lib/paraview/CMake/ParaViewTargets.cmake:16
> > (ADD_EXECUTABLE):
> >  add_executable cannot create imported target "vtkWrapPython" because
> >  another target with the same name already exists.
> > Call Stack (most recent call first):
> >  /tmp/pv/usr/lib/paraview/ParaViewConfig.cmake:58 (INCLUDE)
> >  CMakeLists.txt:3 (find_package)
> >
> >
> > CMake Error at /tmp/pv/usr/lib/paraview/CMake/ParaViewTargets.cmake:19
> > (ADD_EXECUTABLE):
> >  add_executable cannot create imported target "vtkWrapPythonInit" because
> >  another target with the same name already exists.
> > Call Stack (most recent call first):
> >  /tmp/pv/usr/lib/paraview/ParaViewConfig.cmake:58 (INCLUDE)
> >  CMakeLists.txt:3 (find_package)
> > ...
> >
> >
> > It can easily be reproduced with:
> >
> > $ cat /tmp/bla/CMakeLists.txt
> > project(bla)
> > find_package(VTK REQUIRED)
> > find_package(ParaView REQUIRED)
> >
> > Could someone please confirm this is an actual issue ? If so I'll
> > report that to paraview bug tracker. Meanwhile could someone please
> > suggest a fix, other than -tediously- adding blockers for each
> > imported target, eg:
> >
> > $ cat /usr/lib/paraview/CMake/ParaViewTargets.cmake
> > ...
> > # Create imported target vtkWrapPython
> > IF(NOT TARGET vtkWrapPython)
> > ADD_EXECUTABLE(vtkWrapPython IMPORTED)
> > ENDIF(NOT TARGET vtkWrapPython)
> > ...
> >
> > This issue can also be seen when building VTKEdge (svn checkout from
> 20110819).
> >
> > Thanks much !
> > --
> > Mathieu
> > ___
> > Powered by www.kitware.com
> >
> > Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
> >
> > Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
> >
> > Follow this link to subscribe/unsubscribe:
> > http://www.paraview.org/mailman/listinfo/paraview
> >
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] add_executable cannot create imported target "vtkWrapPython"

2011-09-07 Thread Mathieu Malaterre
Hi Dave,

  You can reproduce the issue with find_package() calls only, without
calling include().

  After talking with Utkarsh, it seems the trick is to use the
VTKConfig.cmake from the paraview install tree.

2cts

On Wed, Sep 7, 2011 at 3:49 PM, David Partyka  wrote:
> Right, ParaView's Use file (ParaViewUse.cmake) already calls find VTK
> seeding it with PARAVIEW_VTK_DIR. Hence the duplicate targets.
>
> On Wed, Sep 7, 2011 at 9:36 AM, Utkarsh Ayachit
>  wrote:
>>
>> Mathieu,
>>
>> I'm not surprised that it doesnt' work. You cannot bring in VTK and
>> ParaView in the same project. If you project depends on both, you
>> should just include ParaView and you'll get access to most of VTK as
>> well (I can't think of anything we disable explicitly when importing
>> VTK, but I may be wrong).
>>
>> Utkarsh
>>
>> On Wed, Sep 7, 2011 at 9:29 AM, Mathieu Malaterre
>>  wrote:
>> > Hi all,
>> >
>> >  I am trying to build a paraview module. I have VTK 5.8.0 and
>> > ParaView 3.10.1 installed on a linux/debian machine. When importing
>> > both VTK & ParaView cmake module, I am getting the following errors
>> > (truncated):
>> >
>> > ...
>> > CMake Error at /tmp/pv/usr/lib/paraview/CMake/ParaViewTargets.cmake:16
>> > (ADD_EXECUTABLE):
>> >  add_executable cannot create imported target "vtkWrapPython" because
>> >  another target with the same name already exists.
>> > Call Stack (most recent call first):
>> >  /tmp/pv/usr/lib/paraview/ParaViewConfig.cmake:58 (INCLUDE)
>> >  CMakeLists.txt:3 (find_package)
>> >
>> >
>> > CMake Error at /tmp/pv/usr/lib/paraview/CMake/ParaViewTargets.cmake:19
>> > (ADD_EXECUTABLE):
>> >  add_executable cannot create imported target "vtkWrapPythonInit"
>> > because
>> >  another target with the same name already exists.
>> > Call Stack (most recent call first):
>> >  /tmp/pv/usr/lib/paraview/ParaViewConfig.cmake:58 (INCLUDE)
>> >  CMakeLists.txt:3 (find_package)
>> > ...
>> >
>> >
>> > It can easily be reproduced with:
>> >
>> > $ cat /tmp/bla/CMakeLists.txt
>> > project(bla)
>> > find_package(VTK REQUIRED)
>> > find_package(ParaView REQUIRED)
>> >
>> > Could someone please confirm this is an actual issue ? If so I'll
>> > report that to paraview bug tracker. Meanwhile could someone please
>> > suggest a fix, other than -tediously- adding blockers for each
>> > imported target, eg:
>> >
>> > $ cat /usr/lib/paraview/CMake/ParaViewTargets.cmake
>> > ...
>> > # Create imported target vtkWrapPython
>> > IF(NOT TARGET vtkWrapPython)
>> > ADD_EXECUTABLE(vtkWrapPython IMPORTED)
>> > ENDIF(NOT TARGET vtkWrapPython)
>> > ...
>> >
>> > This issue can also be seen when building VTKEdge (svn checkout from
>> > 20110819).
>> >
>> > Thanks much !
>> > --
>> > Mathieu
>> > ___
>> > Powered by www.kitware.com
>> >
>> > Visit other Kitware open-source projects at
>> > http://www.kitware.com/opensource/opensource.html
>> >
>> > Please keep messages on-topic and check the ParaView Wiki at:
>> > http://paraview.org/Wiki/ParaView
>> >
>> > Follow this link to subscribe/unsubscribe:
>> > http://www.paraview.org/mailman/listinfo/paraview
>> >
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.paraview.org/mailman/listinfo/paraview
>
>



-- 
Mathieu
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


[Paraview] Getting the coordinates of the point with max temperature

2011-09-07 Thread Tibi Chelcea
Hi,

 

I'm extremely new to Paraview scripting and Python programming, so the
question that I'm asking might have a totally obvious answer, but I can't
figure it out. I need to write a script to analyze the results of a
transient analysis simulation. For that, the script needs to read the last
.vtu file, figure out the coordinates (or index) of the point with the
largest temperature, and then pick the temperatures at that point from all
the other simulation steps and then do some computations based on those
values.

 

I got stuck at figuring out the coordinates of the point with the max
temperature. This is what I got so far:

 

reader = sources.XMLUnstructuredGridReader(FileName =
'C:\\mypath\\output0020.vtu')

reader.UpdatePipeline()

info_base = reader.GetDataInformation().DataInformation

pointArray = info_base.GetPointArrayInformation()

 

I don't know how to get from pointArray to a list of points (I assume that
the info in pointArray is the list of coordinates). Then, I can go through
the temperature array obtained with
info_base.GetPointDataInformation().GetArrayInformation(..) and get the max
temperature and match it with the coordinates.  But, I'm lost at this step
on how to get from the reader to the actual array of coordinates and
temperature values.

 

I've seen posts with some calls to GetPoints, but GetPoints is not a member
of pointArray (or any other of the classes used above, for that matter).

 

Thanks,

Tibi

 

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Getting the coordinates of the point with max temperature

2011-09-07 Thread David E DeMarle
The arrays themselves may be extremely large, thus they live on the
server, not the client and you can't get them directly as you are
trying to do.
You can however use servermanager.Fetch to bring them over, but you
should only do so once you have filtered them down in size a bit.
Try using the threshold filter, picking out only those cells/points
near the maximum, then fetching that.

David E DeMarle
Kitware, Inc.
R&D Engineer
21 Corporate Drive
Clifton Park, NY 12065-8662
Phone: 518-881-4909



On Wed, Sep 7, 2011 at 9:57 AM, Tibi Chelcea  wrote:
> Hi,
>
>
>
> I’m extremely new to Paraview scripting and Python programming, so the
> question that I’m asking might have a totally obvious answer, but I can’t
> figure it out. I need to write a script to analyze the results of a
> transient analysis simulation. For that, the script needs to read the last
> .vtu file, figure out the coordinates (or index) of the point with the
> largest temperature, and then pick the temperatures at that point from all
> the other simulation steps and then do some computations based on those
> values.
>
>
>
> I got stuck at figuring out the coordinates of the point with the max
> temperature. This is what I got so far:
>
>
>
> reader = sources.XMLUnstructuredGridReader(FileName =
> 'C:\\mypath\\output0020.vtu')
>
> reader.UpdatePipeline()
>
> info_base = reader.GetDataInformation().DataInformation
>
> pointArray = info_base.GetPointArrayInformation()
>
>
>
> I don’t know how to get from pointArray to a list of points (I assume that
> the info in pointArray is the list of coordinates). Then, I can go through
> the temperature array obtained with
> info_base.GetPointDataInformation().GetArrayInformation(..) and get the max
> temperature and match it with the coordinates.  But, I’m lost at this step
> on how to get from the reader to the actual array of coordinates and
> temperature values.
>
>
>
> I’ve seen posts with some calls to GetPoints, but GetPoints is not a member
> of pointArray (or any other of the classes used above, for that matter).
>
>
>
> Thanks,
>
> Tibi
>
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Quadroon vs FTC 460 vs hd 6870

2011-09-07 Thread Robert Maynard
Hi,

If you do volume rendering I would avoid the AMD card. The gtx460 is a
slightly better card but not leaps and bounds better than the quadro. I
would think you would need to look at the newer GTX 560Ti and up for a
sizeable increase in performance.

On Tue, Sep 6, 2011 at 7:59 PM, Phsieh2005  wrote:

> Dear paraviewers,
>
> I am building a new computer for CFD analysis.  I have an old Quadro
> FX4600.  In terms of paraview performance, will it be better to choose an
> AMD HD6870 or nVidia GTX 460 over my old Qudrao FX 4600?
>
> Thanks
>
> Pei
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>



-- 
Robert Maynard
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Fail to get the input of a mapper

2011-09-07 Thread 沈恩亚
I am trying to get the values of variables at the position of mouse in real
time.
That is to say, when moving the mouse, we get the values in real time.
And I need to get there values automatically, not by using probe filters
manually.

I try to auto probe the data from a source or filter. As a result, I think
it is needed
to get the input of the vtkrenderer which is set as the input of one probe
filter. Here
I failed to get the whole input of the vtkrenderer.

Is there any other way to solve this problem?

Thanks for any advice!


2011/9/7 Utkarsh Ayachit 

> Please keep the discussion to the mailing list so others can
> benefit-from/contribute-to the conversion.
>
> There isn't any easy way, that I can think of, of getting the whole
> data in an interactor style. If you can elaborate what you're trying
> to do, maybe there's another way that using an interactor style of
> doing what you're trying to do.
>
> Utkarsh
>
>
>
> On Tue, Sep 6, 2011 at 12:04 PM, 沈恩亚  wrote:
> > I added this code in an interactor style class (such as
> > vtkInteractorStyleUser).
> > I try to get the "whole" data of the renderer by its actors.
> > Is this possible? or any other way to get the "whole" data?
> >
> > Thank You!
> >
> > Best wishes!
> >
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Tecplot 10 ASCII reading

2011-09-07 Thread 沈恩亚
Hi,

I am using ParaView to read Tecplot data too. And I found that the
VisIt reader cannot read there binary data fully. Such as it cannot read
poly data.

For Tecplot ASCII data, ParaView has its own reader to read. But it also has
some problems. Maybe you can get into the codes to find which part of your
data is not identified correctly.

Good Luck!

2011/9/7 Ingvar Tunell 

> Hello everyone.
>
> There have been some discussions in various threads about both ASCII
> and binary reading of Tecplot files.
>
> There are several ways that paraview tries to read them depending on
> the chosen extension.
> For example .tec asks for "Visit's reader, or only Tecplot reader" and
> when .dat is chosen it tries to use the Paradis reader
>
> I'm not familiar with those readers, however from the discussion it
> seems that the Visit reader is most up to date.
>
> Unfortunately I never succeed in reading the ASCII files in Tecplot 10
> format (the only tecplot version I have) with the Visit reader
> (nor any other). I get the "vtkVisItTecplotReader ... Unable to find
> any meshes" etc.
>
> I've tried reading the new dataformat file for the 360-version that
> supposedly work with paraview, however I can't see any noticable
> differences between the Tecplot 10 and 360 versions.
> In short what is the status of the Visit reader and how, if possible,
> can I read Tecplot 10 ASCII data into ParaView (3.10.1 linux).
> Binary is not an option I'm afraid (although that doesn't work
> neither), as I also want to use other software that only writes
> Tecplot 10 ASCII.
>
>
> Cheers,
> Ingvar
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] [newbie] show grid in paraview - wireframe shows triangles instead of quads...

2011-09-07 Thread newsboost

Hi Alan

Thanks a lot for your interest/suggestion. I'm using the newest version 
of paraview, version 3.10.1, 64-bit on Ubuntu / linux - local 
installation (not on any server). I'm looking on at dataset which I'm 
not sure whether or not I'm allowed to distribute, but I'll ask the guy 
I got the data-file from tomorrow - or else I'll try to provide a simple 
(and small) example... I thought this was a known issue, but let me get 
back to it tomorrow I hope and post an example vtk-file (I need to talk 
to my colleague)...


If anyone know why "wireframe mode" shows triangles instead of the true 
quad grid, please let me know... On friday I know I have a meeting whole 
day, so if I haven't posted anything before friday I'll have to wait 
until monday with posting a minimal quad-example unfortunately...


I'll be back!


On 2011-09-06 21:13, Scott, W Alan wrote:

Could you post an example dataset, or show us how to replicate this with a 
sources/... source?  Also, what version of ParaView?  Local server?

Thanks,

Alan

-Original Message-
From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On 
Behalf Of newsboost
Sent: Tuesday, September 06, 2011 5:19 AM
To: paraview@paraview.org
Subject: [Paraview] [newbie] show grid in paraview - wireframe shows triangles 
instead of quads...

Hi all,

[newbie question]: I want to show my mesh/grid in paraview and turn on
"wireframe" mode. But this shows triangles instead of quads... I
colleague of mine says that on his windows pc the correct quad mesh is
shown but on my linux pc, I only see triangles...

Please help me understand how to see the true grid instead of the
triangles...

Thanks.

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview



___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Getting the coordinates of the point with max temperature

2011-09-07 Thread Tibi Chelcea
Hi David,

Thank you very much for the hint. I'm still not entirely sure I'm getting it
right, though. Here's what I've done:

reader = sources.XMLUnstructuredGridReader(FileName =
'C:\\mypath\\output0020.vtu')
reader.UpdatePipeline()

info_base = reader.GetDataInformation().DataInformation
pointDataInfo = info_base.GetPointDataInformation()

temp_max = 0
# here I get the max temperature across all points
for i in range(pointDataInfo.GetNumberOfArrays()):
ai = pointDataInfo.GetArrayInformation(i)
if ai.GetName().lower() == 'temperature':
temp_max = ai.GetComponentRange(0)[1]

# temp_max is computed correctly at this point, declare the threshold to be
95% to 105% of the max temperature
th = filters.Threshold(Input = reader)
th.SelectInputScalars = ['0', '0', '0', '1', 'temperature']
th.ThresholdBetween = [temp_max*0.95,temp_max*1.05]
th.UpdatePipeline()
Fetch(th)

pdi = th.GetDataInformation().DataInformation
print pdi

At this point, 'print pdi' produces this:

vtkPVDataInformation (04089090)
  Debug: Off
  Modified Time: 116455
  Reference Count: 2
  Registered Events: (none)
  RootOnly: 0
  DataSetType: 4
  CompositeDataSetType: -1
  NumberOfPoints: 0
  NumberOfRows: 0
  NumberOfCells: 0
  NumberOfDataSets: 1
  MemorySize: 0
  PolygonCount: 0
  Bounds: 1e+299, -1e+299, 1e+299, -1e+299, 1e+299, -1e+299
  Extent: 2147483647, -2147483647, 2147483647, -2147483647, 2147483647,
-2147483647
...


It seems that there are no points selected. I'm wondering whether the
th.SelectInputScalars does what's it's supposed to do (I've copied that from
some examples in the mailing list). I'm using Paraview 3.4.0 (the latest
Paraview 3.10.1 works only in GUI, but fails to execute any script in
pvbatch).

Thanks,
Tibi


-Original Message-
From: David E DeMarle [mailto:dave.dema...@kitware.com] 
Sent: Wednesday, September 07, 2011 10:41 AM
To: Tibi Chelcea
Cc: paraview@paraview.org
Subject: Re: [Paraview] Getting the coordinates of the point with max
temperature

The arrays themselves may be extremely large, thus they live on the server,
not the client and you can't get them directly as you are trying to do.
You can however use servermanager.Fetch to bring them over, but you should
only do so once you have filtered them down in size a bit.
Try using the threshold filter, picking out only those cells/points near the
maximum, then fetching that.

David E DeMarle
Kitware, Inc.
R&D Engineer
21 Corporate Drive
Clifton Park, NY 12065-8662
Phone: 518-881-4909



On Wed, Sep 7, 2011 at 9:57 AM, Tibi Chelcea  wrote:
> Hi,
>
>
>
> I’m extremely new to Paraview scripting and Python programming, so the 
> question that I’m asking might have a totally obvious answer, but I 
> can’t figure it out. I need to write a script to analyze the results 
> of a transient analysis simulation. For that, the script needs to read 
> the last .vtu file, figure out the coordinates (or index) of the point 
> with the largest temperature, and then pick the temperatures at that 
> point from all the other simulation steps and then do some 
> computations based on those values.
>
>
>
> I got stuck at figuring out the coordinates of the point with the max 
> temperature. This is what I got so far:
>
>
>
> reader = sources.XMLUnstructuredGridReader(FileName =
> 'C:\\mypath\\output0020.vtu')
>
> reader.UpdatePipeline()
>
> info_base = reader.GetDataInformation().DataInformation
>
> pointArray = info_base.GetPointArrayInformation()
>
>
>
> I don’t know how to get from pointArray to a list of points (I assume 
> that the info in pointArray is the list of coordinates). Then, I can 
> go through the temperature array obtained with
> info_base.GetPointDataInformation().GetArrayInformation(..) and get 
> the max temperature and match it with the coordinates.  But, I’m lost 
> at this step on how to get from the reader to the actual array of 
> coordinates and temperature values.
>
>
>
> I’ve seen posts with some calls to GetPoints, but GetPoints is not a 
> member of pointArray (or any other of the classes used above, for that
matter).
>
>
>
> Thanks,
>
> Tibi
>
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at 
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
>

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


[Paraview] camera position changes although not supposed to

2011-09-07 Thread Leonie Callies
Hello all,

I am trying to save an animation that includes zooming in and out. I used the 
tool "interpolate camera locations" and chose a position for time 0 until time 
0.75. Between 0.75 and 1 the camera moves because I want to zoom in. So I chose 
different values for the position at time 1. 
But when I save the animation my object seems to move to the back between time 
steps 0 and 0.75. Does anyone have an explanation for that? I would appreciate 
any help!

My object is a simple plane and an outline.

Unfortunately the animation is too big to be attached to this mailing list.

Thanks!
Leonie



-- 
NEU: FreePhone - 0ct/min Handyspartarif mit Geld-zurück-Garantie!   
Jetzt informieren: http://www.gmx.net/de/go/freephone
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Getting the coordinates of the point with max temperature

2011-09-07 Thread David E DeMarle
vtkPVDataInformation is _only_ lightweight meta information. It
describes some dataset that lives on the server but doesn't give you
access to the actual data.

Fetch should return to you a vtkDataSet. You should be able to get the
points/cells and arrays directly out of that.

David E DeMarle
Kitware, Inc.
R&D Engineer
21 Corporate Drive
Clifton Park, NY 12065-8662
Phone: 518-881-4909



On Wed, Sep 7, 2011 at 1:45 PM, Tibi Chelcea  wrote:
> Hi David,
>
> Thank you very much for the hint. I'm still not entirely sure I'm getting it
> right, though. Here's what I've done:
>
> reader = sources.XMLUnstructuredGridReader(FileName =
> 'C:\\mypath\\output0020.vtu')
> reader.UpdatePipeline()
>
> info_base = reader.GetDataInformation().DataInformation
> pointDataInfo = info_base.GetPointDataInformation()
>
> temp_max = 0
> # here I get the max temperature across all points
> for i in range(pointDataInfo.GetNumberOfArrays()):
>        ai = pointDataInfo.GetArrayInformation(i)
>        if ai.GetName().lower() == 'temperature':
>                temp_max = ai.GetComponentRange(0)[1]
>
> # temp_max is computed correctly at this point, declare the threshold to be
> 95% to 105% of the max temperature
> th = filters.Threshold(Input = reader)
> th.SelectInputScalars = ['0', '0', '0', '1', 'temperature']
> th.ThresholdBetween = [temp_max*0.95,temp_max*1.05]
> th.UpdatePipeline()
> Fetch(th)
>
> pdi = th.GetDataInformation().DataInformation
> print pdi
>
> At this point, 'print pdi' produces this:
>
> vtkPVDataInformation (04089090)
>  Debug: Off
>  Modified Time: 116455
>  Reference Count: 2
>  Registered Events: (none)
>  RootOnly: 0
>  DataSetType: 4
>  CompositeDataSetType: -1
>  NumberOfPoints: 0
>  NumberOfRows: 0
>  NumberOfCells: 0
>  NumberOfDataSets: 1
>  MemorySize: 0
>  PolygonCount: 0
>  Bounds: 1e+299, -1e+299, 1e+299, -1e+299, 1e+299, -1e+299
>  Extent: 2147483647, -2147483647, 2147483647, -2147483647, 2147483647,
> -2147483647
> ...
>
>
> It seems that there are no points selected. I'm wondering whether the
> th.SelectInputScalars does what's it's supposed to do (I've copied that from
> some examples in the mailing list). I'm using Paraview 3.4.0 (the latest
> Paraview 3.10.1 works only in GUI, but fails to execute any script in
> pvbatch).
>
> Thanks,
> Tibi
>
>
> -Original Message-
> From: David E DeMarle [mailto:dave.dema...@kitware.com]
> Sent: Wednesday, September 07, 2011 10:41 AM
> To: Tibi Chelcea
> Cc: paraview@paraview.org
> Subject: Re: [Paraview] Getting the coordinates of the point with max
> temperature
>
> The arrays themselves may be extremely large, thus they live on the server,
> not the client and you can't get them directly as you are trying to do.
> You can however use servermanager.Fetch to bring them over, but you should
> only do so once you have filtered them down in size a bit.
> Try using the threshold filter, picking out only those cells/points near the
> maximum, then fetching that.
>
> David E DeMarle
> Kitware, Inc.
> R&D Engineer
> 21 Corporate Drive
> Clifton Park, NY 12065-8662
> Phone: 518-881-4909
>
>
>
> On Wed, Sep 7, 2011 at 9:57 AM, Tibi Chelcea  wrote:
>> Hi,
>>
>>
>>
>> I’m extremely new to Paraview scripting and Python programming, so the
>> question that I’m asking might have a totally obvious answer, but I
>> can’t figure it out. I need to write a script to analyze the results
>> of a transient analysis simulation. For that, the script needs to read
>> the last .vtu file, figure out the coordinates (or index) of the point
>> with the largest temperature, and then pick the temperatures at that
>> point from all the other simulation steps and then do some
>> computations based on those values.
>>
>>
>>
>> I got stuck at figuring out the coordinates of the point with the max
>> temperature. This is what I got so far:
>>
>>
>>
>> reader = sources.XMLUnstructuredGridReader(FileName =
>> 'C:\\mypath\\output0020.vtu')
>>
>> reader.UpdatePipeline()
>>
>> info_base = reader.GetDataInformation().DataInformation
>>
>> pointArray = info_base.GetPointArrayInformation()
>>
>>
>>
>> I don’t know how to get from pointArray to a list of points (I assume
>> that the info in pointArray is the list of coordinates). Then, I can
>> go through the temperature array obtained with
>> info_base.GetPointDataInformation().GetArrayInformation(..) and get
>> the max temperature and match it with the coordinates.  But, I’m lost
>> at this step on how to get from the reader to the actual array of
>> coordinates and temperature values.
>>
>>
>>
>> I’ve seen posts with some calls to GetPoints, but GetPoints is not a
>> member of pointArray (or any other of the classes used above, for that
> matter).
>>
>>
>>
>> Thanks,
>>
>> Tibi
>>
>>
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView W

Re: [Paraview] Getting the coordinates of the point with max temperature

2011-09-07 Thread Tibi Chelcea
Thanks again. I've added this line to the end:

act_data  = Fetch(pdi)

But now pvbatch crashes with this error:

Traceback (most recent call last):
  File "GetMin.py", line 40, in 
act_data = Fetch(pdi)
  File "C:\Program Files (x86)\ParaView
3.4.0\lib\paraview-3.4\paraview\servermanager.py", line 1351, in Fetch
gvd.AddInput(0, input, idx, "DONTCARE")
  File "C:\Program Files (x86)\ParaView
3.4.0\lib\paraview-3.4\paraview\servermanager.py", line 202, in
__ConvertArgumentsAndCall
retVal = func(*newArgs)
TypeError: function takes exactly 2 arguments (4 given)


It looks like a problem inside the code for Fetch, but not entirely sure.

Thanks,
Tibi



-Original Message-
From: David E DeMarle [mailto:dave.dema...@kitware.com] 
Sent: Wednesday, September 07, 2011 1:03 PM
To: Tibi Chelcea
Cc: paraview@paraview.org
Subject: Re: [Paraview] Getting the coordinates of the point with max
temperature

vtkPVDataInformation is _only_ lightweight meta information. It describes
some dataset that lives on the server but doesn't give you access to the
actual data.

Fetch should return to you a vtkDataSet. You should be able to get the
points/cells and arrays directly out of that.

David E DeMarle
Kitware, Inc.
R&D Engineer
21 Corporate Drive
Clifton Park, NY 12065-8662
Phone: 518-881-4909



On Wed, Sep 7, 2011 at 1:45 PM, Tibi Chelcea  wrote:
> Hi David,
>
> Thank you very much for the hint. I'm still not entirely sure I'm 
> getting it right, though. Here's what I've done:
>
> reader = sources.XMLUnstructuredGridReader(FileName =
> 'C:\\mypath\\output0020.vtu')
> reader.UpdatePipeline()
>
> info_base = reader.GetDataInformation().DataInformation
> pointDataInfo = info_base.GetPointDataInformation()
>
> temp_max = 0
> # here I get the max temperature across all points for i in 
> range(pointDataInfo.GetNumberOfArrays()):
>        ai = pointDataInfo.GetArrayInformation(i)
>        if ai.GetName().lower() == 'temperature':
>                temp_max = ai.GetComponentRange(0)[1]
>
> # temp_max is computed correctly at this point, declare the threshold 
> to be 95% to 105% of the max temperature th = filters.Threshold(Input 
> = reader) th.SelectInputScalars = ['0', '0', '0', '1', 'temperature'] 
> th.ThresholdBetween = [temp_max*0.95,temp_max*1.05]
> th.UpdatePipeline()
> Fetch(th)
>
> pdi = th.GetDataInformation().DataInformation
> print pdi
>
> At this point, 'print pdi' produces this:
>
> vtkPVDataInformation (04089090)
>  Debug: Off
>  Modified Time: 116455
>  Reference Count: 2
>  Registered Events: (none)
>  RootOnly: 0
>  DataSetType: 4
>  CompositeDataSetType: -1
>  NumberOfPoints: 0
>  NumberOfRows: 0
>  NumberOfCells: 0
>  NumberOfDataSets: 1
>  MemorySize: 0
>  PolygonCount: 0
>  Bounds: 1e+299, -1e+299, 1e+299, -1e+299, 1e+299, -1e+299
>  Extent: 2147483647, -2147483647, 2147483647, -2147483647, 2147483647,
> -2147483647
> ...
>
>
> It seems that there are no points selected. I'm wondering whether the 
> th.SelectInputScalars does what's it's supposed to do (I've copied 
> that from some examples in the mailing list). I'm using Paraview 3.4.0 
> (the latest Paraview 3.10.1 works only in GUI, but fails to execute 
> any script in pvbatch).
>
> Thanks,
> Tibi
>
>
> -Original Message-
> From: David E DeMarle [mailto:dave.dema...@kitware.com]
> Sent: Wednesday, September 07, 2011 10:41 AM
> To: Tibi Chelcea
> Cc: paraview@paraview.org
> Subject: Re: [Paraview] Getting the coordinates of the point with max 
> temperature
>
> The arrays themselves may be extremely large, thus they live on the 
> server, not the client and you can't get them directly as you are trying
to do.
> You can however use servermanager.Fetch to bring them over, but you 
> should only do so once you have filtered them down in size a bit.
> Try using the threshold filter, picking out only those cells/points 
> near the maximum, then fetching that.
>
> David E DeMarle
> Kitware, Inc.
> R&D Engineer
> 21 Corporate Drive
> Clifton Park, NY 12065-8662
> Phone: 518-881-4909
>
>
>
> On Wed, Sep 7, 2011 at 9:57 AM, Tibi Chelcea  wrote:
>> Hi,
>>
>>
>>
>> I’m extremely new to Paraview scripting and Python programming, so 
>> the question that I’m asking might have a totally obvious answer, but 
>> I can’t figure it out. I need to write a script to analyze the 
>> results of a transient analysis simulation. For that, the script 
>> needs to read the last .vtu file, figure out the coordinates (or 
>> index) of the point with the largest temperature, and then pick the 
>> temperatures at that point from all the other simulation steps and 
>> then do some computations based on those values.
>>
>>
>>
>> I got stuck at figuring out the coordinates of the point with the max 
>> temperature. This is what I got so far:
>>
>>
>>
>> reader = sources.XMLUnstructuredGridReader(FileName =
>> 'C:\\mypath\\output0020.vtu')
>>
>> reader.UpdatePipeline()
>>
>> info_base = reader.GetDataInformation().DataInformation
>>
>> pointArray = 

[Paraview] Screen flicker

2011-09-07 Thread Fabian, Nathan
Hi,

I've had a problem recently with paraview causing my whole screen to flicker 
when it's rendering.  I've tried recompiling with different versions of Qt and 
with carbon vs cocoa with no luck either way.  It seems to be an opengl problem 
because it only happens when I'm rendering surfaces or something that uses the 
card.

Has anyone else experienced this or know how to fix it?  It's paraview 3.12 rc1 
(latest git) Mac Pro GeForce 8600M GT, OSX 10.5.8

Thanks,
Nathan.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


[Paraview] Failure in PVBatch (name resolution error?)

2011-09-07 Thread Tibi Chelcea
I'm trying to use pvbatch from Paraview 3.10.1, but I get the error below:

 

 

[TRANSIM-533:09700] [[INVALID],INVALID] ERROR: Failed to identify the local
daemon's URI

[TRANSIM-533:09700] [[INVALID],INVALID] ERROR: This is a fatal condition
when the binomial router

[TRANSIM-533:09700] [[INVALID],INVALID] ERROR: has been selected - either
select the unity router

[TRANSIM-533:09700] [[INVALID],INVALID] ERROR: or ensure that the local
daemon info is provided

[TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file
..\..\OpenMPI\orte\mca\ess\base\ess_base_std_app.c at line 151

--

Sorry!  You were supposed to get help about:

orte_init:startup:internal-failure

But I couldn't open the help file:

C:\Kitware\ParaView
3.10\build-x32\OpenMPI-install\share\openmpi\help-orte-runtime.txt: No such
file or directory.  Sorry!

--

[TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file
..\..\OpenMPI\orte\mca\ess\singleton\ess_singleton_module.c at line 277

[TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file
..\..\OpenMPI\orte\runtime\orte_init.c at line 132

--

Sorry!  You were supposed to get help about:

orte_init:startup:internal-failure

But I couldn't open the help file:

C:\Kitware\ParaView
3.10\build-x32\OpenMPI-install\share\openmpi\help-orte-runtime: No such file
or directory.  Sorry!

--

--

Sorry!  You were supposed to get help about:

mpi_init:startup:internal-failure

But I couldn't open the help file:

C:\Kitware\ParaView
3.10\build-x32\OpenMPI-install\share\openmpi\help-mpi-runtime: No such file
or directory.  Sorry!

--

*** The MPI_Init() function was called before MPI_INIT was invoked.

*** This is disallowed by the MPI standard.

*** Your MPI job will now abort.

[TRANSIM-533:9700] Abort before MPI_INIT completed successfully; not able to
guarantee that all other processes were killed!

 

 

Paraview works fine. On my system I also have Paraview 3.4.0 installed, and
pvbatch for 3.4.0 works fine, without problems. Has anyone seen this type of
error?

 

Thanks,

Tibi

 

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Screen flicker

2011-09-07 Thread Utkarsh Ayachit
Nathan,

I've seen this issue with my macbook pro too. The solution included a
visit to the MacStore and getting the motherboard replaced :). Hope
your laptop is still under warranty.

Also, try switching to the "high performance" graphics card. I had the
issue when my settings were set to use the "better battery life"
graphics card.

Utkarsh

On Wed, Sep 7, 2011 at 2:41 PM, Fabian, Nathan  wrote:
> Hi,
> I've had a problem recently with paraview causing my whole screen to flicker
> when it's rendering.  I've tried recompiling with different versions of Qt
> and with carbon vs cocoa with no luck either way.  It seems to be an opengl
> problem because it only happens when I'm rendering surfaces or something
> that uses the card.
> Has anyone else experienced this or know how to fix it?  It's paraview 3.12
> rc1 (latest git) Mac Pro GeForce 8600M GT, OSX 10.5.8
> Thanks,
> Nathan.
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Quadro vs GTX 460 vs hd 6870

2011-09-07 Thread Pei-Ying Hsieh
Thanks a lot Robert!

I will look into GTX 560Ti.  If I cannot afford it, then, I will keep the 
Quadro FX4600 for the time being.

Best Regards,

Pei-Ying




From: Robert Maynard 
To: Phsieh2005 
Cc: paraview@paraview.org
Sent: Wednesday, September 7, 2011 11:49 AM
Subject: Re: [Paraview] Quadroon vs FTC 460 vs hd 6870


Hi, 

If you do volume rendering I would avoid the AMD card. The gtx460 is a slightly 
better card but not leaps and bounds better than the quadro. I would think you 
would need to look at the newer GTX 560Ti and up for a sizeable increase in 
performance.

On Tue, Sep 6, 2011 at 7:59 PM, Phsieh2005  wrote:

Dear paraviewers,
>
>I am building a new computer for CFD analysis.  I have an old Quadro FX4600.  
>In terms of paraview performance, will it be better to choose an AMD HD6870 or 
>nVidia GTX 460 over my old Qudrao FX 4600?
>
>Thanks
>
>Pei
>
>___
>Powered by www.kitware.com
>
>Visit other Kitware open-source projects at 
>http://www.kitware.com/opensource/opensource.html
>
>Please keep messages on-topic and check the ParaView Wiki at: 
>http://paraview.org/Wiki/ParaView
>
>Follow this link to subscribe/unsubscribe:
>http://www.paraview.org/mailman/listinfo/paraview
>


-- 
Robert Maynard___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Failure in PVBatch (name resolution error?)

2011-09-07 Thread Utkarsh Ayachit
That looks like an MPI setup error. Are you sure you can launch MPI
jobs correctly on this machine?

Utkarsh

On Wed, Sep 7, 2011 at 2:49 PM, Tibi Chelcea  wrote:
> I’m trying to use pvbatch from Paraview 3.10.1, but I get the error below:
>
>
>
>
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: Failed to identify the local
> daemon's URI
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: This is a fatal condition
> when the binomial router
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: has been selected - either
> select the unity router
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: or ensure that the local
> daemon info is provided
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file
> ..\..\OpenMPI\orte\mca\ess\base\ess_base_std_app.c at line 151
>
> --
>
> Sorry!  You were supposed to get help about:
>
>     orte_init:startup:internal-failure
>
> But I couldn't open the help file:
>
>     C:\Kitware\ParaView
> 3.10\build-x32\OpenMPI-install\share\openmpi\help-orte-runtime.txt: No such
> file or directory.  Sorry!
>
> --
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file
> ..\..\OpenMPI\orte\mca\ess\singleton\ess_singleton_module.c at line 277
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file
> ..\..\OpenMPI\orte\runtime\orte_init.c at line 132
>
> --
>
> Sorry!  You were supposed to get help about:
>
>     orte_init:startup:internal-failure
>
> But I couldn't open the help file:
>
>     C:\Kitware\ParaView
> 3.10\build-x32\OpenMPI-install\share\openmpi\help-orte-runtime: No such file
> or directory.  Sorry!
>
> --
>
> --
>
> Sorry!  You were supposed to get help about:
>
>     mpi_init:startup:internal-failure
>
> But I couldn't open the help file:
>
>     C:\Kitware\ParaView
> 3.10\build-x32\OpenMPI-install\share\openmpi\help-mpi-runtime: No such file
> or directory.  Sorry!
>
> --
>
> *** The MPI_Init() function was called before MPI_INIT was invoked.
>
> *** This is disallowed by the MPI standard.
>
> *** Your MPI job will now abort.
>
> [TRANSIM-533:9700] Abort before MPI_INIT completed successfully; not able to
> guarantee that all other processes were killed!
>
>
>
>
>
> Paraview works fine. On my system I also have Paraview 3.4.0 installed, and
> pvbatch for 3.4.0 works fine, without problems. Has anyone seen this type of
> error?
>
>
>
> Thanks,
>
> Tibi
>
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Failure in PVBatch (name resolution error?)

2011-09-07 Thread Tibi Chelcea
No, I don't think I can launch MPI jobs here (I remember that at some point
I was looking to run MPI jobs for some other software, but it did not run --
and did not spend much time with it anyway), but I'm not entirely sure why I
should even need MPI to run pvbatch (given that it ran fine with 3.4). Is
there a way to disable MPI use?

Tibi


-Original Message-
From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] 
Sent: Wednesday, September 07, 2011 3:44 PM
To: Tibi Chelcea
Cc: paraview@paraview.org
Subject: Re: [Paraview] Failure in PVBatch (name resolution error?)

That looks like an MPI setup error. Are you sure you can launch MPI jobs
correctly on this machine?

Utkarsh

On Wed, Sep 7, 2011 at 2:49 PM, Tibi Chelcea  wrote:
> I’m trying to use pvbatch from Paraview 3.10.1, but I get the error below:
>
>
>
>
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: Failed to identify the 
> local daemon's URI
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: This is a fatal 
> condition when the binomial router
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: has been selected - 
> either select the unity router
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: or ensure that the 
> local daemon info is provided
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file 
> ..\..\OpenMPI\orte\mca\ess\base\ess_base_std_app.c at line 151
>
> --
> 
>
> Sorry!  You were supposed to get help about:
>
>     orte_init:startup:internal-failure
>
> But I couldn't open the help file:
>
>     C:\Kitware\ParaView
> 3.10\build-x32\OpenMPI-install\share\openmpi\help-orte-runtime.txt: No 
> such file or directory.  Sorry!
>
> --
> 
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file 
> ..\..\OpenMPI\orte\mca\ess\singleton\ess_singleton_module.c at line 
> 277
>
> [TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file 
> ..\..\OpenMPI\orte\runtime\orte_init.c at line 132
>
> --
> 
>
> Sorry!  You were supposed to get help about:
>
>     orte_init:startup:internal-failure
>
> But I couldn't open the help file:
>
>     C:\Kitware\ParaView
> 3.10\build-x32\OpenMPI-install\share\openmpi\help-orte-runtime: No 
> such file or directory.  Sorry!
>
> --
> 
>
> --
> 
>
> Sorry!  You were supposed to get help about:
>
>     mpi_init:startup:internal-failure
>
> But I couldn't open the help file:
>
>     C:\Kitware\ParaView
> 3.10\build-x32\OpenMPI-install\share\openmpi\help-mpi-runtime: No such 
> file or directory.  Sorry!
>
> --
> 
>
> *** The MPI_Init() function was called before MPI_INIT was invoked.
>
> *** This is disallowed by the MPI standard.
>
> *** Your MPI job will now abort.
>
> [TRANSIM-533:9700] Abort before MPI_INIT completed successfully; not 
> able to guarantee that all other processes were killed!
>
>
>
>
>
> Paraview works fine. On my system I also have Paraview 3.4.0 
> installed, and pvbatch for 3.4.0 works fine, without problems. Has 
> anyone seen this type of error?
>
>
>
> Thanks,
>
> Tibi
>
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at 
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
>

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Failure in PVBatch (name resolution error?)

2011-09-07 Thread Utkarsh Ayachit
Is this paraview you built from source?

Utkarsh

On Wed, Sep 7, 2011 at 4:47 PM, Tibi Chelcea  wrote:
> No, I don't think I can launch MPI jobs here (I remember that at some point
> I was looking to run MPI jobs for some other software, but it did not run --
> and did not spend much time with it anyway), but I'm not entirely sure why I
> should even need MPI to run pvbatch (given that it ran fine with 3.4). Is
> there a way to disable MPI use?
>
> Tibi
>
>
> -Original Message-
> From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com]
> Sent: Wednesday, September 07, 2011 3:44 PM
> To: Tibi Chelcea
> Cc: paraview@paraview.org
> Subject: Re: [Paraview] Failure in PVBatch (name resolution error?)
>
> That looks like an MPI setup error. Are you sure you can launch MPI jobs
> correctly on this machine?
>
> Utkarsh
>
> On Wed, Sep 7, 2011 at 2:49 PM, Tibi Chelcea  wrote:
>> I’m trying to use pvbatch from Paraview 3.10.1, but I get the error below:
>>
>>
>>
>>
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: Failed to identify the
>> local daemon's URI
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: This is a fatal
>> condition when the binomial router
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: has been selected -
>> either select the unity router
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: or ensure that the
>> local daemon info is provided
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file
>> ..\..\OpenMPI\orte\mca\ess\base\ess_base_std_app.c at line 151
>>
>> --
>> 
>>
>> Sorry!  You were supposed to get help about:
>>
>>     orte_init:startup:internal-failure
>>
>> But I couldn't open the help file:
>>
>>     C:\Kitware\ParaView
>> 3.10\build-x32\OpenMPI-install\share\openmpi\help-orte-runtime.txt: No
>> such file or directory.  Sorry!
>>
>> --
>> 
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file
>> ..\..\OpenMPI\orte\mca\ess\singleton\ess_singleton_module.c at line
>> 277
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file
>> ..\..\OpenMPI\orte\runtime\orte_init.c at line 132
>>
>> --
>> 
>>
>> Sorry!  You were supposed to get help about:
>>
>>     orte_init:startup:internal-failure
>>
>> But I couldn't open the help file:
>>
>>     C:\Kitware\ParaView
>> 3.10\build-x32\OpenMPI-install\share\openmpi\help-orte-runtime: No
>> such file or directory.  Sorry!
>>
>> --
>> 
>>
>> --
>> 
>>
>> Sorry!  You were supposed to get help about:
>>
>>     mpi_init:startup:internal-failure
>>
>> But I couldn't open the help file:
>>
>>     C:\Kitware\ParaView
>> 3.10\build-x32\OpenMPI-install\share\openmpi\help-mpi-runtime: No such
>> file or directory.  Sorry!
>>
>> --
>> 
>>
>> *** The MPI_Init() function was called before MPI_INIT was invoked.
>>
>> *** This is disallowed by the MPI standard.
>>
>> *** Your MPI job will now abort.
>>
>> [TRANSIM-533:9700] Abort before MPI_INIT completed successfully; not
>> able to guarantee that all other processes were killed!
>>
>>
>>
>>
>>
>> Paraview works fine. On my system I also have Paraview 3.4.0
>> installed, and pvbatch for 3.4.0 works fine, without problems. Has
>> anyone seen this type of error?
>>
>>
>>
>> Thanks,
>>
>> Tibi
>>
>>
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.paraview.org/mailman/listinfo/paraview
>>
>>
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Failure in PVBatch (name resolution error?)

2011-09-07 Thread Tibi Chelcea
No, it's downloaded&installed from the Paraview website.

Tibi


-Original Message-
From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] 
Sent: Wednesday, September 07, 2011 4:30 PM
To: Tibi Chelcea
Cc: paraview@paraview.org
Subject: Re: [Paraview] Failure in PVBatch (name resolution error?)

Is this paraview you built from source?

Utkarsh

On Wed, Sep 7, 2011 at 4:47 PM, Tibi Chelcea  wrote:
> No, I don't think I can launch MPI jobs here (I remember that at some 
> point I was looking to run MPI jobs for some other software, but it 
> did not run -- and did not spend much time with it anyway), but I'm 
> not entirely sure why I should even need MPI to run pvbatch (given 
> that it ran fine with 3.4). Is there a way to disable MPI use?
>
> Tibi
>
>
> -Original Message-
> From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com]
> Sent: Wednesday, September 07, 2011 3:44 PM
> To: Tibi Chelcea
> Cc: paraview@paraview.org
> Subject: Re: [Paraview] Failure in PVBatch (name resolution error?)
>
> That looks like an MPI setup error. Are you sure you can launch MPI 
> jobs correctly on this machine?
>
> Utkarsh
>
> On Wed, Sep 7, 2011 at 2:49 PM, Tibi Chelcea  wrote:
>> I’m trying to use pvbatch from Paraview 3.10.1, but I get the error
below:
>>
>>
>>
>>
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: Failed to identify the 
>> local daemon's URI
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: This is a fatal 
>> condition when the binomial router
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: has been selected - 
>> either select the unity router
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ERROR: or ensure that the 
>> local daemon info is provided
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file 
>> ..\..\OpenMPI\orte\mca\ess\base\ess_base_std_app.c at line 151
>>
>> -
>> -
>> 
>>
>> Sorry!  You were supposed to get help about:
>>
>>     orte_init:startup:internal-failure
>>
>> But I couldn't open the help file:
>>
>>     C:\Kitware\ParaView
>> 3.10\build-x32\OpenMPI-install\share\openmpi\help-orte-runtime.txt: 
>> No such file or directory.  Sorry!
>>
>> -
>> -
>> 
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file 
>> ..\..\OpenMPI\orte\mca\ess\singleton\ess_singleton_module.c at line
>> 277
>>
>> [TRANSIM-533:09700] [[INVALID],INVALID] ORTE_ERROR_LOG: Fatal in file 
>> ..\..\OpenMPI\orte\runtime\orte_init.c at line 132
>>
>> -
>> -
>> 
>>
>> Sorry!  You were supposed to get help about:
>>
>>     orte_init:startup:internal-failure
>>
>> But I couldn't open the help file:
>>
>>     C:\Kitware\ParaView
>> 3.10\build-x32\OpenMPI-install\share\openmpi\help-orte-runtime: No 
>> such file or directory.  Sorry!
>>
>> -
>> -
>> 
>>
>> -
>> -
>> 
>>
>> Sorry!  You were supposed to get help about:
>>
>>     mpi_init:startup:internal-failure
>>
>> But I couldn't open the help file:
>>
>>     C:\Kitware\ParaView
>> 3.10\build-x32\OpenMPI-install\share\openmpi\help-mpi-runtime: No 
>> such file or directory.  Sorry!
>>
>> -
>> -
>> 
>>
>> *** The MPI_Init() function was called before MPI_INIT was invoked.
>>
>> *** This is disallowed by the MPI standard.
>>
>> *** Your MPI job will now abort.
>>
>> [TRANSIM-533:9700] Abort before MPI_INIT completed successfully; not 
>> able to guarantee that all other processes were killed!
>>
>>
>>
>>
>>
>> Paraview works fine. On my system I also have Paraview 3.4.0 
>> installed, and pvbatch for 3.4.0 works fine, without problems. Has 
>> anyone seen this type of error?
>>
>>
>>
>> Thanks,
>>
>> Tibi
>>
>>
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at 
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.paraview.org/mailman/listinfo/paraview
>>
>>
>
>

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Screen flicker

2011-09-07 Thread Fabian, Nathan
One point of information I forgot to mention.  It does not appear to
happen at all with a DMG downloaded from ParaView.org.  This is what led
me to think it's my fault somehow.

On 9/7/11 12:49 PM, "Utkarsh Ayachit"  wrote:

>Nathan,
>
>I've seen this issue with my macbook pro too. The solution included a
>visit to the MacStore and getting the motherboard replaced :). Hope
>your laptop is still under warranty.
>
>Also, try switching to the "high performance" graphics card. I had the
>issue when my settings were set to use the "better battery life"
>graphics card.
>
>Utkarsh
>
>On Wed, Sep 7, 2011 at 2:41 PM, Fabian, Nathan  wrote:
>> Hi,
>> I've had a problem recently with paraview causing my whole screen to
>>flicker
>> when it's rendering.  I've tried recompiling with different versions of
>>Qt
>> and with carbon vs cocoa with no luck either way.  It seems to be an
>>opengl
>> problem because it only happens when I'm rendering surfaces or something
>> that uses the card.
>> Has anyone else experienced this or know how to fix it?  It's paraview
>>3.12
>> rc1 (latest git) Mac Pro GeForce 8600M GT, OSX 10.5.8
>> Thanks,
>> Nathan.
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.paraview.org/mailman/listinfo/paraview
>>
>>
>


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview