Re: [Paraview] Calculating Surface area

2011-04-14 Thread Ivo Roghair
Perhaps you could try the Mesh Quality filter on the Delauny2D you created, then the Cell Data To Point Data, finally the Integrate Variables (look for the 'Quality' as the result of this function). 2011/4/12 Anowarul Islam : > Hello, > > I have created a surface using the delaunay2d filters.After

Re: [Paraview] Calculating Surface area

2011-04-14 Thread Adriano Gagliardi
I'm pretty sure you can use a Python programmable filter to do this. If you check the doxygen for vtkTriangle, there should be a member function that returns the area of a specific triangle. Otherwise, the area of a triangle is calculated as follows: // 2 /// \v1 = (pt1-pt0) // /

[Paraview] PV 3.10.0 filters & contributing code

2011-04-14 Thread Natalie Happenhofer
Hi! I've recently downloaded PV 3.10.0 and extended it with my own filters I've already build in PV 3.6 and PV 3.8.0. However, executing them in PV3.10.0, I get the error Warning: In /home/happenhofer/svn/paraview/branches/ParaView-3.10.0/Servers/Filters/vtkTexturePainter.cxx, line 179 vtkTe

[Paraview] ANN: ParaView 3.10.1 Available for download

2011-04-14 Thread Favre Jean
hello while building a plugin against an installed version of 3.10.1, I ran into the problem that the file vtk_libhdf5_mangle.h wasn't found anywhere in the install directory, and compilation of my plugin (which includes vtkhdf5/hdf5.h) fails. I copied it manually from the source directory to

Re: [Paraview] ANN: ParaView 3.10.1 Available for download

2011-04-14 Thread David Partyka
Thanks Jean for reporting this. I'll add the appropriate install rule right now. On Thu, Apr 14, 2011 at 5:27 AM, Favre Jean wrote: > > hello > > while building a plugin against an installed version of 3.10.1, I ran into > the problem that the file vtk_libhdf5_mangle.h wasn't found anywhere in t

Re: [Paraview] ANN: ParaView 3.10.1 Available for download

2011-04-14 Thread David Partyka
Also added a bug for this. Thanks again! http://www.paraview.org/Bug/view.php?id=12084 On Thu, Apr 14, 2011 at 7:41 AM, David Partyka wrote: > Thanks Jean for reporting this. I'll add the appropriate install rule right > now. > > > On Thu, Apr 14, 2011 at 5:27 AM, Favre Jean wrote: > >> >> hell

[Paraview] set the "coarsing level" of a mesh

2011-04-14 Thread Gil Wertz
When manipulate mesh in a pqRenderView, the mesh become coarse to be easily manipulated. I want to set the "coarse level" of the mesh ( like a % or a ratio ) but I didn't find a property that correspond. Thanks for you help ^^. PS: I use big data-set (10Go) so I need to make it lighter. Wert

Re: [Paraview] Hello from a big fan of Paraview

