[Paraview] using pv-meshless from pvpython

2011-05-17 Thread XXX Сергей
Hello. How to setup SPH Manager properties (Interpolation Method and so on) from python? Thanks! ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages

Re: [Paraview] using pv-meshless from pvpython

2011-05-17 Thread Biddiscombe, John A.
How to setup SPH Manager properties (Interpolation Method and so on) from python? Currently you can't. But it's on my todo list JB ___ Powered by www.kitware.com Visit other Kitware open-source projects at

Re: [Paraview] best way to extract coordinates of selected point using python

2011-05-17 Thread Aurélien Marsan
In the programmable filter, if the input is something else than a vtkMultiBlockDataSet print inputs[0].PointData['ro'] in order to see the 'ro' value at the point. ___ Powered by www.kitware.com Visit other Kitware open-source projects at

Re: [Paraview] best way to extract coordinates of selected point using python

2011-05-17 Thread Aurélien Marsan
And for the coordinates : print inputs[0].Points Le 17 mai 2011 14:22, Aurélien Marsan aur.mar...@gmail.com a écrit : In the programmable filter, if the input is something else than a vtkMultiBlockDataSet print inputs[0].PointData['ro'] in order to see the 'ro' value at the point.

[Paraview] macros and pyqt

2011-05-17 Thread Stephane PLOIX
Hi, Did anyone try to use pyqt in a macro (to get some input from the user)? I can't make anything working with signal and slots, it seems to mess with the python threads. I can understand that it may not be possible to use non modal dialogs because the paraview gui in single-threaded, but even

Re: [Paraview] macros and pyqt

2011-05-17 Thread Utkarsh Ayachit
I have done it in past. Attached is a python script. The key is to avoid using anything but direct SMproxies or SMproperties, never their python wrapped counter parts. (Note you may not be able to use the script directly since it expects a certain kind of state file loaded, but should serve as an

[Paraview] How to repeat a 1 deg segment to produce larger angles

2011-05-17 Thread Wayne Wu
Dear all, I am doing an axial symmetrical model by rotating a 2D geometry along the circumferential direction by only 1 degree. This is sufficient for the modelling; however I expect to represent the modelling results in ParaView with 10 to 20 degrees, which would be larger and better for 3D

Re: [Paraview] macros and pyqt

2011-05-17 Thread pat marion
Hi Stephane, Have you seen this email before? http://paraview.markmail.org/message/6h767kpak5dcoqwt Are you using a paraview release or building from source? If you're building from source I can send you a patch that will fix the multiple interpreter issue for pyqt. With that patch, the

Re: [Paraview] best way to extract coordinates of selected point using python

2011-05-17 Thread Fabian Braennstroem
Thanks, ... by testing it I have some error messages with the programmable filter for the 3.10.1 binary 64bit version on linux: Traceback (most recent call last): File string, line 10, in module File

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

2011-05-17 Thread Robert Maynard
Hi Rich, I haven't forgotten about this issue. I just haven't had time to finish testing the solution that is currently on git master. On Fri, May 13, 2011 at 6:33 PM, Cook, Rich coo...@llnl.gov wrote: Hi, there, Just wanted to follow up to see if there was any progress on this? It seems

Re: [Paraview] macros and pyqt

2011-05-17 Thread pat marion
I've published the patches on github now. The branch is called fix-multi-interp and the repo is git://github.com/patmarion/ParaView.git https://github.com/patmarion/ParaView/commits/fix-multi-interp These commits fix the issues with using pyqt signal/slots in the paraview python console, at

Re: [Paraview] How to repeat a 1 deg segment to produce larger angles

2011-05-17 Thread David E DeMarle
Hmm, we don't have a nice interface for that. The reflection filter will copy geometry across the x,y or z vector and optionally aggregate the input and output together. But it looks like that won't do anything but right angles. The transformation filter will let you do arbitrary rotations so

Re: [Paraview] How to repeat a 1 deg segment to produce larger angles

2011-05-17 Thread David E DeMarle
Alternatively a python programmable filter could do it fairly easily by copying the data through and then applying a rotation to the points. David E DeMarle Kitware, Inc. RD Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-371-3971 x109 On Tue, May 17, 2011 at 5:17 PM, David

Re: [Paraview] compiling master from git, problem on debian machine

2011-05-17 Thread Guilherme Araújo Lima da Silva
Ricardo, Your solution worked for me! Thank you. I am using Ubuntu 10.04 LTS. Muito obrigado. Best regards, *Guilherme Araujo Lima da Silva* | Aerospace Director, PhD *Aero-Thermal Solutions for Industry **www.ats4i.com.br* 2011/2/16 Ricardo Reis rr...@aero.ist.utl.pt Just to add the

[Paraview] Time, Animation View

2011-05-17 Thread Shinjiro Miyawaki
Hi, I'm trying to make animations using ParaView 3.10.1 64-bit for Linux. When I load a state file to change 'Start Time' and 'End Time' in 'Animation View', 'Time' is not adjusted accordingly anymore, i.e., animation goes from the beginning to the end of the original data. Has anyone had