[Paraview] ParaView using Homebrew for OsX

2014-08-27 Thread Utkarsh Ayachit
Folks, As an experiment, homebrew build script for ParaView available at https://github.com/utkarshayachit/paraview-homebrew Haven't really tested it throughly or added options like building the SDK (which I think will be very useful) etc. Figured I'd put it out there, have people test it and

Re: [Paraview] Independent text in Comparative View

2014-08-26 Thread Utkarsh Ayachit
Ah! No, alas. Mind adding a feature request to the bug tracker ( http://paraview.org/Bug. I'll see what we can do. Utkarsh On Mon, Aug 25, 2014 at 10:11 PM, Fernando Paolo fspa...@gmail.com wrote: Hello, Is it possible to annotate independent text on each of the windows in Comparative View

Re: [Paraview] Strange opacity behavior

2014-08-25 Thread Utkarsh Ayachit
I verified that it does indeed work with the nightly version. Did you hit Apply/Ok on the dialog? Open Python shell and type the following: v = GetActiveView() print v.DepthPeeling print v.MaximumNumberOfPeels What does that say? Utkarsh On Mon, Aug 25, 2014 at 7:21 PM, Yi Chen

Re: [Paraview] Dropping Snow Leopard OsX binaries for ParaView (UNCLASSIFIED)

2014-08-22 Thread Utkarsh Ayachit
Sounds good, Rick. I'll shelve this proposal for now. We can revisit for 4.3. I'll look into renaming the OsX binaries to minimize confusion. Utkarsh On Fri, Aug 22, 2014 at 9:21 AM, Angelini, Richard C (Rick) CIV USARMY ARL (US) richard.c.angelini@mail.mil wrote: Classification:

Re: [Paraview] Populating a servermanager list widget with string array

2014-08-21 Thread Utkarsh Ayachit
attribute_name=CPOList/ /StringVectorProperty Any idea where I am making the mistake? Can I initialize a DataArraySelection that way? Thanks. Regards, Girish On 20 August 2014 22:49, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Try modeling this on Point/Cell array selection

Re: [Paraview] Populating a servermanager list widget with string array

2014-08-21 Thread Utkarsh Ayachit
, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: I'd suggest looking at in the debugger and the tracking the segfault down. Not sure where it could be going wrong. Utkarsh On Thu, Aug 21, 2014 at 8:25 AM, Girish Ramesh rgiris...@gmail.com wrote: Dear Utkarsh, Thank you for the email. I

Re: [Paraview] Populating a servermanager list widget with string array

2014-08-21 Thread Utkarsh Ayachit
are triggered when the plugin is loaded and any output statements that i have in the functions are not printed out. This is confusing! On 21 August 2014 15:16, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: I think the segfault is happening in SetUserEPK(). On Thu, Aug 21, 2014 at 8:42 AM

[Paraview] Dropping Snow Leopard OsX binaries for ParaView

2014-08-21 Thread Utkarsh Ayachit
Folks, I wanted to get a quick survey if anyone cares if we drop support for distributing ParaVIew binaries compatible with Snow Leopard. Lion on wards will still be supported. There are two OsX binaries for ParaView currently and it can be a little confusing which one to use and why and hence

Re: [Paraview] Where to find error logs

2014-08-20 Thread Utkarsh Ayachit
The best way is to rebuild ParaView in debug mode and then use the debugger, I'm afraid. On Wed, Aug 20, 2014 at 10:01 AM, Bruce Jones bruce.david.jo...@gmail.com wrote: Hi, I am working on an application which writes a VTP file. We recently did a huge code merge and now our VTP writer is

Re: [Paraview] Where to find error logs

2014-08-20 Thread Utkarsh Ayachit
the vtkZLibDataCompressor compressor, so I can't vouch for the binary data that's being written, but the XML tags are all essentially the same as another file which is working. Cheers, Bruce On Wed, Aug 20, 2014 at 10:05 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: The best way is to rebuild

Re: [Paraview] [EXTERNAL] build trouble on LLNL clusters

2014-08-20 Thread Utkarsh Ayachit
Rich, The problem seems to be in ParaView/VTK/ThirdParty/gl2ps/vtkgl2ps/CMakeLists.txt. To make it easier, can you post all the files/directories under the following directory in the build directory? That will have generated makefiles will help determine the includes, libraries it's linking

Re: [Paraview] [EXTERNAL] build trouble on LLNL clusters

2014-08-20 Thread Utkarsh Ayachit
(ThirdParty ): pwd /tmp/dpkg-mkdeb.GU7yE8BBEM/src/ParaView-v4.1.0-Build/VTK/ThirdParty rcook@rzgpu52 (ThirdParty ): find gl2ps -name CMakeLists.txt rcook@rzgpu52 (ThirdParty ) Tarball attached (77kb). On Aug 20, 2014, at 1:08 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Rich

Re: [Paraview] Populating a servermanager list widget with string array

2014-08-20 Thread Utkarsh Ayachit
Try modeling this on Point/Cell array selection properties provided by readers (in readers.xml). You'd need to use the ArraySelectionDomain, the StringListDomain won't work. e.g. StringVectorProperty command=SetPointArrayStatus element_types=2 0

Re: [Paraview] [SOLVED] Paraview 3.98, Pvserver and Intel graphic HD 4600

2014-08-19 Thread Utkarsh Ayachit
Thanks for posting back. Highly appreciated. Utkarsh On Tue, Aug 19, 2014 at 3:28 AM, Patrick Begou patrick.be...@legi.grenoble-inp.fr wrote: I just wont to give a feedback about this problem and how I solved it: I've donwloaded and installed more recent versions: Mesa-10.2.2

Re: [Paraview] Catalyst edition: no proxy for XMLPPolyDataWriter found

2014-08-19 Thread Utkarsh Ayachit
Yup, this indeed points to the issue I was alluding do. Andy, feel free to stop by if you need more info. Utkarsh On Tue, Aug 19, 2014 at 3:02 AM, Lars Bilke lars.bi...@ufz.de wrote: Hi Andy, I can create XMLPPolyDataWriter in pvpython without errors. With a normal ParaView build as well as

Re: [Paraview] Zoom to data is not correctly captured in a python trace.

2014-08-19 Thread Utkarsh Ayachit
Alan, With git/master, it translates to something like this: renderView1.ResetCamera(-10.0, 10.0, -10.0, 10.0, -10.0, 10.0) Where the values are indeed the current data bounds. But I think we can add API to ZoomTOData in Python using a data source rather that current bounds. Feel free to add a

Re: [Paraview] Catalyst edition: no proxy for XMLPPolyDataWriter found

2014-08-18 Thread Utkarsh Ayachit
Andy, I'll let you look into it, but I suspect it's due to the fact that catalyst needs to tell exactly where the py (and other ParaView shared libraries) are since the usual mechanism of determine their locations based on the location of the executable don't apply to Catalyst. Utkarsh On Mon,

Re: [Paraview] A Forward Connection Over two ssh Tunnel

2014-08-18 Thread Utkarsh Ayachit
This may be of help: http://www.paraview.org/Wiki/Reverse_connection_and_port_forwarding Utkarsh On Mon, Aug 18, 2014 at 5:52 AM, ehsan saei ehsan.s...@gmail.com wrote: Hi all, I'm new to paraview. I try to run pvserver on a cluster. The problem is that I need to ssh twice to get access to

Re: [Paraview] A Forward Connection Over two ssh Tunnel

2014-08-18 Thread Utkarsh Ayachit
and then ssh to the cluster again and finally I can submit a job. Do you have any other suggestions? thanks in advance, Ehsan On Mon, Aug 18, 2014 at 4:29 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: This may be of help: http://www.paraview.org/Wiki

Re: [Paraview] A Forward Connection Over two ssh Tunnel

2014-08-18 Thread Utkarsh Ayachit
--client-host ${LOGIN_HOST} --server-port ${LOGIN_PORT} ... You could skip ncat if you have control over the sshd config, you need to enable GatewayPorts. Burlen On 08/18/2014 08:18 AM, Utkarsh Ayachit wrote: It does boil down to using reverse connection and setting up recursive tunnels so

Re: [Paraview] A Forward Connection Over two ssh Tunnel

2014-08-18 Thread Utkarsh Ayachit
, Sure I can do that. Burlen On 08/18/2014 01:36 PM, Utkarsh Ayachit wrote: Burlen, Very cool. When you get the chance, mind updating the Wiki? Thanks Utkarsh On Mon, Aug 18, 2014 at 12:37 PM, Burlen Loring blor...@lbl.gov wrote: Hi Ehsan, As Utkarsh says you need to use a reverse

Re: [Paraview] [ParaView] Unofficial ParaView 4.1.0 SDK for Windows 32 and 64-bit

2014-08-13 Thread Utkarsh Ayachit
256), it's 2.0. The TestSystemCaps regression test has the code to report. On 8/11/2014 9:53 AM, Utkarsh Ayachit wrote: Additionally, you need to run the installer as admin since it installs a daemon (I believe). I think it would make sense to put out two version of Windows binaries (without

