[Paraview] error making ParaView

2012-04-19 Thread Celia Bremer
I'm trying to make ParaView 3.12.0 on Cygwin because I want to use it with a plugin that requires shared libraries (this one: http://web678.public1.linz.at/Drupal/?q=node/620). I get the following error: [ 9%] Built target vtkHashSource [ 9%] Building CXX object VTK/Utilities/VPIC/CMakeFiles

Re: [Paraview] error making ParaView

2012-04-20 Thread Celia Bremer
I'm trying to build Paraview with VS 2010 now, and it builds no problem - but it's not including Qt dll's. If I go to Project> Properties> Configuration Properties> VC++ Environment Variables, then the Qt bin directory appears in the long list in PATH. But once it builds, when I go to run parav

Re: [Paraview] error making ParaView

2012-04-20 Thread Celia Bremer
How do I do that? I tried putting QtGui4.dll in System32 folder and I also tried setting Project> Properties> Debugging> Environment to the Qt bin directory (and Merge Environment = Yes), but I'm still getting the same error, so I guess that's not what you meant. Also, what do you mean abou

[Paraview] visualizing a material in paraview

2012-07-20 Thread Celia Bremer
Hello, I'm new to Paraview. I have 2 questions about visualizing an atomic material from a LAMMPS simulation. 1. I got the atom coordinates in from LAMMPS into Paraview using Pizza.py. When I just import the file, I can look at it as-is using point representation. To make it look more like a

[Paraview] make Contour output into a closed surface?

2012-09-30 Thread Celia Bremer
Hello, Is it possible to make the output of the Contour filter a *closed* surface - basically, to put end caps on the isosurfaces? I can see some volume options in the display tab, but they are greyed out. Right now, I import my data as CSV, use TableToStructuredGrid filter to convert it

[Paraview] Paraview GUI suddenly won't open time series

2012-10-04 Thread Celia Bremer
Hello, When I last used PV a couple of days ago, everything was fine. But today, something happened, and PV won't open time series anymore from the GUI. It works if I load a state file. But if I go to the folder that has the file series through the open dialog, the files don't show up as a

Re: [Paraview] Paraview GUI suddenly won't open time series

2012-10-04 Thread Celia Bremer
Update! It looks like PV won't group time series if the file name is Abcd##e.moretext.vtk but it will if it is Abcd##.moretext.vtk . Which is something I can work around. But it used to group Abcd##e.moretext.vtk into a series until today. ___

[Paraview] Gaussian splatter filter

2012-10-08 Thread Celia Bremer
Hello, I have point coordinates of a bunch of atoms and I'm trying to visualize the pore space - i.e., the volume that's a certain distance away from the point coordinates. As suggested here, I've been using Gaussian splatter, then isovolume, and choosing thresholds for isovolume by eye to fi

[Paraview] can't use saved states with Gaussian Resampling filter

2012-10-18 Thread Celia Bremer
Hello, I have a problem with the Gaussian resampling filter that happens only when I load a state. My pipeline is data (polydata, points on an unstructured grid) -> Gaussian resampling filter -> IsoVolume. If I'm starting from scratch, get the data in via "open", and then apply the filters, I

[Paraview] how to select data for Plot Variables over Time?

2012-11-03 Thread Celia Bremer
Hello, I'm trying to calculate volumes that I'm generating, how they change over time. To get the volume, I do Polydata -> Gaussian Resampling -> IsoVolume -> Integrate Variables, Cell Data, and the results are pretty good. I want to get this data for every timestep, e.g. in a table that I ca

[Paraview] help with a simple script?

2012-11-15 Thread Celia Bremer
Hello, I want to write a script that would open a saved state, select one of the objects, and save data from that object as a VTI file series. I can do this with the GUI, but it takes many hours to do this to each file and I have about 60 of them, so a script would be nice since I could loop

Re: [Paraview] help with a simple script?

2012-11-15 Thread Celia Bremer
do it > once and save that. > > Then it's easy to edit the resulting script to loop over the files you need. > > Tim > > - Original Message - > From: "Celia Bremer" > To: paraview@paraview.org > Sent: Thursday, November 15, 2012 7:20:12 PM > Sub

Re: [Paraview] help with a simple script?

2012-11-16 Thread Celia Bremer
w.paraview.org/Wiki/ParaView/Python_Scripting#Writing_Data_Files_.28ParaView_3.9_or_later.29 > > And maybe, you might be interested in looking at some other examples > here: http://www.paraview.org/Wiki/Python_recipes > > Hope that helps, > > Seb > > > On Thu, Nov 15

Re: [Paraview] help with a simple script?

2012-11-16 Thread Celia Bremer
Thank you. That worked but I still have problems: as soon as the OpenGL window opens to render, it freezes, even if all the objects are hidden. I think I'll have to do it from the Python shell from PV instead. I have just one more question. When I load a state using LoadState(), that automatic

Re: [Paraview] help with a simple script?

2012-11-16 Thread Celia Bremer
l.com > CC: dave.dema...@kitware.com; paraview@paraview.org > > Hi Celia, > > I'm not sure to follow what you mean by "it freezes" and "new layout window". > > When you render something from Python, the window is not interactive, > so may

Re: [Paraview] help with a simple script?

2012-11-20 Thread Celia Bremer
ut I think I have something for you. > The following method should clear the view/layouts. > > Seb > > $ def clearLayout(): > ... pxm = servermanager.ProxyManager() > > ... for layout in GetLayouts(): > > ... pxm.UnRegisterProxy("layouts", layout[0], GetLayou

Re: [Paraview] help with a simple script?

2012-11-20 Thread Celia Bremer
ing is that you don't have any object in your layout. > > {('ViewLayout1', '2178'):>>>HERE<<< , ('ViewLayout1', '275'):>>>HERE<<< } > > This create the issue that you are seeing. Although, what you/we try t

Re: [Paraview] help with a simple script?

2012-11-21 Thread Celia Bremer
.com > > The loop that i made should get rid of all the tab. None should remain. > > On Nov 20, 2012, at 23:08, Celia Bremer wrote: > >> >> Seb, >> >> Sorry about that. It works meaning the first tab gets closed, but then when >> I try to load the n

[Paraview] how to access output of the Integrate Variables filter in Python?

2012-12-17 Thread Celia Bremer
Hello, I want to calculate the volume of an object and then do some calculations in Python based on the result. The GUI has the output of Integrate Variables as a table, and volume is one of the table cells. How do I access the value of that table cell through Python? Thank you! Celia