2011-04-14 Thread Moreland, Kenneth
Lingyun, (CC'ing my response to the ParaView mailing list so that more eyes can view it.) I'm not entirely sure what you want to do with your data. ParaView does not really have what most people consider matrix operations. It does, however, have many facilities for image data, which is basica

Re: [Paraview] PV 3.10.0 filters & contributing code

2011-04-14 Thread Utkarsh Ayachit
Natalie, Could you share the code/data and steps to reproduce so that I may be better able to judge what's the problem? Also as far your question about contributing code goes, I think that's definitely a great idea. I am a thinking of using a the following workflow to get contributed code in: *

[Paraview] PavaView-QT

2011-04-14 Thread D-Durga-Prasad
Hello all, I am unable to compile ParaView 3.10.1 in SunOS. It gives QT LIB not found. QT is not installed. How can I avoid QT while installing ParaView? Is QT compulsory? ParaView works fine in Ubuntu Systems. *D Durga Prasad* Jr Technical Staff, Computer Science Engineering Department., India

Re: [Paraview] VRPN with Paraview 3.10

2011-04-14 Thread David Partyka
Hi Christian, 3.10.1 now includes the VRPN plugin prebuilt. Please try it out and let us know your experience with it. On Fri, Mar 25, 2011 at 1:50 PM, David E DeMarle wrote: > Although it is possible to build a plugin that is compatible with our > binaries (using our development libraries is the

Re: [Paraview] PavaView-QT

2011-04-14 Thread Utkarsh Ayachit
To build with out Qt, turn off the Cmake variable PARAVIEW_BUILD_QT_GUI. Utkarsh On Thu, Apr 14, 2011 at 9:10 AM, D-Durga-Prasad wrote: > Hello all, > I am unable to compile ParaView 3.10.1 in SunOS. It gives QT LIB not found. > QT is not installed. > > How can I avoid QT while installing ParaVi

Re: [Paraview] PavaView-QT

2011-04-14 Thread David Partyka
Qt is used for the GUI, if you are not interested in the gui interface and just want to run pvserver for example you can turn it off in CMake via PARAVIEW_BUILD_QT_GUI On Thu, Apr 14, 2011 at 9:10 AM, D-Durga-Prasad wrote: > Hello all, > > I am unable to compile ParaView 3.10.1 in SunOS. It give

Re: [Paraview] PavaView-QT

2011-04-14 Thread David E DeMarle
You can not compile the front end GUI interface without Qt. You can compile the back end data processing and rendering without Qt by turning off PARAVIEW_BUILD_QT_GUI. David E DeMarle Kitware, Inc. R&D Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-371-3971 x109 On Thu, Apr

Re: [Paraview] set the "coarsing level" of a mesh

2011-04-14 Thread Gil Wertz
of course I've seen the "Still Subsample Rate" and" Interactive Subsample Rate" options but after settings values, it doesn't change anything ... Wertz Gil gilwe...@hotmail.com From: gilwe...@hotmail.com To: paraview@paraview.org Date: Thu, 14 Apr 2011 14:56:59 +0200 Subject: [Paraview] set

Re: [Paraview] set the "coarsing level" of a mesh

2011-04-14 Thread David E DeMarle
I believe vtkPVRenderView::LODResolution is what you are looking for. It sets the world space grid size that the data is quadric clustering downsampled onto while moving the camera. The other parameters you mention control screen space downsampling that only happens in client server configurations

Re: [Paraview] PavaView-QT

2011-04-14 Thread D-Durga-Prasad
But I heard that "PARAVIEW_BUILD_QT_GUI" will not help. The compiler/cmake still searches for QT-LIB? Is it true? I am not in office today. I will try that tomorrow!! On Thu, Apr 14, 2011 at 6:43 PM, David E DeMarle wrote: > You can not compile the front end GUI interface without Qt. > You can co

Re: [Paraview] PavaView-QT

2011-04-14 Thread D-Durga-Prasad
Hello All, I have generated "makefiles" with ccmake, with PARAVIEW_BUILD_QT_GUI=OFF. Now when I run make, I get the following errors [ 0%] Built target vtksys [ 1%] Built target vtkzlib [ 1%] Built target H5detect [ 1%] Building C object VTK/Utilities/vtkhdf5/src/CMakeFiles/H5make_libsettings

Re: [Paraview] PavaView-QT

2011-04-14 Thread Sven Buijssen
Hi, You mentioned you're compiling on SunOS. So do I on a regular basis, without problems. Could you elaborate a bit on the SunOS version and the compiler you are using (vendor, version, 32/64 bit)? Sven D-Durga-Prasad wrote, On 04/14/11 16:26: > Hello All, > > I have generated "makefiles" wit

Re: [Paraview] PavaView-QT

2011-04-14 Thread D-Durga-Prasad
Hi, when I do uname -a I get the following output. SunOS sun-sms 5.10 Generic_118844-26 i86pc i386 i86pc How did you manage QT? Thanx. On Thu, Apr 14, 2011 at 8:04 PM, Sven Buijssen wrote: > Hi, > > You mentioned you're compiling on SunOS. So do I on a regular basis, > without > problems. > Co

Re: [Paraview] Calculating Surface area

2011-04-14 Thread Adriano Gagliardi
Forwarding this to the mailing list... === Adriano Gagliardi MEng PhD Business Sector Leader Computational Aerodynamics Aircraft Research Association Ltd. Manton Lane Bedford Tel: 01234 32 4644 E-mail: agaglia...@ara.co.uk Url: www.ara.co.uk _ From

Re: [Paraview] PavaView-QT

2011-04-14 Thread Sven Buijssen
Hi, I'm running SunOS 5.10 SPARC-Enterprise Solaris, not Solaris x86. I compiled GCC 4.3.4 64-bit from source, then Mesa 7.8.2 from source using that self-compiled GCC 4.3.4, then Qt 4.6.3 from source using the same GCC 4.3.4 (plus Python 2.7, OpenMPI 1.4.3) and with all these prerequisites final

[Paraview] SubSet grid type in Xdmf

2011-04-14 Thread Tim Gallagher
Hi, I'm working on an AMR problem and I'm trying to store the grid with Xdmf. In the CGNS file format, there was an OversetHoles node type that defined a list of cells in one grid that should be "turned off" because another set of cells has that information. I was thinking that the SubSet gri

Re: [Paraview] vtkSocket bugs

2011-04-14 Thread Burlen Loring
Thanks Dave, Filed the bug report http://www.paraview.org/Bug/view.php?id=12087 I updated the patch for 3.10.0 as well (attached here and on the bug report). Burlen On 04/13/2011 11:24 AM, David Partyka wrote: Humm, I forgot all about this email. I'll stick it in right now for 3.10.2. If yo

[Paraview] Paraveiw 3.10.0 error with loading ANSYS data

2011-04-14 Thread Muxuan Wang
Hi All, I am a new to paraview. I got errors with loading ANSYS .inp to paraview 3.10.0. I was using ANSYS workbench for structural analysis. I modeled a simple FE solid model with 1728 nodes and 225 elements and then applied force on it to see the deformation. I exported the

Re: [Paraview] Paraveiw 3.10.0 error with loading ANSYS data

2011-04-14 Thread Robert Maynard
Hi, Would you able to email me a file that causes this problem? The test inp files I have work correctly in ParaView 3.10.1 On Thu, Apr 14, 2011 at 2:33 PM, Muxuan Wang wrote: > Hi All, > > I am a new to paraview. I got errors with loading ANSYS .inp to paraview > 3.10.0. > > I was using ANSYS

[Paraview] Python Macro group macros, scripts with user input, arrangement of filters and bug in trace

2011-04-14 Thread Fabian Braennstroem
Hello, I am using quite a few python macros for my daily work. Mostly this works quite nice! Unfortunately I do not find a way, how to arrange some to certain groups. E.g. I would like to group macros for setting certain views and other to a group, where special filters are adjusted. Is it so

Re: [Paraview] SubSet grid type in Xdmf

2011-04-14 Thread George Zagaris
Hi Tim, The quickest way to get this working today is to add an IBLANK CellArray to your dataset and flag the cells that you want to turn off. Then, in ParaView, you can turn off those cells by thresholding based on the IBLANK. The best approach for structured AMR is to store your data in a hiera

Re: [Paraview] Paraveiw 3.10.0 error with loading ANSYS data

2011-04-14 Thread Robert Maynard
Hi, The file that you linked was written in an output format for ABAQUS not ANSYS. On Thu, Apr 14, 2011 at 3:05 PM, Robert Maynard wrote: > Hi, > > Would you able to email me a file that causes this problem? The test inp > files I have work correctly in ParaView 3.10.1 > > On Thu, Apr 14, 2011 a

[Paraview] Python modules.

2011-04-14 Thread Jorge López
Dear All, Is it possible to add python modules to my path? I am working with Mac OS X. When I use the pvpthon command inside the Paraview folder and do "from paraview.simple import *" it works pretty good, but If I do from outside the Paraview folder does not work. If anyone knows how to do this,

Re: [Paraview] Python modules.

2011-04-14 Thread David E DeMarle
Yes. See the getting started section of http://paraview.org/Wiki/ParaView/Python_Scripting for some examples. David E DeMarle Kitware, Inc. R&D Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-371-3971 x109 On Thu, Apr 14, 2011 at 3:32 PM, Jorge López wrote: > Dear All, > Is

Re: [Paraview] Python modules.

2011-04-14 Thread Cook, Rich
I think you can modify PYTHONPATH, or certainly you can append to sys.path import sys sys.path.append("/home/me/mypy") On Apr 14, 2011, at 12:32 PM, Jorge López wrote: Dear All, Is it possible to add python modules to my path? I am working with Mac OS X. When I use the pvpthon command inside th

Re: [Paraview] vtkSocket bugs

2011-04-14 Thread David Partyka
Thanks Burlen, This is applied for 3.10.2. On Thu, Apr 14, 2011 at 2:11 PM, Burlen Loring wrote: > Thanks Dave, > > Filed the bug report http://www.paraview.org/Bug/view.php?id=12087 > > I updated the patch for 3.10.0 as well (attached here and on the bug > report). > > Burlen > > > On 04/13/20

Re: [Paraview] PV 3.10.0 filters & contributing code

2011-04-14 Thread Jérôme
Hi Utkarsh and Natalie, Regarding the "scalar name" problem, I encountered this and solved it with the -apparently- same code snippet you sent. Yes, having the full code or the procedure to trigger the error would be helpful. Regarding the contributing code, I applause! The work-flow you propose

Re: [Paraview] vtkSocket bugs

2011-04-14 Thread David Partyka
Hi Burlen, I had to revert your patch as it doesn't compile on Windows.. You will have to make sure it compiles there as well and resubmit your patch. If you need any help please let me know. Thanks. On Thu, Apr 14, 2011 at 3:51 PM, David Partyka wrote: > Thanks Burlen, This is applied for 3.10.