Re: [Paraview] [ParaView] Unofficial ParaView 4.1.0 SDK for Windows 32 and 64-bit

2014-08-13 Thread Utkarsh Ayachit
On Wed, Aug 13, 2014 at 10:56 AM, Burlen Loring burlen.lor...@gmail.com wrote: makes me wonder if the installer could also install python binaries? ;-) Haha! Me wonders too .. the problem is if the user installed Python in some location, then he'd need to setup PATH before paraview could run.

Re: [Paraview] [ParaView] Unofficial ParaView 4.1.0 SDK for Windows 32 and 64-bit

2014-08-13 Thread Utkarsh Ayachit
On Wed, Aug 13, 2014 at 11:06 AM, Burlen Loring blor...@lbl.gov wrote: I was thinking along the lines that the ParaView installer, could leverage the python official installer behind the scenes, but direct it into the ParaView specific location... Ah! I wonder if that's doable, but it is, yea

Re: [Paraview] [ParaView] Unofficial ParaView 4.1.0 SDK for Windows 32 and 64-bit

2014-08-11 Thread Utkarsh Ayachit
The ParaView dev team switched from Open-MPI 1.6.2 backwards to 1.4.4, precisely because the support was dropped. That is correct. That's precisely why we've stuck with 1.4.4. I spent a lot of time trying to packing 1.6.* on Windows to no success and then decided to just stick with 1.4.4.

