[Paraview] copy-paste (or clone/dublicate) a filter

2013-11-18 Thread Martina Schäfer
Hi all, I'd like to copy-paste (or clone/dublicate) a filter in paraview, i.e. applying exactly the same filter on two different sources without having to redefine the filter. For the moment I'm doing that via save-state/load-state and adjusting each time the input file (or via change input

[Paraview] Selection in Paraview/Web 4.0

2013-11-18 Thread Albrecht Kyrieleis
Hi, I am using Paraviewweb-Linux-64bit-glibc-2.3.6-NIGHTLY and use a custom class to implement some functions. I can take a trace in standalone Paraview and copy the Python code into my functions which works well for several actions. But I want to be able to make a selection (initially on the

[Paraview] Slice widget in Paraview/Web

2013-11-18 Thread Albrecht Kyrieleis
I am using Paraviewweb-Linux-64bit-glibc-2.3.6-NIGHTLY and use a custom class to implement some functions. I can take a trace in standalone Paraview and copy the Python code into my functions which works well for several actions. How can I enable the slicing widget to be visible in ParaviewWeb.

Re: [Paraview] copy-paste (or clone/dublicate) a filter

2013-11-18 Thread Samuel Key
Martina, Regarding your question, I do not do this routinely, but it looks to me that if you hold down the Ctrl-key and select two datum two sets and then apply the Group Datasets filter you get a single combined datum stream to which can apply the same filter to both using a single common

Re: [Paraview] Slice widget in Paraview/Web

2013-11-18 Thread Sebastien Jourdain
You may find some hints on how to do that in the following Python file: http://www.paraview.org/gitweb?p=ParaViewWeb.git;a=blob_plain;f=ParaViewAdapter/pwsimple.py;hb=HEAD Seb On Mon, Nov 18, 2013 at 4:05 AM, Albrecht Kyrieleis akyriel...@gmail.comwrote: I am using

Re: [Paraview] copy-paste (or , clone/dublicate)

2013-11-18 Thread Martina Schäfer
Hi Sam, I wasn't aware of the Group Dataset Filter, you are right in the case of Cliping or Sliceing it's doing sort of the job (eventhough I haven't managed to get the translation right), but already for the Isolines or PlotOnIntersectionCurve it gets difficult. (And I have actually not only

Re: [Paraview] copy-paste (or , clone/dublicate)

2013-11-18 Thread Samuel Key
Martina, Given that you have 20+/- datum sets (and one geometry?), you might be able to construct a pseudo time sequence by labeling the files: myjob001.vtu, myjob002.vtu, myjob003.vtu, ... (Note. The file-ending *.vtu refers to an XML-formatted datum set) ParaView will assume they are a

Re: [Paraview] Got a 404 error when test LiveArticles sample

2013-11-18 Thread Junyi Han
Hi Seb, I tried to make the file_loader module can push new data to clients. But I always get an error like: exceptions.AttributeError: _FileOpener instance has no attribute 'pubHandlers'. Do you have any ideas about this? thanks! 2013/11/15 Sebastien Jourdain sebastien.jourd...@kitware.com

Re: [Paraview] copy-paste (or , clone/dublicate)

2013-11-18 Thread Felipe Bordeu Weldt
the other way around is to create a custom filter to group all your filter into one and expose only the desired properties. Felipe Le 18 nov. 2013 à 19:20, Samuel Key samuel...@bresnan.net a écrit : Martina, Given that you have 20+/- datum sets (and one geometry?), you might be able to

Re: [Paraview] Got a 404 error when test LiveArticles sample

2013-11-18 Thread Sebastien Jourdain
I'm not sure to understand what you did and what you tried to do. Seb On Mon, Nov 18, 2013 at 12:33 PM, Junyi Han demonmer...@gmail.com wrote: Hi Seb, I tried to make the file_loader module can push new data to clients. But I always get an error like: exceptions.AttributeError:

[Paraview] Saving files

2013-11-18 Thread Jesse Samluk
Hey - maybe I'll get a response this time, because the last time I sent something, I didn't! I am new to ParaView. I have loaded a .vtk file and state file, and someone was helping me with Paraveiw by editing the properties in the Pipeline Browser. How can I save all the information I see in

Re: [Paraview] [EXTERNAL] Saving files

2013-11-18 Thread Scott, W Alan
File/ Save State? Is this what you mean? Then, File/ Load State? Also, although many of the good folks on this list volunteer their time and knowledge, sometimes they/we get busy with work and life, and miss an e-mail. If you don't get an answer, just ping the list again. And welcome to

Re: [Paraview] [EXTERNAL] Saving files

2013-11-18 Thread Jesse Samluk
No Alan (and thanks for the reply btw). But then again I'm a noob at ParaView, so go easy on me. So, I loaded in a .vtk file from a program a ran, in combination with a state file that was given to me. That resulted in an awesome image. However, the person who provided me with the state file

Re: [Paraview] [EXTERNAL] Saving files

2013-11-18 Thread Moreland, Kenneth
Jesse, I think a state file is the closest thing to what you are asking for. As you observed, it captures all of the readers and objects you are using along with all the parameters so that you can recreate them. -Ken Sent from my iPad so blame autocorrect. On Nov 18, 2013, at 5:27 PM,

Re: [Paraview] [EXTERNAL] Saving files

2013-11-18 Thread Scott, W Alan
What Ken said. :-) If you want to only save the image (which you don't), that is another command file/ save screenshot. To save a movie, file/ save animation. Alan -Original Message- From: Moreland, Kenneth Sent: Monday, November 18, 2013 5:44 PM To: Jesse Samluk Cc: Scott, W Alan;

Re: [Paraview] [EXTERNAL] Saving files

2013-11-18 Thread Jesse Samluk
Why don't you want to save the animation? On Nov 18, 2013, at 7:47 PM, Scott, W Alan wasc...@sandia.gov wrote: What Ken said. :-) If you want to only save the image (which you don't), that is another command file/ save screenshot. To save a movie, file/ save animation. Alan

Re: [Paraview] [EXTERNAL] Saving files

2013-11-18 Thread Scott, W Alan
If all you want is a movie, yep - you want an animation. Alan -Original Message- From: Jesse Samluk [mailto:seven...@udel.edu] Sent: Monday, November 18, 2013 5:57 PM To: Scott, W Alan Cc: Moreland, Kenneth; paraview@paraview.org Subject: Re: [Paraview] [EXTERNAL] Saving files Why

Re: [Paraview] [EXTERNAL] Save Geometry form Python Shell

2013-11-18 Thread Cook, Rich
When I did this for myself in my recent exploration my recollection is it's no help. However, I did discover this: exporters=servermanager.createModule(exporters) view = GetActiveView() for ts in range(12): print rendering timestep, ts sys.stdout.flush() RenderView2.ViewTime = 10.0

Re: [Paraview] [EXTERNAL] why when contouring by density does a color plot of density show more than one color?

2013-11-18 Thread Cook, Rich
I did notice that. It does not allow me to color by point density. I don't think the values really vary by that much near the isosurface, but I might be wrong. On Nov 18, 2013, at 4:58 PM, Scott, W Alan wasc...@sandia.govmailto:wasc...@sandia.gov wrote: Rich, The vast majority of the

Re: [Paraview] [EXTERNAL] Saving files

2013-11-18 Thread Jesse Samluk
What about Save Screenshot? Same thing? On Nov 18, 2013, at 8:01 PM, Scott, W Alan wasc...@sandia.gov wrote: If all you want is a movie, yep - you want an animation. Alan -Original Message- From: Jesse Samluk [mailto:seven...@udel.edu] Sent: Monday, November 18, 2013 5:57 PM

Re: [Paraview] [EXTERNAL] why when contouring by density does a color plot of density show more than one color?

2013-11-18 Thread Moreland, Kenneth
I believe Alan is right. The cell to point operation performs something of a low pass filtering of the data, meaning that extrema get smoothed out. It is entirely possible that is happening here. It is strange that you cannot color by the point density. I would expect that to be output by the

Re: [Paraview] [EXTERNAL] Saving files

2013-11-18 Thread Moreland, Kenneth
If your data has time, save animation will save out a movie file or sequence of movie frames. Save screenshot will save just one image. -Ken Sent from my iPad so blame autocorrect. On Nov 18, 2013, at 6:07 PM, Jesse Samluk seven...@udel.edu wrote: What about Save Screenshot? Same thing?

Re: [Paraview] Unable to change timesteps in miranda data set!!!

2013-11-18 Thread Cook, Rich
Hi, sorry it's 10.8.5 Did not understand your second + sign. Did you mean Have not? On Nov 17, 2013, at 8:48 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.commailto:utkarsh.ayac...@kitware.com wrote: Rich, A couple of questions: + What OsX version is this? + Have been able to reproduce the

Re: [Paraview] [EXTERNAL] why when contouring by density does a color plot of density show more than one color?

2013-11-18 Thread Cook, Rich
I agree -- even though the coloring by point density should be boring, it should also be possible. -- Rich On Nov 18, 2013, at 5:39 PM, Moreland, Kenneth kmo...@sandia.govmailto:kmo...@sandia.gov wrote: I believe Alan is right. The cell to point operation performs something of a low pass

Re: [Paraview] [EXTERNAL] Unable to change timesteps in miranda data set!!!

2013-11-18 Thread Cook, Rich
http://paraview.org/Bug/view.php?id=14413 On Nov 15, 2013, at 6:42 PM, Scott, W Alan wasc...@sandia.gov wrote: http://paraview.org/Bug/my_view_page.php From: Cook, Rich [mailto:coo...@llnl.gov] Sent: Friday, November 15, 2013 6:45 PM To: Scott, W Alan Cc: paraview@paraview.org Subject: Re:

Re: [Paraview] Unable to change timesteps in miranda data set!!!

2013-11-18 Thread Utkarsh Ayachit
Oops. I meant 'have you been able to ?' Utkarsh On Nov 18, 2013, at 6:41 PM, Cook, Rich coo...@llnl.gov wrote: Hi, sorry it's 10.8.5 Did not understand your second + sign. Did you mean Have not? On Nov 17, 2013, at 8:48 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: