Re: [Paraview] cvs error compiling, linux, "glob"

2009-08-20 Thread Berk Geveci
Try adding something like this before the GLOB:

 message("${qtlib} ${QT_LIB_DIR_tmp} ${QT_${qtlib}_LIBRARY_RELEASE}")

What do you get right before the error?

I believe that the GLOB is looking for all the libraries (maybe
libQtGUI.so, libQtGUI.so.4.5 etc.) for each Qt component.

-berk

On Thu, Aug 20, 2009 at 4:42 PM, Ricardo Reis wrote:
> On Thu, 20 Aug 2009, Karl Battams wrote:
>
>> I had the same thing a week-or-so ago.  For me it was because I'd
>> installed
>> Qt through 'synaptic' (on Ubuntu) and it wasn't a supported version.  So I
>> compiled/installed the latest Qt from source and the GLOB error went away.
>> So check your Qt.  Also, I think cmake leaves a log file that sometimes
>> sheds light on errors.  That's perhaps worth checking.
>
> It's possible but I would like to add this:
>
>  - before the cvs version compiled ok (let's say one month ago)
>
>  - after my recent co (I always do a full check out) it complained, before
> the GLOB error, that my QT version was 4.4 and now it wanted 4.5
>
>  - i've updated (I'm using debian), the 4.5 is gone, but the GLOB still
> exists.
>
>  so, something changed in between, the error is located in this bit of code:
>
> IF(NOT Q_WS_MAC)
>  FOREACH(qtlib ${QTLIBLIST})
>    IF (NOT WIN32)
>      #INSTALL(FILES ${QT_${qtlib}_LIBRARY_RELEASE} DESTINATION
> ${PV_INSTALL_LIB_DIR})
>      GET_FILENAME_COMPONENT(QT_LIB_DIR_tmp ${QT_${qtlib}_LIBRARY_RELEASE}
> PATH)
>      GET_FILENAME_COMPONENT(QT_LIB_NAME_tmp ${QT_${qtlib}_LIBRARY_RELEASE}
> NAME)
>      FILE(GLOB QT_LIB_LIST RELATIVE ${QT_LIB_DIR_tmp}
> "${QT_${qtlib}_LIBRARY_RELEASE}*")
>      INSTALL(CODE "
> MESSAGE(STATUS \"Installing
> \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}/${QT_LIB_NAME_tmp}\")
> EXECUTE_PROCESS (WORKING_DIRECTORY ${QT_LIB_DIR_tmp}
>                 COMMAND tar c ${QT_LIB_LIST}
>                 COMMAND tar -xC
> \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR})
>        " COMPONENT Runtime)
>    ELSE (NOT WIN32)
>      GET_FILENAME_COMPONENT(QT_DLL_PATH_tmp ${QT_QMAKE_EXECUTABLE} PATH)
>      INSTALL(FILES ${QT_DLL_PATH_tmp}/${qtlib}4.dll DESTINATION
> ${PV_INSTALL_BIN_DIR} COMPONENT Runtime)
>    ENDIF (NOT WIN32)
>  ENDFOREACH(qtlib)
>
>
>  so, if someone would explain what this line of code does
>
>      FILE(GLOB QT_LIB_LIST RELATIVE ${QT_LIB_DIR_tmp}
> "${QT_${qtlib}_LIBRARY_RELEASE}*")
>
>  maybe I could trace the problem to the debian package?
>
>  many thanks,
>
>  Ricardo Reis
>
>  'Non Serviam'
>
>  PhD candidate @ Lasef
>  Computational Fluid Dynamics, High Performance Computing, Turbulence
>  http://www.lasef.ist.utl.pt
>
>  Cultural Instigator @ Rádio Zero
>  http://www.radiozero.pt
>
>  Keep them Flying! Ajude/help a Aero Fénix!
>
>  http://www.aeronauta.com/aero.fenix
>
>  http://www.flickr.com/photos/rreis/
> ___
> 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] cvs error compiling, linux, "glob"

2009-08-20 Thread Ricardo Reis

On Thu, 20 Aug 2009, Karl Battams wrote:


I had the same thing a week-or-so ago.  For me it was because I'd installed
Qt through 'synaptic' (on Ubuntu) and it wasn't a supported version.  So I
compiled/installed the latest Qt from source and the GLOB error went away.
So check your Qt.  Also, I think cmake leaves a log file that sometimes
sheds light on errors.  That's perhaps worth checking.


It's possible but I would like to add this:

 - before the cvs version compiled ok (let's say one month ago)

 - after my recent co (I always do a full check out) it complained, before 
the GLOB error, that my QT version was 4.4 and now it wanted 4.5


 - i've updated (I'm using debian), the 4.5 is gone, but the GLOB still 
exists.


 so, something changed in between, the error is located in this bit of 
code:


IF(NOT Q_WS_MAC)
  FOREACH(qtlib ${QTLIBLIST})
IF (NOT WIN32)
  #INSTALL(FILES ${QT_${qtlib}_LIBRARY_RELEASE} DESTINATION 
${PV_INSTALL_LIB_DIR})
  GET_FILENAME_COMPONENT(QT_LIB_DIR_tmp ${QT_${qtlib}_LIBRARY_RELEASE} PATH)
  GET_FILENAME_COMPONENT(QT_LIB_NAME_tmp ${QT_${qtlib}_LIBRARY_RELEASE} 
NAME)
  FILE(GLOB QT_LIB_LIST RELATIVE ${QT_LIB_DIR_tmp} 
"${QT_${qtlib}_LIBRARY_RELEASE}*")
  INSTALL(CODE "
MESSAGE(STATUS \"Installing 
\${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}/${QT_LIB_NAME_tmp}\")
EXECUTE_PROCESS (WORKING_DIRECTORY ${QT_LIB_DIR_tmp}
 COMMAND tar c ${QT_LIB_LIST}
 COMMAND tar -xC \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR})
" COMPONENT Runtime)
ELSE (NOT WIN32)
  GET_FILENAME_COMPONENT(QT_DLL_PATH_tmp ${QT_QMAKE_EXECUTABLE} PATH)
  INSTALL(FILES ${QT_DLL_PATH_tmp}/${qtlib}4.dll DESTINATION 
${PV_INSTALL_BIN_DIR} COMPONENT Runtime)
ENDIF (NOT WIN32)
  ENDFOREACH(qtlib)


 so, if someone would explain what this line of code does

  FILE(GLOB QT_LIB_LIST RELATIVE ${QT_LIB_DIR_tmp} 
"${QT_${qtlib}_LIBRARY_RELEASE}*")

 maybe I could trace the problem to the debian package?

 many thanks,

 Ricardo Reis

 'Non Serviam'

 PhD candidate @ Lasef
 Computational Fluid Dynamics, High Performance Computing, Turbulence
 http://www.lasef.ist.utl.pt

 Cultural Instigator @ Rádio Zero
 http://www.radiozero.pt

 Keep them Flying! Ajude/help a Aero Fénix!

 http://www.aeronauta.com/aero.fenix

 http://www.flickr.com/photos/rreis/___
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] Suggested format for open unstructured CFD including surface geometry?

2009-08-20 Thread bastil2...@yahoo.de
Ensight is quite a common format. However I would be very interested in
having a Fieldview-Reader for Paraview...

Regards BastiL

A. Austen schrieb:
> Hello all.
>
> I'm interested in using ParaView  to view unstructured CFD solutions. 
> I'm currently using a proprietary flow solver which outputs results in
> FieldView-Unstructured format.  The nice thing about that format is that
> it allows the inclusion of not just the solution grid, but also all the
> boundary surface geometry.
>
> However, I'm not crazy about being stuck with FieldView as my only
> option, so I'd like to write a translator to output an equivalent
> dataset in a more open format.  I've looked at CGNS, but it expects the
> user to link to external CAD files to provide the surface geometry.  Is
> there a recommended file format supported by VTK that is well-documented
> which includes the capability to include the surface geometry as a
> triangular surface mesh?  The geometric body definitions in my existing
> FieldView-Unstructured files consist of triangular surface meshes, a la
> FACET or STL, and in fact starts out as a FACET input into the flow
> solver.
>
>   

___
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] Suggested format for open unstructured CFD including surface geometry?

2009-08-20 Thread A. Austen
Hello all.

I'm interested in using ParaView  to view unstructured CFD solutions. 
I'm currently using a proprietary flow solver which outputs results in
FieldView-Unstructured format.  The nice thing about that format is that
it allows the inclusion of not just the solution grid, but also all the
boundary surface geometry.