Re: [Paraview] Plot point variable over time

2014-08-11 Thread Utkarsh Ayachit
Rakesh, The dataset you included doesn't have any timesteps. Nor I do I see any variable named displacement. The only variables available are uvw. To plot over time, you select the cells or point that you want plot over time and the create the Plot Over Time filter. That would show you a plot of

Re: [Paraview] [ParaView] Unofficial ParaView 4.1.0 SDK for Windows 32 and 64-bit

2014-08-11 Thread Utkarsh Ayachit
and easily take advantage of an HPC Pack 2012 R2-based cluster. Please refer to the license agreement for additional details. Sounds like if you use an installer it could handle the dependency. Burlen On 08/11/2014 08:03 AM, Utkarsh Ayachit wrote: The ParaView dev team switched from Open-MPI

Re: [Paraview] Movies from my desktop

2014-08-05 Thread Utkarsh Ayachit
I use 'RecordMyDesktop' on Linux and 'QuickTime Player' on Mac. Utkarsh On Aug 5, 2014, at 12:40 PM, Scott, W Alan wasc...@sandia.gov wrote: I want to make a movie of my screen as I interact with ParaView. Since I want to see a user’s interactions with ParaView, Save Animation isn’t

Re: [Paraview] Segmentation fault when launching Paraview

2014-07-31 Thread Utkarsh Ayachit
Are you running from the build directory or install directory? Can you you try running from the build direactory first to see if that works? On Thu, Jul 31, 2014 at 10:23 AM, Dan Mazur dan.ma...@clumeq.ca wrote: Hello, I have placed the CMakeCache.txt file online in case it helps with

Re: [Paraview] what python library to use when compiling ParaView using windows 7 64bit VS2013 express (UNCLASSIFIED)

2014-07-29 Thread Utkarsh Ayachit
the binary from python.org a try. Thanks -simon -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Monday, July 28, 2014 4:24 PM To: Su, Simon M CTR USARMY ARL (US) Cc: paraview@paraview.org Subject: Re: [Paraview] what python library to use when compiling

Re: [Paraview] what python library to use when compiling ParaView using windows 7 64bit VS2013 express (UNCLASSIFIED)

2014-07-28 Thread Utkarsh Ayachit
You could build ParaView as a Release (rather than Debug) and then you should not get those warnings, I think. On Mon, Jul 28, 2014 at 11:49 AM, Su, Simon M CTR USARMY ARL (US) simon.m.su@mail.mil wrote: Classification: UNCLASSIFIED Caveats: NONE Hello, When I used

Re: [Paraview] what python library to use when compiling ParaView using windows 7 64bit VS2013 express (UNCLASSIFIED)

2014-07-28 Thread Utkarsh Ayachit
with Visual Studio 2008 x64 9.0.30729.1 SP? If so, what python library was used? The binary for python from WinPython-64bit-2.7.6.4 was compiled with VS2008, is that why VS2008 was picked for pv 4.0.x windows compilation? Thanks -simon -Original Message- From: Utkarsh Ayachit

Re: [Paraview] box Coordinate Results in Calculator not in version 4.1.0

2014-07-25 Thread Utkarsh Ayachit
Denis, It's an advanced property now, either search for it or hit the gear and you'll see it. http://www.kitware.com/blog/home/post/491 Utkarsh On Fri, Jul 25, 2014 at 9:26 AM, denis cohen denis.co...@gmail.com wrote: Hi, It looks like the box Coordinate Results in the calculator is no

Re: [Paraview] Paraview 3.98, Pvserver and Intel graphic HD 4600

2014-07-23 Thread Utkarsh Ayachit
Maybe try using mesa3d instead? On Wed, Jul 23, 2014 at 8:23 AM, Patrick Begou patrick.be...@legi.grenoble-inp.fr wrote: Unfortunatly, it is not possible to add a new graphic board on these hosts So I need to find a software solution. Patrick --

Re: [Paraview] vtkPVCameraCueManipulator (0x8353f8e60): Too few keyframes to animate.

2014-07-23 Thread Utkarsh Ayachit
Can you switch the lines WriteAnimation and CameraAnimationCue.KeyFrame = The WrieAnimation should happen after that. Seems like a bug in the tracing code. The tracing code is being revamped. Although animation has been skipped in this revamp, it's on my todo list for subsequent release.

Re: [Paraview] vtkPVCameraCueManipulator (0x8353f8e60): Too few keyframes to animate.

2014-07-23 Thread Utkarsh Ayachit
While it's hard to get right of those values from trace, what's definitely working already is the development version is, if you're tracing and you hit the reset camera button, it will trace the Python method to use to do extactly that which is ResetCamera and not the actual camera property

