Re: [Paraview] missing python filters from python Shell

2014-03-20 Thread Laurent Paul
Thanks David for your help. I have found a solution. I have browsed in the "ParaView 4.1.0\lib\paraview-4.1\site-packages" directory. Here is the paraview package containing the VTK package that I was loading. I have found a second vtk package besides the paraview

Re: [Paraview] PV 4.1.0 ParaView-4.1.0-Linux-64bit/bin/paraview: cannot execute binary file

2014-03-20 Thread Paul Edwards
Hi Stephen, That is only showing that the operating system is running 32 bit. Your hardware is 64 bit and so you could install the 64 bit version of Ubuntu. Regards, Paul On 19 March 2014 20:50, Stephen Wornom stephen.wor...@inria.fr wrote: uname -m | sed 's/x86_//;s/i[3-6]86/32/' 32

[Paraview] CSV writer: choose data to be written in the file

2014-03-20 Thread Francois Beaubert
Hi all, Is it possible to choose the data to be written in a csv file using CreateWriter ? I've made a python script which make an XY plot using PlotOverLine filter but I'm not able to choose the data written in the csv file: source = PlotOverLine1 writer = CreateWriter(line.csv, source)

Re: [Paraview] PV 4.1.0 ParaView-4.1.0-Linux-64bit/bin/paraview: cannot execute binary file

2014-03-20 Thread Stephen Wornom
Paul Edwards wrote: Hi Stephen, That is only showing that the operating system is running 32 bit. Your hardware is 64 bit and so you could install the 64 bit version of Ubuntu. cat /proc/cpuinfo processor: 0 vendor_id: AuthenticAMD cpu family: 16 model: 6 model name:

Re: [Paraview] CSV writer: choose data to be written in the file

2014-03-20 Thread Utkarsh Ayachit
The writer currently doesn't support selecting which arrays are written out, I am afraid. Utkarsh On Thu, Mar 20, 2014 at 7:09 AM, Francois Beaubert francois.beaub...@univ-valenciennes.fr wrote: Hi all, Is it possible to choose the data to be written in a csv file using CreateWriter ? I've

Re: [Paraview] CSV writer: choose data to be written in the file

2014-03-20 Thread Felipe Bordeu
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 maybe you can use vtkPassArrays to filter the arrays before the csvWriter. Felipe Le 20/03/2014 12:09, Francois Beaubert a écrit : Hi all, Is it possible to choose the data to be written in a csv file using CreateWriter ? I've made a python

Re: [Paraview] CSV writer: choose data to be written in the file

2014-03-20 Thread Francois Beaubert
Thank you very much Utkarsh for your kind answer :) Do you know a workaround to be able to write only some variables in a csv file without using the paraview writer ? Regards Francois ___ Powered by www.kitware.com Visit other Kitware open-source

Re: [Paraview] immersive paraview for windows

2014-03-20 Thread Aashish Chaudhary
Glad that you fixed the problem. I just saw your email. Let me know if you have some more questions. Thanks, On Thu, Mar 20, 2014 at 1:27 PM, Hannes Hofmann han...@ualberta.ca wrote: The problem was: I had to use Tracker ID=0. Now it's working. Thanks On Wed, Mar 19, 2014 at 6:05 PM,

Re: [Paraview] missing python filters from python Shell

2014-03-20 Thread Ben Boeckel
On Wed, Mar 19, 2014 at 16:55:21 -0400, David E DeMarle wrote: Try this technique from Pat Marion. http://markmail.org/message/4kp7cxl2ani25cak It should give you access to most or all of VTK, not just the subset the ParaView exposes. For those who would like to avoid 'exec', here's the

Re: [Paraview] CSV writer: choose data to be written in the file

2014-03-20 Thread Francois Beaubert
Thanks Felipe ! You've made my day :) I follow you advice and use the PassArrays filter just before the csvWriter and it works like a charm : - snippet start here - PassArrays1 = PassArrays() PassArrays1.PointDataArrays = ['Velocity', 'TempC',