However, I'm not crazy about being stuck with FieldView as my only
option, so I'd like to write a translator to output an equivalent
dataset in a more open format.  I've looked at CGNS, but it expects the
user to link to external CAD files to provide the surface geometry.  Is
there a recommended file format supported by VTK that is well-documented
which includes the capability to include the surface geometry as a
triangular surface mesh?  The geometric body definitions in my existing
FieldView-Unstructured files consist of triangular surface meshes, a la
FACET or STL, and in fact starts out as a FACET input into the flow
solver.

Another question is if ParaView allows such a surface to clip the mesh
such that it would be possible to view a coordinate plane, but only the
portion contained within one of the boundary surfaces?

Thank you.

-- 
http://www.fastmail.fm - One of many happy users:
  http://www.fastmail.fm/docs/quotes.html

___
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] [ParaView] " not a valid qt plugin"

2009-08-20 Thread Stephenson, Stuart (UK)
Hi All,
 
I have recieved the above error when trying to use an object from an
external source within the Reader.cxx. If anyone could point me in the
right direction to solve it that would be a great help.
 
I have included the header "VolumeData.h" and this compiles fine and the
plugin works. When I then try to include an instance of the object I get
the the error when i try to load the plugin using the plugin manager.
 
I am using VS2008, ParaView 3.4.0, CMake 2.6.4, qt 4.3.5, on XP.
 
Is this an issue with version or compilation issue? 
 
Cheers
 
Stuart
 
 


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


[Paraview] Biomedical Visualization Contest

2009-08-20 Thread Lisa Avila

Kitware is holding a contest to find the best biomedical visualization
that was made using the freely-available, open-source Insight Toolkit
(http://www.itk.org) or Visualization Toolkit (http://www.vtk.org).

* First-place prize is $750 and a shirt or hat with the Kitware logo.
* Second-place prize is $250 and a shirt or hat with the Kitware logo.
* Select entries will also appear on the Kitware website

* Submissions must be received by September 10th, 2009

* Winners will be announced at the 2009 MICCAI conference

The contest website is:

 http://www.kitware.com/ImageVote/

Entries will be judged based on scientific significance, the use of
ITK or VTK, and aesthetics.  More information is given below and on
the contest website:
* Visualizations may be charts, graphs, photographs, or renderings
from the biomedical field.
* You may submit more than one visualization.
* You must explain how VTK and/or ITK played a role in generating
your visualizations.
* Images from open-source and commercial applications that use ITK
and VTK are eligible, including:
* 3D Slicer
* Osirix
* BioImageXD
* MedINRIA
* Farsight
* VisTrails
* caBIG-XIP
* VR-Render
* ParaView
* VolView
* Public voting will be used by a panel of expert judges to determine
the winners.
* Images generated by Kitware employees are not eligible.
* Anyone may submit visualizations and cast votes, after registering
on this website.
* Registration is free.

As you prepare your presentations for MICCAI, SPIE Medical Imaging,
and other events, consider entering the best of your visualizations in
the contest!

We look forward to seeing your entries!

Best regards,
The Kitware Team

___
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] cvs error compiling, linux, "glob"

2009-08-20 Thread Karl Battams
I had the same thing a week-or-so ago.  For me it was because I'd installed
Qt through 'synaptic' (on Ubuntu) and it wasn't a supported version.  So I
compiled/installed the latest Qt from source and the GLOB error went away.
So check your Qt.  Also, I think cmake leaves a log file that sometimes
sheds light on errors.  That's perhaps worth checking.

~~Karl

On Thu, Aug 20, 2009 at 9:36 AM, Ricardo Reis  wrote:

>
>  After checking out a brand new cvs I get this error when doing configuring
> in ccmake:
>
>  CMake Error at Applications/Client/CMakeLists.txt:493 (FILE):
>   file GLOB requires a glob expression after the directory
>
>
>  any ideas?
>
>  many thanks,
>
>
>  Ricardo Reis
>
>  'Non Serviam'
>
>  PhD candidate @ Lasef
>  Computational Fluid Dynamics, High Performance Computing, Turbulence
>  http://www.lasef.ist.utl.pt
>
>  Cultural Instigator @ Rádio Zero
>  http://www.radiozero.pt
>
>  Keep them Flying! Ajude/help a Aero Fénix!
>
>  http://www.aeronauta.com/aero.fenix
>
>  http://www.flickr.com/photos/rreis/
> ___
> 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] cvs error compiling, linux, "glob"