Re: [Paraview] Paraview 3.98, Pvserver and Intel graphic HD 4600

2014-07-22 Thread Utkarsh Ayachit
Do you any images that you can share that could illustrate the change? Thanks Utkarsh On Tue, Jul 22, 2014 at 4:17 AM, Patrick Begou patrick.be...@legi.grenoble-inp.fr wrote: I've setup 4 new desktops using an Intel HD graphics 4600 chipset, runing CentOS 6.5. I'm using paraview 3.98 with

Re: [Paraview] AMR Cut Plane

2014-07-22 Thread Utkarsh Ayachit
I believe the reader is missing the BlankCells( http://www.vtk.org/doc/nightly/html/classvtkAMRUtilities.html#a6656bada8c6d01b43e15299567af7657) call. If I remember correctly, the blanking cells generated by vtkImageToAMR.cxx get lost when the data is saved to disk (since we don't have a true

Re: [Paraview] How to run ParaView in parallel

2014-07-22 Thread Utkarsh Ayachit
I am guessing you get a spotty visualization when you manually connect to the pvserver, is that correct. What type of dataset are you loading? Can you share the data? Not sure if it's a rendering artifact or a side effect of the data distribution, or something else. Utkarsh On Sun, Jun 22, 2014

Re: [Paraview] storing output calculated by python running in parallel - write to a file? (UNCLASSIFIED)

2014-07-22 Thread Utkarsh Ayachit
, output) # write sum to file writer = CreateWriter('foo.csv') .. -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Monday, July 07, 2014 11:36 AM To: Su, Simon M CTR USARMY ARL (US) Cc: paraview@paraview.org Subject: Re: [Paraview

Re: [Paraview] Paraview 3.98, Pvserver and Intel graphic HD 4600

2014-07-22 Thread Utkarsh Ayachit
Alas, no idea what could be happening. A random guess, try toggling Interpolate Scalars Before Mapping check box on the Properties panel. Let's see if that makes any difference. Utkarsh On Tue, Jul 22, 2014 at 10:32 AM, Patrick Begou patrick.be...@legi.grenoble-inp.fr wrote: Hi Utkarsh I

Re: [Paraview] get the sum of a cell or point variable (UNCLASSIFIED)

2014-07-22 Thread Utkarsh Ayachit
Simon, As I am cleaning my inbox, I ran into this email. Since there have been other emails about this I'll skip your original query :). Just wanted to give you an update on recent developments in ParaView. We recently pushed updates to VTK/ParaView to allow you to use Python calculator to

Re: [Paraview] get the sum of a cell or point variable (UNCLASSIFIED)

2014-07-22 Thread Utkarsh Ayachit
great. That will eliminate the programmable filter part of my pipeline. You didn't happen to also pushed update to VTK/ParaView that will write the expression sum(EQPS) to a file that will work in parallel, did you? :) Thanks -simon -Original Message- From: Utkarsh Ayachit

Re: [Paraview] get the sum of a cell or point variable (UNCLASSIFIED)

2014-07-22 Thread Utkarsh Ayachit
- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Tuesday, July 22, 2014 4:11 PM To: Su, Simon M CTR USARMY ARL (US) Cc: paraview@paraview.org Subject: Re: [Paraview] get the sum of a cell or point variable (UNCLASSIFIED) Hey, once the sum() is computed by the calculator

Re: [Paraview] Paraview 4.1.0: New Scale Bar Format

2014-07-20 Thread Utkarsh Ayachit
Kailyn, Not in 4.1, alas. This has been addressed in the development version of ParaView (http://www.paraview.org/Bug/view.php?id=14686) and will be available in the next release. You can download the nightly development binaries from paraview.org. Note that these are the bleeding edge binaries

Re: [Paraview] connectivity errors

2014-07-09 Thread Utkarsh Ayachit
Looks like you're using git/master client with 4.1 server or vice-versa. Is that the case? Utkarsh On Wed, Jul 9, 2014 at 9:02 AM, Angelini, Richard C (Rick) CIV USARMY ARL (US) richard.c.angelini@mail.mil wrote: I¹m setting up Paraview client/server on a new Cray XC30 system. I have a

Re: [Paraview] python script to rotate a view (UNCLASSIFIED)

2014-07-09 Thread Utkarsh Ayachit
Attached is a sample. For the most part it was obtained by using the tracing capabilities and adding a camera orbit animation. There's a bug in the tracing code that is missed the adding of KeyFrames to the CameraAnimationCue1 proxy as indicated in the script. BTW, we are working on revamping the

Re: [Paraview] Render View: Edit View Options Gone?

2014-07-08 Thread Utkarsh Ayachit
Yes, Edit View Options is gone. You can still change the lights from the Properties Panel. It's an advanced property, so make sure you have the gear toggled. Check these posts out: http://www.kitware.com/blog/home/post/621 http://www.kitware.com/blog/home/post/673

Re: [Paraview] storing output calculated by python running in parallel - write to a file? (UNCLASSIFIED)

2014-07-07 Thread Utkarsh Ayachit
Simon, If you're saving out data generated by a pipeline (which can include Programmable filter or Python calculator), then you should use CreateWriter(http://www.paraview.org/ParaView3/Doc/Nightly/www/py-doc/paraview.simple.html#paraview.simple.CreateWriter) to create a writer and then write the

Re: [Paraview] ParaView Python problem

2014-07-07 Thread Utkarsh Ayachit
BTW, this issue has been resolved in the development version of ParaView and the fix will be included in the next release. Utkarsh On Thu, Jun 26, 2014 at 7:48 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: I should have read the full email :)...ok..so this fails only with pvpython

