Re: [Paraview] Finding center points/lines of a scalar field

2015-10-06 Thread Andy Bauer
Hi Tim, For 2D where you're just looking for a point, after you've done your threshold you can use the integrate variables to get the center point of the extracted domain. It should be the returned point location. This will also work in 3D for a center point. At this point in your Catalyst script

Re: [Paraview] Successful SuperBuild on OSX 10.11?

2015-10-06 Thread Ben Boeckel
On Wed, Oct 07, 2015 at 00:23:45 +0100, Mathew Guilfoyle wrote: > I have just upgraded to OS X 10.11 and am now unable to build Paraview > > I had successfully built the Suepbuild 4.4.0 on OS X 10.10 using my > installed Qt4.8 (I was unable to build against the Qt that comes with > the

[Paraview] Changing time step values

2015-10-06 Thread Eric Lynch
After reading a dataset into ParaView, is it possible to change the time step values? I'm reading in data in two different formats. I've got the same time steps in both readers (they correspond to the same iteration of the same simulation), but due to differences in precision, ParaView thinks

Re: [Paraview] LiveArticles example with paraview 4.4

2015-10-06 Thread livia.barazzetti
Hi Seb, I re-set up the environment from scratch and now the live article example works. For the visualizer, I had to remove the “—any reader” parameter from the application cmd in the configuration file and then that works as well (I doesn’t work well with some custom state files which

Re: [Paraview] LiveArticles example with paraview 4.4

2015-10-06 Thread Sebastien Jourdain
No problem, glad you figure it out. Seb On Tue, Oct 6, 2015 at 12:25 PM, wrote: > Hi Seb, > > > > I re-set up the environment from scratch and now the live article example > works. For the visualizer, I had to remove the “—any reader” parameter from > the

[Paraview] ParaView server configuration with user defineable server address

2015-10-06 Thread Schlottke-Lakemper, Michael
Hi folks, We regularly start a pvserver on one of our cluster nodes and then connect to it from a PV client. However, in each instance it is necessary to specify the server address manually, as the server address naturally changes depending on which node the cluster job is located. Is there a

[Paraview] Successful SuperBuild on OSX 10.11?

2015-10-06 Thread Mathew Guilfoyle
I have just upgraded to OS X 10.11 and am now unable to build Paraview I had successfully built the Suepbuild 4.4.0 on OS X 10.10 using my installed Qt4.8 (I was unable to build against the Qt that comes with the SuperBuild. Qt 4.8 is not compatible with the latest OS X, hence I’ve installed

Re: [Paraview] ParaView server configuration with user defineable server address

2015-10-06 Thread David E DeMarle
The usual solution is to use reverse connections. Here the qsub script tells the server what ip address and port number to connect back to. If the waiting client isn't running on the login node, set up an ssh tunnel back to the user's machine. On Oct 6, 2015 4:00 AM, "Schlottke-Lakemper, Michael"

Re: [Paraview] [EXT] Re: More Customization of Python programmable Filter Panel

2015-10-06 Thread Dennis Conklin
All, OK, I admit it – I’m greedy – I want it all. As I have written these customized filters, one thing that I have realized is that memory utilization is not optimum for my setup. I run on a single machine, not a cluster, so I am concerned about memory usage. I have possibly a radical idea

Re: [Paraview] ParaView server configuration with user defineable server address

2015-10-06 Thread Schlottke-Lakemper, Michael
Hi David, Thanks for your answer. I am aware of this possibility, I was just wondering if it is possible to do it directly using the connection settings. During testing, I typically frequently crash (and restart) the pvserver with different numbers of ranks in short succession, and using a

Re: [Paraview] Silce Feature Question

2015-10-06 Thread Dennis Conklin
Michael, Do you really need all those slices simultaneously? Something that I have found very useful is to create a single slice and then rotate the mesh thru it. If you animate the rotation (Transform) then you can also get a very nice animation of the slices by setting the camera

Re: [Paraview] Direct link to ParaView sources not working with wget

2015-10-06 Thread Amit Goel
use curl. as an example: curl --create-dirs -L -o downloads/osumb.tar.gz http://mvapich.cse.ohio-state.edu/download/mvapich/osu-micro-benchmarks-4.4.1.tar.gz Regards Amit On Oct 1, 2015, at 5:28 PM, Ben Boeckel > wrote: On Mon, Sep

Re: [Paraview] Finding center points/lines of a scalar field

2015-10-06 Thread Tim Gallagher
Hi Andy, Thanks for the response. Just to further complicate things, let's say there is more than one feature and so my threshold results in multiple "islands" of data. Is there a filter or a way that I can loop over the discrete lumps of data to run the integration filter over each one?