2009-08-20 Thread Ricardo Reis


 After checking out a brand new cvs I get this error when doing 
configuring in ccmake:


 CMake Error at Applications/Client/CMakeLists.txt:493 (FILE):
   file GLOB requires a glob expression after the directory


 any ideas?

 many thanks,


 Ricardo Reis

 'Non Serviam'

 PhD candidate @ Lasef
 Computational Fluid Dynamics, High Performance Computing, Turbulence
 http://www.lasef.ist.utl.pt

 Cultural Instigator @ Rádio Zero
 http://www.radiozero.pt

 Keep them Flying! Ajude/help a Aero Fénix!

 http://www.aeronauta.com/aero.fenix

 http://www.flickr.com/photos/rreis/___
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] Tensor ellipsoids in Paraview

2009-08-20 Thread Thorsten Hater

Hello,

I have had the same problem a few weeks ago.
Here is what I did, but the code is not originally
mine. Bryn Lloyd did write it.
You will need cmake and a built-from-source ParaView.
Unpack the attached archive, create a separate build directory
and execute
ccmake /path/to/source/dir
then hit 'c' until you are prompted for the ParaView
include path. Supply it, hit 'c' some more times until
the generate option 'g' appears, execute this.
Then you can build via make normally.

Best regards,
   Thorsten

M LL wrote:

Hi,

I am new to paraview.

I know that VTK has a module to visualize tensors (I have managed to 
do this

through MayaVi2) I am now trying to get access to this module through
paraview but I am unfamiliar with the set of steps one needs to follow in
order to get it done. I know that it can be done by writing to xml 
files...

I was wondering whether someone could help me with this by providing me a
list of steps I could follow?

Thank you so much.

Marcos

ps. Email me directly to this email


___
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
  



--
Thorsten Hater
Institut fuer Theoretische Physik I
Ruhr-Universitaet Bochum
E-Mail: t...@tp1.rub.de
Tel.: 0234/32-23-441 



filter.tar.gz
Description: GNU Zip compressed data
___
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] [vtkusers] request for LOD actor behavior

2009-08-20 Thread Dominik Szczerba

So far I can see it is a top idea... ;)

- Dominik

Utkarsh Ayachit wrote:

Hmm, that sounds like  a nice idea. Feel free to add it to the
http://paraview.uservoice.com/ page as see what the community thinks.

Utkarsh

On Tue, Aug 18, 2009 at 4:57 PM, Dominik Szczerba wrote:

LOD actor goes back to full representation on mouse release.
In ICEM_CFD it waits 2sec (or so so) so I can continue transformations in
LOD mode without annoying delays. It is very smart of them and such feature
should be added to VTK/PV.
--
d o m i n i k   s z c z e r b a ,   p h d . . . . . . . . . . .
c o m p u t a t i o n a l   l i f e   s c i e n c e   g r o u p
. . . . . . . i t ' i s   r e s e a r c h   f o u n d a t i o n
. . . . . . . . . . . . . . . . . . . . http://www.itis.ethz.ch

___
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 VTK FAQ at:
http://www.vtk.org/Wiki/VTK_FAQ

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






--
d o m i n i k   s z c z e r b a ,   p h d . . . . . . . . . . .
c o m p u t a t i o n a l   l i f e   s c i e n c e   g r o u p
. . . . . . . i t ' i s   r e s e a r c h   f o u n d a t i o n
. . . . . . . . . . . . . . . . . . . . http://www.itis.ethz.ch

___
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] Tensor ellipsoids in Paraview

2009-08-20 Thread Pierre JUILLARD
Dear Marcos,

You will be able to find the "HyperStreamlines.xml" to uncover the
Hyperstreamline VTK class in ParaView (you just have to load it in ParaView)
in ParaView bugtracker, bug with ID 0008424.

You might be interested in the discussion held there.

Best regards,

Pierre



2009/8/19 M LL 

> Hi,
>
> I am new to paraview.
>
> I know that VTK has a module to visualize tensors (I have managed to do
> this
> through MayaVi2) I am now trying to get access to this module through
> paraview but I am unfamiliar with the set of steps one needs to follow in
> order to get it done. I know that it can be done by writing to xml files...
> I was wondering whether someone could help me with this by providing me a
> list of steps I could follow?
>
> Thank you so much.
>
> Marcos
>
> ps. Email me directly to this email
> ___
> 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