Re: [Paraview] CRAY building with cray-mpich2

2014-07-01 Thread Utkarsh Ayachit
Bucky, Like Jean, suggests, FindMPI can be tricky. It's easier to just manually specify allt he MPI_LANG_TYPE flags explicitly. Let's start there. If FindMPI still ends up messing up the variables you set, can you force FindMPI to not do interrogation by adding the following variables. -D

Re: [Paraview] calculate total sum of a variable in CTH data

2014-07-01 Thread Utkarsh Ayachit
Simon, Use the following for your main body. Also note, for AMR datasets, the scalars are available cell data, not point data. --- if input.IsA(vtkUniformGridAMR): # This initializes AMR properly. It will share

Re: [Paraview] Importing paraview.simple in external python environment

2014-06-30 Thread Utkarsh Ayachit
Livia -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: 28 June 2014 16:09 To: Barazzetti, Livia (ISTB) Cc: ParaView Subject: Re: [Paraview] Importing paraview.simple in external python environment I believe you need to set you PATH environment

Re: [Paraview] Error trying to run python script

2014-06-28 Thread Utkarsh Ayachit
Chuks, The trace missing the filename is indeed a bug. We are working on refactoring the tracing code right now, so tracing should get better in the next release. The error you get when you explicitly set the FileName is due to the fact that the property is called FileNames and not FileName

Re: [Paraview] Single color bar in Comparative View

2014-06-26 Thread Utkarsh Ayachit
That's a good point :). No, there's no way of doing that right now. Mind adding a feature request to the bug tracker (http://paraview.org/Bug)? Should be straight forward to support. Utkarsh On Wed, Jun 25, 2014 at 9:24 PM, Fernando Paolo fspa...@gmail.com wrote: Hello, Is it possible to have

Re: [Paraview] ParaView Python problem

2014-06-26 Thread Utkarsh Ayachit
Ah! I think the Python calculator is corrupting the global context since both, the filter and the main script run within the same Python interpreter. Is this using pvpython or Python shell in the UI? On Thu, Jun 26, 2014 at 6:30 AM, Ian Krukow i.kru...@tu-braunschweig.de wrote: Hi all, I like

Re: [Paraview] ParaView Python problem

2014-06-26 Thread Utkarsh Ayachit
I should have read the full email :)...ok..so this fails only with pvpython. I'll take a look. On Thu, Jun 26, 2014 at 7:47 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Ah! I think the Python calculator is corrupting the global context since both, the filter and the main script run

Re: [Paraview] [EXTERNAL] 0014670: Edit Color Map Toolbar button should toggle the Color Map Editor

2014-06-25 Thread Utkarsh Ayachit
This may shed some light on it: http://www.paraview.org/ParaView/index.php/Development_Workflow On Tue, Jun 24, 2014 at 5:28 PM, Scott, W Alan wasc...@sandia.gov wrote: Christoph, This was actually a Sandia project bug, I have changed the project entry. Backlog, with no Target Version, means

Re: [Paraview] Cannot compile 4.1 on Ubuntu 12.04 x64 with OpenMPI 1.8.1

2014-06-19 Thread Utkarsh Ayachit
. On 31 May 2014 07:35, Victor victor.ma...@gmail.com wrote: Here it is, I hope. I never attempted to attach anything to a mailing list post so I apologize if it doesn't actually attach. On 30 May 2014 20:07, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Can you post your CMakeCache.txt

Re: [Paraview] Cannot compile 4.1 on Ubuntu 12.04 x64 with OpenMPI 1.8.1

2014-06-19 Thread Utkarsh Ayachit
that was compiled with -fPIC? Thanks, Victor On 29 May 2014 18:37, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: You'll have to recompile openmpi with -fPIC or link against a shared build of the same. On Thu, May 29, 2014 at 5:06 AM, Victor victor.ma...@gmail.com wrote: I am trying

Re: [Paraview] Reader plugin with separate server and client plugin

2014-06-17 Thread Utkarsh Ayachit
Michael, You can still build the same plugin. On windows build, just disable the parts that don't build on Windows. SInce ParaView does indeed load separate libraries for the same plugin on server and client, it will load the linux plugin with reader on the server and the panel code on Windows.

Re: [Paraview] Suddenly cannot volume render?

2014-06-16 Thread Utkarsh Ayachit
Is multi-core support enabled? That may cause the problem. To test, try running with -dr command line. Does it work? I am assuming you are not running into the same remote-rendering issue you reported earlier. But just for completeness, if you're running in client-server mode, just ensure Remote

Re: [Paraview] Suddenly cannot volume render?

2014-06-16 Thread Utkarsh Ayachit
with the graphics that is related? -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: 16 June 2014 13:09 To: Atwood, Robert (DLSLtd,RAL,SCI) Cc: ParaView Subject: Re: [Paraview] Suddenly cannot volume render? Is multi-core support enabled? That may

Re: [Paraview] Suddenly cannot volume render?

2014-06-16 Thread Utkarsh Ayachit
? Thanks -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: 16 June 2014 14:01 To: Atwood, Robert (DLSLtd,RAL,SCI) Cc: ParaView Subject: Re: [Paraview] Suddenly cannot volume render? Can you try running with -dr command line argument?Launch

Re: [Paraview] PV 4.1.0 plot over line question

2014-06-12 Thread Utkarsh Ayachit
NaN's are added for those points along the line that don't fall within any cell in the dataset. There should also be vtkValidPointMask array which will corroborate that. It's 1 at valid locations and 0 at others. On Thu, Jun 12, 2014 at 11:05 AM, Stephen Wornom stephen.wor...@inria.fr wrote: My

Re: [Paraview] FW: Paraview Legend/Colorbar Question

2014-06-11 Thread Utkarsh Ayachit
Out-of-range colors are not supported yet. For non-discrete colors, you can hack it by adding extra control points above and below the region of interest, but that's only a hack and not available for categorical/discrete colors. Utkarsh On Wed, Jun 11, 2014 at 7:52 PM, Scott, W Alan

Re: [Paraview] Client - Server , Linux -- slow dialog boxes, though the rendering seems ok?

2014-06-10 Thread Utkarsh Ayachit
Is it just the opening of the file dialog box that's slow or are there any other operations that are slow too? If it's just the dialog, then it may a because of the file system? Parallel file systems can be notoriously slow for operations like directory listings. The dialog does try to list the

Re: [Paraview] Memory explosion and strange behaviour -- Linux -- 'clip' -- 360 MB file needs 60 GB ??

2014-06-10 Thread Utkarsh Ayachit
With 'clip' I wanted to see half the volume cut away, while being able relatively easily to move that cut plane up and down. You can use the Extract Subset filter, however that does not give you an widget to play with instead you have to enter the i,j,k values to subset out. Alternatively if

[Paraview] Blog: Rendering information in Render Views

2014-06-10 Thread Utkarsh Ayachit
A short post on a new feature being introduced to ParaView -- this time to get information about the most recent render in a Render View. http://www.kitware.com/blog/home/post/686 Utkarsh ___ Powered by www.kitware.com Visit other Kitware open-source

Re: [Paraview] ParaView QT compatibility

2014-06-09 Thread Utkarsh Ayachit
No. Experimental Qt 5 support is only available in the development version of ParaView. On Mon, Jun 9, 2014 at 7:57 AM, Narasimha Prasad Baditela nbadit...@eagle.org wrote: Hi All, Can I use QT 5.3 to compile and build ParaView-4.1 libraries for windows 7 64 bit and VS2012? Thanks,

Re: [Paraview] Getting linker errors while building ParaView libraries (VS2010, QT 4.8.6, ParaView 4.1 windows7 64bit)

2014-06-09 Thread Utkarsh Ayachit
You can always build Qt from source. It's fairly straight forward, it just takes time. On Mon, Jun 9, 2014 at 7:43 AM, Narasimha Prasad Baditela nbadit...@eagle.org wrote: Hi All, I am getting following linker errors while building paraview libraries in visual studio 2010 on Windows 7 64

Re: [Paraview] Volume Data Not Visible Using Client/Server

2014-06-09 Thread Utkarsh Ayachit
I'm looking into this. I can indeed reproduce the issue that the threshold is not truely respected when rendering volumes. I'll track it down. Thanks for reporting. On Mon, Jun 2, 2014 at 12:51 PM, robert.atw...@diamond.ac.uk wrote: As soon as I tried client-server method of using paraview, I

Re: [Paraview] Volume Data Not Visible Using Client/Server

2014-06-09 Thread Utkarsh Ayachit
BTW, I've reported a bug in case you want to follow the development: http://www.paraview.org/Bug/view.php?id=14792 On Mon, Jun 9, 2014 at 3:32 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: I'm looking into this. I can indeed reproduce the issue that the threshold is not truely

Re: [Paraview] Make animation from steady state result

2014-06-07 Thread Utkarsh Ayachit
I did step 2, but step 2a ( Change the Contour By property to IntegrationTime), I do not see this option. I downloaded the PV 4.1.0 binaries, could that be the problem? No, that should not be any different for 4.1.0 or earlier versions. You do not see a Contour By widget at all on the

Re: [Paraview] Crash of pvserver using pqActiveObjects::instance()

2014-06-06 Thread Utkarsh Ayachit
pqActiveObjects is not available on the server side. It's a construct used by the client alone to keep track of what's active. Where is this call being made? In a filter/reader/writer code? That's not recommended (rather possible). Utkarsh On Thu, Jun 5, 2014 at 9:03 AM, Christian Andreas

Re: [Paraview] Help writing a Probe/Picking Plugin

2014-06-02 Thread Utkarsh Ayachit
Mind posting the XML for your filter? That will make it easier. On Mon, Jun 2, 2014 at 2:56 PM, Böttcher, Prof. Dr. Peter boettc...@kleintierklinik.uni-leipzig.de wrote: I would like to use the point widget together with the ProbeFilter to write a custom made plugin similar to the ProbeLocatoin

Re: [Paraview] Cannot compile 4.1 on Ubuntu 12.04 x64 with OpenMPI 1.8.1

2014-05-30 Thread Utkarsh Ayachit
not find out that I am wrong. Thus is there a way to force the Paraview installer to link against an alternative build that was compiled with -fPIC? Thanks, Victor On 29 May 2014 18:37, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: You'll have to recompile openmpi with -fPIC or link

Re: [Paraview] Troubelshouting opening files

2014-05-29 Thread Utkarsh Ayachit
that: connecting to the server ... an error accrued. Am 29.05.2014 um 12:36 schrieb Utkarsh Ayachit utkarsh.ayac...@kitware.com: Try renaming your settings file ~/.config/ParaView/ParaView4.1.0.ini as something else and then try starting ParaView. On Thu, May 29, 2014 at 5:34 AM, Häfele

Re: [Paraview] pvpython capability via SuperBuild

2014-05-23 Thread Utkarsh Ayachit
Philip, The superbuild is not really designed such that you can use the components it puts under its internal install directory. That install location is indeed treated as a internal sandbox where it builds all the components it will finally installs. The make install however should have

Re: [Paraview] Cell to point, and ghost cells

2014-05-20 Thread Utkarsh Ayachit
If it's a multiblock dataset, you would want to apply Merge Blocks before CellToPoint. On Tue, May 20, 2014 at 3:04 AM, Gena Bug archaero...@mail.ru wrote: Hi, Scott, Have you tried to use CleantoGrid first, before CelltoPoint? On 20.05.2014 01:42, Scott, W Alan wrote: I have a user that

Re: [Paraview] How to get version number of ParaView with Python?

2014-05-20 Thread Utkarsh Ayachit
I think we need a method on paraview.simple to get the version easily. Having to access the ProxyManager is kinda lame :). On Tue, May 20, 2014 at 11:05 AM, Andy Bauer andy.ba...@kitware.com wrote: Another suggestion instead of looking at version numbers, you may want to just check if the

Re: [Paraview] ParaView Qt5 progress

2014-05-14 Thread Utkarsh Ayachit
That's a weird error. I don't see any code in QtTesting using those methods. Seems to be coming from Qt? We have dashboards that build ParaView with Qt 5.2.1 without any problems here. Sankhesh, any ideas? Utkarsh On Tue, May 13, 2014 at 11:21 PM, Andrew Maclean andrew.amacl...@gmail.comwrote:

Re: [Paraview] Rendering bug with UInt8 data

2014-05-14 Thread Utkarsh Ayachit
A example file would be great. Thanks. On Wed, May 14, 2014 at 9:01 AM, Ethan Hereth e.a.her...@gmail.com wrote: Good day everyone, I think I have found a bug in the way Paraview renders UInt8 data. I am writing out an octree structure with some cell data associated with it. Some of the cell

Re: [Paraview] Rendering bug with UInt8 data

2014-05-14 Thread Utkarsh Ayachit
that helps. Utkarsh On Wed, May 14, 2014 at 9:39 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: A example file would be great. Thanks. On Wed, May 14, 2014 at 9:01 AM, Ethan Hereth e.a.her...@gmail.com wrote: Good day everyone, I think I have found a bug in the way Paraview renders UInt8

[Paraview] Blog: Customizing the Properties panel -- single panel or multiple tabs

2014-05-10 Thread Utkarsh Ayachit
Another day, another post for the changes soon to hit development ParaView: http://www.kitware.com/blog/home/post/673 Utkarsh ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html

Re: [Paraview] Glymph filter limit random mode

2014-05-09 Thread Utkarsh Ayachit
This is indeed a known issue: http://www.paraview.org/Bug/view.php?id=14279 We need to address it before the next release. Utkarsh On Fri, May 9, 2014 at 8:56 AM, Berk Geveci berk.gev...@kitware.com wrote: Hmmm. Looks like a bug. Can you send us a dataset? Thanks, -berk On Fri, May 9,

Re: [Paraview] Changes to color bar placement and visibility

2014-05-07 Thread Utkarsh Ayachit
on. But these two different things and should not be connected, what if need transparent colormap for volumerendering but still want opaque surfaces with this colormap? Thank you, Martin On Tue, May 6, 2014 at 2:54 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Folks, Several new

Re: [Paraview] PV 4.1.0 binary download ; unstructured mesh. reading pieces fails

2014-05-07 Thread Utkarsh Ayachit
Can you attach the original and modified pvtu file? That'll make it easier :). On Wed, May 7, 2014 at 8:03 AM, Stephen Wornom stephen.wor...@inria.frwrote: I have 64 vtu pieces listed in my data.pvtu file. I do not wish to visualize pieces 36, 48, and 49. I remove them from the data.pvtu

Re: [Paraview] Changes to color bar placement and visibility

2014-05-06 Thread Utkarsh Ayachit
Continuing with this series of blog posts, here's another one; this time covering changes to specular highlights: http://www.kitware.com/blog/home/post/671 Utkarsh On Tue, May 6, 2014 at 8:54 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Folks, Several new changes are hitting

Re: [Paraview] Exporting to Server

2014-05-05 Thread Utkarsh Ayachit
Alas, not currently. All those exports happen on the client side and hence they get saved on your desktop. Utkarsh On Mon, Apr 28, 2014 at 6:44 PM, Kenneth Montel kenneth.mon...@tafsm.org wrote: Hi, I am currently using the server--client mode to connect to a server to use Paraview 4.1.0.

Re: [Paraview] importing paraview.simple in python on mac

2014-04-16 Thread Utkarsh Ayachit
If you want to use Python27, download the ParaView-4.1.0-Darwin-64bit-Lion-Python27.dmg binary. You're using the one built forPython 2.6. Attached is a script I use to run ParaView with Python 2.6. Simply update the script to point to directories on your machine and then run python2.7 instead of

[Paraview] Changes to Settings in ParaView

2014-04-16 Thread Utkarsh Ayachit
Folks, We've been working on changing how application settings work in ParaView for the next release. Here's a blog post that talks about the UI changes: http://www.kitware.com/blog/home/post/652 Let us know if you have any feedback. The code hasn't landed in git/master yet and won't for a

Re: [Paraview] Fixing the nifti plugin

2014-04-16 Thread Utkarsh Ayachit
I am not the expert in this, but I believe the reason by Nifti cannot support volume transforms is because VTK doesn't support arbitrary transformations on ImageData -- the type of data Nifti reader produces. On Mon, Apr 14, 2014 at 7:45 PM, Richard Beare richard.be...@gmail.com wrote: Hi

Re: [Paraview] loading vtu files crashes paraview in parallel

2014-04-16 Thread Utkarsh Ayachit
For *.vtu files, ParaView reads the data on the 0th node and then partitions and redistributes it to all ranks. On Tue, Apr 15, 2014 at 7:00 PM, Mohammad Mirzadeh mirza...@gmail.com wrote: just asking this question in a different way. What happens if I load a vtu file in parallel? Can paraview

Re: [Paraview] Pvbatch 4.1.0 core dumps when loading LIC plugin on server and client

2014-04-16 Thread Utkarsh Ayachit
Burlen, This is due to a bug in the plugin loading mechanism. For now, I suggest Joe to only load the Server side plugin since that's all that's needed in pvbatch mode. Utkarsh On Wed, Apr 16, 2014 at 3:45 PM, Burlen Loring burlen.lor...@gmail.comwrote: Oh, that is a complete example. :-)

Re: [Paraview] Export vectorial images in Paraview

2014-03-26 Thread Utkarsh Ayachit
Check this post out: http://www.kitware.com/blog/home/post/508 On Tue, Mar 25, 2014 at 9:15 PM, Enrique Lizarraga-Garcia enriliz...@gmail.com wrote: Hi All, I would like to export scenes and save them as vectorial images (eps for example). I am using Paraview 3.98.1. I have read in some

Re: [Paraview] Camera Animation - Interpolate or Path

2014-03-24 Thread Utkarsh Ayachit
Alas, that could indeed be tricky. If you're comfortable with using Python, I'd suggest using the Python animation track to add script to animate the camera explicitly. Since this is just a zoom-pan-zoom, it might be easier to write the Python script. In the Animation View, you can select Python

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] PV 4.1.0 ParaView-4.1.0-Linux-64bit/bin/paraview: cannot execute binary file

2014-03-17 Thread Utkarsh Ayachit
Yes, you need to install the 32-bit compatibility libraries .e.g. http://askubuntu.com/questions/297151/how-to-run-32-bit-programs-on-a-64-bit-system Utkarsh On Mon, Mar 17, 2014 at 6:15 AM, Stephen Wornom stephen.wor...@inria.frwrote: Ben Boeckel wrote: On Sun, Mar 09, 2014 at 12:20:45

Re: [Paraview] error loading server-side plugin

2014-03-11 Thread Utkarsh Ayachit
Jean, Are you sure the plugin wasn't compiled with Qt-enabled ParaView? Did you try manually browse and load the plugin and load it? I wonder if the dialog is referring to another version of the plugin. Utkarsh On Tue, Mar 11, 2014 at 7:56 AM, Favre Jean jfa...@cscs.ch wrote: Folks I have a

<    6   7   8   9   10   11   12   13   14   15   >