Re: [Paraview] Grid is shifted in different dimensions

2012-02-27 Thread Andy Bauer
; ** > Andy, > > Please find attached my data. > I suspect there might be something wrong with my way of writing VTK files. > Can you confirm this file is ok or not? > It is desirable to avoid my own filter since I'm not familiar with python > and ParaView filters. > &

Re: [Paraview] Grid is shifted in different dimensions

2012-02-27 Thread Andy Bauer
It looks like your cell data array that you're coloring by is not getting created correctly. Can you share the data set? If this is really your data though and you want to change it then you'll either have to write your own filter or use the python programmable filter to make the adjustment. And

Re: [Paraview] Python scripts and exit

2012-02-21 Thread Andy Bauer
That worked for me for "bin/pvbatch ". I did get 2 debug leak warnings but no problems exiting. If I comment out exit(), I don't get the leaks. When I ran in parallel I get similar behavior with respect to using exit(). I do have to use the -sym flag (mpirun -np X bin/pvbatch -sym ) though with

Re: [Paraview] ANN: ParaView 3.14, Release Candidate 2 Available

2012-02-10 Thread Andy Bauer
+1 for showing the total memory usage per node/machine. When I looked at the one in 3.14 I was thinking that it would be nice to know that information for all processes sharing the same memory. On Fri, Feb 10, 2012 at 2:11 PM, Burlen Loring wrote: > Great! let me know if there is anything I can

Re: [Paraview] reading netcdf files into paraview

2012-02-07 Thread Andy Bauer
Could you include the output from "ncdump -h" for your file? The problem is that while NetCDF files are supposed to be self-describing, the information still needs to be interpreted and there are quite a few conventions so it's not straightforward how to interpret an arbitrary NetCDF file. I woul

Re: [Paraview] using ParaView for in-situ visualization

2012-02-07 Thread Andy Bauer
luster to a viz cluster for the user to interact with the "current" result. This will get done over the network and once the data has been passed to the viz cluster, the compute cluster can continue on with simulation computations, if that's what the user desires. > > Thanks,

Re: [Paraview] using ParaView for in-situ visualization

2012-01-18 Thread Andy Bauer
The current main wiki page for coprocessing with ParaView is at http://paraview.org/Wiki/CoProcessing. In there it has links to 2 examples, a C++ driven example and a python driven example. You were looking at the C++ example. There's also a powerpoint presentation and some more code examples at

Re: [Paraview] Unreclaimed memory in coprocessing? (PV 3.12.0 and git-master)

2012-01-10 Thread Andy Bauer
problem since rather large arrays are probably being allocated to for the field data as well as the opengl arrays (turning on immediate mode rendering would help with that but I'm not sure how to do that through the python but maybe someone else does). Andy On Tue, Jan 10, 2012 at 12:36 PM, An

Re: [Paraview] PV 3.12.0 coprocessing problem

2012-01-10 Thread Andy Bauer
Hi John, Glad you got the bug fixed. As far as I can tell, ParaView has now been bug-free for 3 years so I knew it must have been with your code :) I can't say for sure but I would think that you'd want to add in the vtkGhostLevel array. The trivial producer that's used to inject the data objec

Re: [Paraview] PV 3.12.0 coprocessing problem

2012-01-02 Thread Andy Bauer
output I can see, but on windows, I see nothing from them. No idea why, but > it’d help debugging if I knew. > > ** ** > > *From:* Andy Bauer [mailto:andy.ba...@kitware.com] > *Sent:* 02 January 2012 22:35 > > *To:* Biddiscombe, John A. > *Cc:* paraview@paraview.org > *Subject:* Re: [Pa

Re: [Paraview] PV 3.12.0 coprocessing problem

2012-01-02 Thread Andy Bauer
I made a mistake. That reduced-1.py script doesn't work with that sha but does work with an older version. For that sha you'll need to comment out the lines with HeadPose and WandPose. Andy On Mon, Jan 2, 2012 at 4:16 PM, Andy Bauer wrote: > Happy New Year John, > > That b

Re: [Paraview] PV 3.12.0 coprocessing problem

2012-01-02 Thread Andy Bauer
iewProxy::CaptureWindowInternal(int > magnification) Line 875 C++ > > vtkPVServerManager.dll!vtkSMViewProxy::CaptureWindow(int > magnification) Line 268 + 0x20 bytesC++ > > vtkPVServerManager.dll!vtkSMViewProxy::WriteImage

Re: [Paraview] script for moving a sphere

2012-01-01 Thread Andy Bauer
On Sun, Jan 1, 2012 at 5:21 PM, Andy Bauer wrote: > Hi Rafael, > > Please respond to the list so that everyone can participate in the > conversation. > > Setting the sphere resolution is really a two step process since there is > both a phi and theta resolution for it. Yo

Re: [Paraview] script for moving a sphere

2011-12-31 Thread Andy Bauer
You can try creating a sphere source and then use the animation view to set the z-value property of the sphere to change with time. The link for more information on that is at http://paraview.org/Wiki/ParaView/Users_Guide/Animation. The following python script is a bit long and has extra stuff in

Re: [Paraview] PV 3.12.0 coprocessing problem

2011-12-21 Thread Andy Bauer
d a lot more filters, this has most of them stripped > out and just a contour left. And yes, it is possible that some processes > have no points.**** > > ** ** > > JB > > ** ** > > *From:* Andy Bauer [mailto:andy.ba...@kitware.com] > *Sent:* 21 December 2011 19:1

Re: [Paraview] PV 3.12.0 coprocessing problem

2011-12-21 Thread Andy Bauer
Hi John, There were a couple of issues when saving images. One was for saving charts and maybe 2d views. The other one was for when some processes didn't have any points or cells. Looking at your stack traces I don't think it's the latter since that would fail in the python script and give a wa

Re: [Paraview] PV 3.12.0 coprocessing problem when using multiple filters

2011-12-20 Thread Andy Bauer
Hi Takuya, This issue has been fixed. We did a slightly different fix than yours so that we could avoid the MPI communication. The commit SHA is 135ed11151e547ff54fbb373d686898e40cc3dec. Thanks for the bug report. Andy On Tue, Dec 6, 2011 at 4:05 PM, Andy Bauer wrote: > Hi Tak

Re: [Paraview] PythonScriptCoProcessingExample mpirun Problem

2011-12-07 Thread Andy Bauer
2.py" > 373: Test timeout computed to be: 1500 > 373: Initializing MPI. > 373: Initializing MPI. > 373: Finished run with 0 errors. > 373: Finished run with 0 errors. > 2/2 Test #373: PCoProcessingPythonScriptExample ... Passed1.99 sec > > The following tests passed: >

Re: [Paraview] PV 3.12.0 coprocessing problem when using multiple filters

2011-12-06 Thread Andy Bauer
t; + controller->Broadcast(data, len, 0); > + vtkClientServerStream stream; > + stream.SetData(data, len); > + info->CopyFromStream(&stream); > + delete [] data; > + } > +} > + > return true; > } > > > // > > Fro

Re: [Paraview] PythonScriptCoProcessingExample mpirun Problem

2011-12-06 Thread Andy Bauer
Hi Marek, I'm a bit confused. Where are you getting your CoProcessing executable from? If I run the coprocessing library tests I don't see any failures on my machine and they're running in parallel. Could you send me the results of doing "ctest -V -R CoProcessing" on your machine? There should

Re: [Paraview] ParaViewWeb & TomCat

2011-11-30 Thread Andy Bauer
L, JSON, javascirpt, SVG, and range of image > formats. I'm attaching a pdf of a simple IPython notebook that has an > expression returning a PNG DisplayObject at the very end. > > In my case, the python engines are running MPI and solve a PDE in > parallel. The data structures for

Re: [Paraview] PV 3.12.0 coprocessing problem when using multiple filters

2011-11-13 Thread Andy Bauer
t; > > That's right, if the output has no point or cell data, then assigning the > > ColorArrayName property will throw an exception. It's kind of an > annoying > > behavior. So I'll work around this by writing code such as: > > > > if my

Re: [Paraview] PV 3.12.0 coprocessing problem when using multiple filters

2011-11-11 Thread Andy Bauer
Another thing to check is if there are any cells in the output from the second slice filter. In the ParaView GUI, i started with the mandelbrot source and then created a slice filter that didn't intersect the domain. After that there wasn't any point or cell data in the output. Andy 2011/11/11 T

Re: [Paraview] INPUT_REQUIRED_DATA_TYPE()

2011-11-11 Thread Andy Bauer
You should be able to do: int MyFilter::FillInputPortInformation(int port, vtkInformation* info) { if (port == 0) { info->Remove(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE()); info->Append(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkUnstructur

Re: [Paraview] Programmable filter issue with modifying grid data

2011-10-27 Thread Andy Bauer
In general you can't assume that extent[0] = extent[2] = extent[4] = 0. Maybe it is for your data sets but it is not required. I didn't fully go through your code to debug but I am working on a filter that does a similar operation in either the x, y, or z topological direction. It also works in p

Re: [Paraview] changing the name of legend of xyplot

2011-10-18 Thread Andy Bauer
In the GUI, if you click on Edit View Options (at the top left of the view window) you can do it there. Andy On Tue, Oct 18, 2011 at 7:42 PM, Ali Rostai wrote: > Hi, > > I like the change the names that appear for the legend in xyplots, but I > can not find > how to do it. How can I do this? >

Re: [Paraview] independent colorbar range in different views of same session?

2011-10-07 Thread Andy Bauer
Probably the simplest thing to do is to use the Calculator filter to copy the data to a different array. You could use the Python Calculator to rename the array (uncheck the Copy Arrays checkbox -- this will get rid of all other arrays though). Andy On Fri, Jul 1, 2011 at 2:29 PM, Guzas, Emily

Re: [Paraview] Accessing OpenGL from standard VTK filter

2011-10-05 Thread Andy Bauer
access OpenGL directly > however, like the LIC code. But I could do things another way...I so see > classes related to shaders (vtkShader) and setting up the view volume > (vtkPersp*), so those classes may come in handy > > Sohail > > ------ > *F

Re: [Paraview] Accessing OpenGL from standard VTK filter

2011-10-05 Thread Andy Bauer
Are you hoping that this will make its way into the main VTK repo or is this personal code that you plan on maintaining yourself and plan on linking with VTK? There are people that know more about this than me but this sounds like a bad idea for the main VTK repo. A lot of the OpenGL specific cal

Re: [Paraview] Plot over line CSV export python script not working

2011-09-30 Thread Andy Bauer
araview >> output doesn't show any output at all (except for the usual a complain about >> the qt4 that is not related). >> >> Do you see any evident problem in the script syntax in the writer section? >> For example references to the wrong source, etc? >> &

Re: [Paraview] WriteImage in the background

2011-09-29 Thread Andy Bauer
As far as I know, using mesa and offscreen rendering is the only way to do that. Information on that is available at http://www.vtk.org/Wiki/ParaView/Users_Guide/Parallel_Rendering#Offscreen_Software_Rendering_via_OSMesa Andy On Thu, Sep 29, 2011 at 11:06 AM, Rick Muller wrote: > I'm currently

Re: [Paraview] Plot over line CSV export python script not working

2011-09-29 Thread Andy Bauer
If you're running the python script in the paraview gui sometimes the messages are printed out to the python shell. What version of paraview are you using? I'm running paraview from the head of the repo. The output I get from the OutputMessages window is: ERROR: In /home/acbaue

Re: [Paraview] line chart display bug when loading state file

2011-09-28 Thread Andy Bauer
Hi Paul, I'm pretty sure that this is a bug that also causes problems with coprocessing. I talked to Pat Marion and he said he was going to try and fix it which should also fix your problem. Pat, what's the status of http://paraview.org/Bug/view.php?id=12607 Thanks, Andy On Wed, Sep 28, 2011 a

Re: [Paraview] Texture Coordinates in python calculator

2011-09-27 Thread Andy Bauer
For reference, the normal calculator currently doesn't allow creating 2 component arrays. If iHat, jHat, and/or kHat are specified in the expression it makes the resulting array a 3 component array. On Tue, Sep 27, 2011 at 9:57 AM, David E DeMarle wrote: > On Thu, Sep 22, 2011 at 2:32 PM, Felipe

Re: [Paraview] how to get all the arrays associated with Point and Cell data in a filter

2011-09-13 Thread Andy Bauer
This sounds quite similar to what is going on in the vtkThreshold filter. You'll probably want to look at that implementation. Andy On Tue, Sep 13, 2011 at 5:59 PM, wrote: > Hi, > > I am writing a custom filter that takes polydata as input and outputs > polydata > that contains a subset of the

Re: [Paraview] multiple inputs for python calculator filter

2011-09-12 Thread Andy Bauer
I think this is a good idea and would be a useful example. I'm not sure how difficult it is to create an account to modify that page but if you want to put together an example I'll make sure it gets added to the wiki. Andy On Mon, Sep 12, 2011 at 12:11 AM, Brandon, Mark wrote: > I have been exp

Re: [Paraview] PV 3.10.1 computing vorticity from vector field

2011-09-03 Thread Andy Bauer
, Stephen Wornom wrote: > Andy Bauer wrote: > >> For computing vorticity, depending on the grid type you can also use the >> Gradient of Unstructured Datasets filter. There is an option to compute >> vorticity for 3 component arrays (i.e. velocity).It works on both point >&

Re: [Paraview] Display crash running paraview with low-end graphics card

2011-09-02 Thread Andy Bauer
The options I would try are using mesa or go to Edit->Settings->Render View and check Use Immediate Mode Rendering to on. Both of these are normally slower but if it's a memory allocation problem these may get you past that. Andy On Fri, Sep 2, 2011 at 6:02 AM, kit wrote: > ** > Hi All, > > Whe

Re: [Paraview] visibility of the stream tracer

2011-09-01 Thread Andy Bauer
I tried it with my own source and didn't have any problems. Can you give more details and maybe share your dataset? Andy On Thu, Sep 1, 2011 at 6:29 PM, Leonie Callies wrote: > Hi, > > I have encountered two strange behaviors of ParaView both concerning the > stream tracer. I wanted the streaml

Re: [Paraview] Comparative view and wind blade reader

2011-08-09 Thread Andy Bauer
I forgot to mention that that one only has 2 time steps. I have a sample one with 4 time steps too if you need it. On Tue, Aug 9, 2011 at 2:28 PM, Andy Bauer wrote: > Yes, it's in /Data/WindBladeReader. Select the > test1_topo.wind file. > > Andy > > > On Tue, Aug

Re: [Paraview] Comparative view and wind blade reader

2011-08-09 Thread Andy Bauer
Yes, it's in /Data/WindBladeReader. Select the test1_topo.wind file. Andy On Tue, Aug 9, 2011 at 2:06 PM, Sohail Shafii wrote: > I believe Andy should have at least one lying around. > > Sohail > > -- > *From:* Utkarsh Ayachit > *To:* Sohail Shafii > *Cc:* "paraview

Re: [Paraview] N:M redistribution and coprocessing

2011-07-28 Thread Andy Bauer
Hi, I've built and run coprocessing on a BlueGene P. There are some scripts available at https://github.com/patmarion/ParaViewAutoBuild/branches for building it on the P. You probably want the ibmbgp-pv-3.10.1 branch from that. From there, edit build_options.sh and change this line to indicate

Re: [Paraview] best strategy for multi-block data?

2011-07-26 Thread Andy Bauer
ted in this on the > past, I relied exclusively on email correspondence in order to get my > output writer correct. > > Thanks > > > > > On Mon, Jul 25, 2011 at 1:15 PM, Andy Bauer > wrote: > > I think the best way to proceed would be to use the extract blocks filt

Re: [Paraview] best strategy for multi-block data?

2011-07-25 Thread Andy Bauer
I think the best way to proceed would be to use the extract blocks filter to extract all of the blocks that have the desired fields for your calculator. You may want to group the unstructured grids with the same field data into a vtkMultiPieceDataSet to make it easier to extract the blocks that you

Re: [Paraview] Interesting bug when using windbladereader and multiple time steps

2011-07-13 Thread Andy Bauer
Yes, the master branch of the git repo. Andy On Wed, Jul 13, 2011 at 6:36 PM, Sohail Shafii wrote: > By "current development version" are you referring to the master branch? > > Sohail > > > --- On *Wed, 7/13/11, Andy Bauer * wrote: > > > From: Andy Bauer

Re: [Paraview] Interesting bug when using windbladereader and multiple time steps

2011-07-13 Thread Andy Bauer
t; with 2 processes or above. This doesn't happen if I load in a *foam file > (i.e. openFOAM file); only with .wind and the most up-to-date release > version of ParaView as opposed to 3.8.0. > > > Sohail > > --- On *Fri, 7/8/11, Andy Bauer * wrote: > > > From: An

Re: [Paraview] Interesting bug when using windbladereader and multiple time steps

2011-07-13 Thread Andy Bauer
. Andy On Fri, Jul 8, 2011 at 1:22 PM, Andy Bauer wrote: > 3 or 4 time steps should be fine. > > Thanks, > Andy > > > On Fri, Jul 8, 2011 at 1:18 PM, Sohail Shafii wrote: > >> Thank you for looking into this. I only modified the windbladereader to >> handle a

Re: [Paraview] Interesting bug when using windbladereader and multiple time steps

2011-07-12 Thread Andy Bauer
enFOAM file); only with .wind and the most up-to-date release > version of ParaView as opposed to 3.8.0. > > > Sohail > > --- On *Fri, 7/8/11, Andy Bauer * wrote: > > > From: Andy Bauer > Subject: Re: [Paraview] Interesting bug when using windbladereader and > mul

Re: [Paraview] Interesting bug when using windbladereader and multiple time steps

2011-07-08 Thread Andy Bauer
r to what you are > using now, actually), problem is my DSL connection has a poor upload. Would > three or four timesteps do? > > Sohail > > > --- On *Fri, 7/8/11, Andy Bauer * wrote: > > > From: Andy Bauer > Subject: Re: [Paraview] Interesting bug when using

Re: [Paraview] Interesting bug when using windbladereader and multiple time steps

2011-07-08 Thread Andy Bauer
away. Andy On Thu, Jul 7, 2011 at 10:28 PM, Sohail Shafii wrote: > I believe that data set went you (related to the updates I made for the > wind blade reader)...the one with ten timesteps, should do the trick. Do > you still have it? > > Sohail > > --- On *Thu, 7/7/11,

Re: [Paraview] Interesting bug when using windbladereader and multiple time steps

2011-07-07 Thread Andy Bauer
I'll take a look at it. I may need a time dependent data set if I can't figure it out though. Andy On Thu, Jul 7, 2011 at 9:13 PM, Sohail Shafii wrote: > Hi, > > I've noticed a bug when using the windbladereader; the portion of the code > that reads the blade file is one timestep behind the cod

Re: [Paraview] Parallel MB reader

2011-06-28 Thread Andy Bauer
If I understand you correctly I think you need to do 2. Each process should have the same multiblock structure and will just not contain a data set for the leaves that are assigned to a different process. Check out http://www.vtk.org/doc/nightly/html/classvtkMultiBlockDataSet.html#details HTH, A

Re: [Paraview] Python builds from source

2011-06-21 Thread Andy Bauer
On my Ubuntu machine I'm using the default installed python which is version 2.6.6. I think 2.6 is sufficient. I don't have any extra flags beyond turning on PARAVIEW_ENABLE_PYTHON. Andy On Mon, Jun 20, 2011 at 5:14 PM, Rakesh Hammond < rakesh.hamm...@googlemail.com> wrote: > Hi, > > I am havi

Re: [Paraview] PV 3.10.1 integration over a surface

2011-06-19 Thread Andy Bauer
te surface normals filters? On Sun, Jun 19, 2011 at 12:52 PM, Stephen Wornom wrote: > Andy Bauer wrote: > >> One way is to use the calculator filter to multiply the pressure by the >> normal to get force per unit area on the cylinder. Then you can use the >> integrate variable

Re: [Paraview] PV 3.10.1 integration over a surface

2011-06-19 Thread Andy Bauer
One way is to use the calculator filter to multiply the pressure by the normal to get force per unit area on the cylinder. Then you can use the integrate variables filter to get the total force on it. If you don't have normals on your cylinder, you can use the generate surface normals filter but

Re: [Paraview] PV 3.10.1 using python to slice and integrate variable

2011-06-16 Thread Andy Bauer
You could interactively run through the scripts with pvpython and then use dir() and help() to figure out how to write out the information properly. You'll probably need to do something like: SetActiveSource() writer = XMLPolyDataWriter() # most writers take off the vtk part writer.FileName= "file.

Re: [Paraview] PV 3.10.1 computing vorticity from vector field

2011-06-02 Thread Andy Bauer
For computing vorticity, depending on the grid type you can also use the Gradient of Unstructured Datasets filter. There is an option to compute vorticity for 3 component arrays (i.e. velocity).It works on both point data and cell data and the output will be the same type of field data. I'm a

Re: [Paraview] Possible NetCDF conflict?

2011-05-26 Thread Andy Bauer
Hi Adriano, I wrote the vtkNetCDFCAMReader and I'm using the C++ API to NetCDF in that reader. The NcVar::name() method is used in that code. Instead of using the standard netcdf c++ header file you can include vtk_netcdfcpp.h instead. A couple of finer points that may or may not affect you: 1

Re: [Paraview] Non parallel filters under MPI

2011-05-24 Thread Andy Bauer
It's difficult to figure out what you're trying to do as I'm not sure what a seed connectivity filter should do. Is the algorithm dependent on the input grid? In general the grid will be partitioned across multiple processes. Andy 2011/5/24 Jorge Gerardo Peña Pastor > Hi, > > I'm working on a

Re: [Paraview] Displaying netcdf data

2011-05-21 Thread Andy Bauer
Hi, There are several NetCDF readers in ParaView. The problem is that NetCDF isn't a single file format but a method/library for storing and retrieving data. A convention must be specified to figure out how to interpret that data. What convention is your file? You can do "ncdump -h " to see a b

Re: [Paraview] Hiding Cells

2011-05-13 Thread Andy Bauer
Have you tried the threshold filter to remove the lines for you? On Fri, May 13, 2011 at 2:41 PM, Brian C. Panneton (CONTR) < brian.c.panneton@us.army.mil> wrote: > I have a reader plugin that has a group of VTK_LINES that exist between > points. The color of these lines represent statistical

Re: [Paraview] [Paraview-developers] ParaView Co-Processing docs

2011-05-06 Thread Andy Bauer
isite for co-processing development? As I > said, I'm newbie in this field... > > Grzegorz > -- > *From:* Andy Bauer [andy.ba...@kitware.com] > *Sent:* Friday, May 06, 2011 15:28 > *To:* Grzegorz Karch > *Cc:* paraview-develop...@paraview.org >

Re: [Paraview] Single Reader to Multiple Views

2011-05-04 Thread Andy Bauer
I would think that it's possible but would take a bit of programming to work properly. If I were to try that I'd first look at the SLAC reader plugin as that does something fairly similar. Somebody else can probably give you better direction but the SLAC reader is a decent start. Andy On Wed, M

Re: [Paraview] loading nc formatted data

2011-04-20 Thread Andy Bauer
n you point me to the data file which is proper or a > screen shot of a properly rendered vis of the CF convention file? > > thank you very much > -simon > > > > > > On Wed, Mar 23, 2011 at 10:47 PM, Andy Bauer wrote: > >> FYI: I will take care of the wrong do

Re: [Paraview] error after last git update: protobuf

2011-04-19 Thread Andy Bauer
Probably need to initialize it: git submodule update --init On Tue, Apr 19, 2011 at 11:01 AM, Sebastien Jourdain < sebastien.jourd...@kitware.com> wrote: > Did you update your submodules ? > > > git submodule update > > Seb > > On Tue, Apr 19, 2011 at 10:55 AM, Ricardo Reis > wrote: > > > > > >

Re: [Paraview] ParaView builds using Mesa

2011-04-12 Thread Andy Bauer
Hi Alan, I'm not sure if this will help but could you give the output of: readelf -d /projects/viz/paraview/support/Linux-cee-sw-rhel5-x86_64/install/Mesa-7.4.2-static/lib/libMESAGL.a|grep TEXT If there's a line like 0x0016 (TEXTREL) then the -fPIC flag may not have been passed to the compile

Re: [Paraview] loading nc formatted data

2011-03-23 Thread Andy Bauer
oordinate. My guess is >> that whatever wrote out this file mistook the format for boundary variables >> for coordinate variables. >> >> -Ken >> >> Kenneth Moreland >> *** Sandia National Laboratories >> *** &g

Re: [Paraview] PlotOverLine too verbose in 3.10

2011-03-21 Thread Andy Bauer
You can go to the Display tab to choose which variables to plot. I'm not sure about the error message as I wasn't able to reproduce that although I didn't really try :) Andy On Mon, Mar 21, 2011 at 12:05 PM, Randy Heiland wrote: > Hello, > > I'm confused with the output of the PlotOverLine fil

Re: [Paraview] Compilation problem : Bad value

2011-03-18 Thread Andy Bauer
My guess is that some library rodata is getting built without the "-fPIC" flag. If you built that yourself then you should rebuild that with that compile flag. If not, try adding -fPIC to your CMAKE_CXX_FLAGS and CMAKE_C_FLAGS during configuration. Andy On Fri, Mar 18, 2011 at 12:09 PM, Gil Wer

Re: [Paraview] loading nc formatted data

2011-03-18 Thread Andy Bauer
Hi Simon, Replies below... On Thu, Mar 17, 2011 at 12:41 PM, Simon Su wrote: > Hi All, > > ftp://ftp.gfdl.noaa.gov/pub/sms/4ParaView/1.png > ftp://ftp.gfdl.noaa.gov/pub/sms/4ParaView/2.png > ftp://ftp.gfdl.noaa.gov/pub/sms/4ParaView/3.png > > the above are screen shot from older version of *.nc

Re: [Paraview] CoProcessing: "Could not find whole extent in input"

2011-03-16 Thread Andy Bauer
Pat Marion did some work on that but it hasn't made it into the main paraview repo yet. You can see a video at http://patmarion.com/pv/live -vis.mp4 or http://patmarion.com/pv/live-vis.ogv. It will eventually make it into ParaView but I don't know what the timeline for that is. Andy On Wed, Ma

Re: [Paraview] CoProcessing: "Could not find whole extent in input"

2011-03-16 Thread Andy Bauer
If you run the paraview gui, you should be able to just open these files directly there. A new paraview user's guide is available at http://paraview.org/Wiki/ParaView/Users_Guide/Table_Of_Contents which may help you. Andy On Wed, Mar 16, 2011 at 1:17 PM, melvin_mm wrote: > Dear Andy, > > I ca

Re: [Paraview] CoProcessing: "Could not find whole extent in input"

2011-03-16 Thread Andy Bauer
Hi Daniel, Please respond to the list as well to allow other people to benefit from this discussion. I just found out what is going on. This has been fixed in the master branch. For the release branch, it isn't affecting the output for these examples and is just a print statement that accidenta

Re: [Paraview] CoProcessing: "Could not find whole extent in input"

2011-03-16 Thread Andy Bauer
Hi Daniel, I just copied those files as is from the wiki and ran the example with both python scripts and didn't have any problems. I'm going to need some more information before diagnosing this. What version of ParaView are you using? Any other info which you think may be pertinent? Andy On

Re: [Paraview] compile error

2011-03-16 Thread Andy Bauer
I had the same problem. I fixed it by setting the QT_HELP_GENERATOR cmake value and that fixed it. Andy On Wed, Mar 16, 2011 at 9:26 AM, David Partyka wrote: > I think this is a runtime issue executing qhelpgenerator. If you put the > location of libQtHelp.so in your LD_LIBRARY_PATH does it wor

Re: [Paraview] Update Extents

2011-03-11 Thread Andy Bauer
You may want to look at the VTK/Graphics/vtkExtractGrid class. That filter is used to reduce the extents of a structured data set so it will have the logic you're looking for to expand the extents of a data set. Andy On Fri, Mar 11, 2011 at 11:20 AM, wrote: > Sorry in my example should read (

Re: [Paraview] Cannot read point data array

2011-03-07 Thread Andy Bauer
dewoestyne < bart.vandewoest...@telenet.be> wrote: > On Thu, Mar 03, 2011 at 10:25:27AM -0500, Andy Bauer wrote: > > I was able to load it on a 64 bit ubuntu machine with paraview built > > from a couple of days (3.11) ago as well as on my 32 bit windows with > > paraview built from a

Re: [Paraview] Cannot read point data array

2011-03-03 Thread Andy Bauer
I was able to load it on a 64 bit ubuntu machine with paraview built from a couple of days (3.11) ago as well as on my 32 bit windows with paraview built from a couple of months ago (3.9). Can you try the 3.10rc1 release? On Thu, Mar 3, 2011 at 5:18 AM, Bart Vandewoestyne < bart.vandewoest...@tel

Re: [Paraview] Paraview network interface

2011-02-28 Thread Andy Bauer
On Mon, Feb 28, 2011 at 3:04 AM, wrote: > Co-processing might or might not be what I was looking for!? > > However, I do not fully understand the functionality. Some questions that > someone might be able to answer: > 1. Do I need to link with the VTK libraries? This seems a bit heavy since I > j

Re: [Paraview] unstructured grid, programmable filters: extract, process array data

2011-02-16 Thread Andy Bauer
> > > > On Wed, Feb 16, 2011 at 2:43 PM, Tim Gallagher > wrote: > > You can use the Python Calculator, which will let you use any valid > Python expression -- such as math.atan2(). > > > > Tim > > > > - Original Message - > > From: &

Re: [Paraview] unstructured grid, programmable filters: extract, process array data

2011-02-15 Thread Andy Bauer
This sounds like a job for the calculator filter. "coordsX^2+coordsY^2" for your first example (or "psi__X^2+psi__Y^2" for the psi variables) and "atan(coordsX/coordsY)" for the second example. It can operate on point or cell data (set in the Attribute Model drop-down menu), replace invalid numbe

[Paraview] coprocessing update

2011-02-14 Thread Andy Bauer
I just wanted to give an update on some small changes for the coprocessing library that will be in ParaView 3.10. It is aimed more at the users who aren't interested in using the coprocessing python script generator and would rather use C++ to drive their coprocessing pipelines. The changes are:

Re: [Paraview] writing spheres, cones, etc.

2011-02-13 Thread Andy Bauer
Hi, Is there a reason you want to code up in C++? You can create spheres and cones (under the Source menu) in ParaView and set their parameters like center, resolution, size, etc. There are also other common geometries like cylinders, boxes, etc. You can save the results in a POV file by choosi

Re: [Paraview] WRF

2011-02-09 Thread Andy Bauer
r.edu.eg/astmet/Gamal.htm >> *http://www.itap.purdue.edu/pto/NATO_KEEO/partCoDir_en.html*<http://www.itap.purdue.edu/pto/NATO_KEEO/index_en.html> >> http://www.ucar.edu/governance/iap/iapreps.shtml >> *Tel. 0020238701259 Home Tel. 0020222618163 Work >> Tel. 0020103770593 Cell Fax 0020222629356 Work * >> *__

Re: [Paraview] WRF

2011-02-09 Thread Andy Bauer
> > http://www.ucar.edu/governance/iap/iapreps.shtml > *Tel. 0020238701259 Home Tel. 0020222618163 Work > Tel. 0020103770593 Cell Fax 0020222629356 Work * > * > * > > > -- > *From:

Re: [Paraview] Input Rotating Velocity Vector?

2011-02-09 Thread Andy Bauer
I think the easiest way would be to use the calculator filter. For a rotation around the z axis and centered at (0,0,0) you could use "coordsY*iHat-coordsX*jHat". Andy On Wed, Feb 9, 2011 at 1:42 PM, Joe Ahdoot wrote: > Hello, > > I am working with a model that will be rotating. I am using Plo

Re: [Paraview] WRF

2011-02-09 Thread Andy Bauer
edu.eg/astmet/Gamal.htm > *http://www.itap.purdue.edu/pto/NATO_KEEO/partCoDir_en.html*<http://www.itap.purdue.edu/pto/NATO_KEEO/index_en.html> > http://www.ucar.edu/governance/iap/iapreps.shtml > *Tel. 0020238701259 Home Tel. 0020222618163 Work > Tel. 0020103770593 Cell F

Re: [Paraview] WRF

2011-02-09 Thread Andy Bauer
Hi Gamal, ParaView runs on Windows, Mac, and Linux and can be built with or without MPI/parallel support as well as without cygwin on Windows. Installers are available at http://paraview.org/paraview/resources/software.html along with build information at http://www.paraview.org/Wiki/ParaView_Bin

Re: [Paraview] D3 doesn't work with double precision points

2011-01-12 Thread Andy Bauer
/www.paraview.org/Bug/view.php?id=11686 > > <http://www.paraview.org/Bug/view.php?id=11686>Did you get a chance to > look at it? > > Thanks, > Paul > > On 6 January 2011 15:33, Andy Bauer wrote: > >> Hi Paul, >> >> Can you set up a small case to de

Re: [Paraview] D3 doesn't work with double precision points

2011-01-06 Thread Andy Bauer
Hi Paul, Can you set up a small case to demonstrate the problem and submit it to mantis? I can take a look at it. Andy On Thu, Jan 6, 2011 at 8:41 AM, Paul Edwards wrote: > Hi, > > I've just spotted a bug where d3 causes paraview to crash if the points are > stored a double precision. > > Rega

Re: [Paraview] [paraview] fast way to fill vtkFloatArray

2010-12-06 Thread Andy Bauer
Are you trying to access the SetArray method from python? In c++, if you already have the memory allocated in the same order as VTK wants the most efficient way is to use that. If you build paraview with python wrapping yourself and it includes numpy (if it doesn't automatically work you'll have

Re: [Paraview] CoProcessing library

2010-12-06 Thread Andy Bauer
Hi Nathalie, Sorry for the slow reply. In the future you should email the paraview list to get the fastest, most accurate reply. The live data source will be moved into ParaView but I don't have a time line for that right now. Pat Marion will be doing it but he's busy with a lot of stuff right

Re: [Paraview] PV 3.81 color legend multiple views

2010-11-30 Thread Andy Bauer
Hi Stephen, I get the same incorrect/linked behavior for 3.8.1. I tried it out and this has been fixed in the development version. The 3.10 release candidate should be ready in a week or two and this fix ought to be in that. Andy On Tue, Nov 30, 2010 at 4:17 AM, Stephen Wornom wrote: > I have

Re: [Paraview] slice filter

2010-11-25 Thread Andy Bauer
y,z. The statistics in the information tab > says 'polygonal mesh', number of cells: 0, number of points: 0, and Memory: > 0 MB. I assume that means there is no data. However, the original image > which I ried to slice has definitely data. > > xian > > On 24 November

Re: [Paraview] slice filter

2010-11-24 Thread Andy Bauer
Is the image a 2D image or a 3D image? With the slice filter as the active filter (e.g. highlighted in the Pipeline Browser), how many cells are listed in the Information tab of the Object Inspector? Andy On Wed, Nov 24, 2010 at 8:45 AM, Xian Sperber wrote: > Dear list, > > I have been trying t

Re: [Paraview] SC10 CoProcessing example

2010-11-16 Thread Andy Bauer
m: paraview-boun...@paraview.org [paraview-boun...@paraview.org] On > Behalf Of Andy Bauer [andy.ba...@kitware.com] > > Hi Chris, > > I just fixed the formatting for the python code snippets. As you noticed > there were problems of tabs and spaces intermixed but it's not bee

Re: [Paraview] Colour by mulitple data sets

2010-11-15 Thread Andy Bauer
You may want to consider using multiple views and then link them. Linking will allow you to manipulate the view identically in each 3d view while maintaining separate representations in each. Andy On Mon, Nov 15, 2010 at 4:09 PM, Tristan Chaplin wrote: > Unfortunately, it's the former - I'm try

Re: [Paraview] ParaView environment for Python

2010-11-08 Thread Andy Bauer
Directions are at http://paraview.org/Wiki/ParaView/Python_Scripting#Getting_Started I'm guessing you're missing LD_LIBRARY_PATH or PATH pvpython and pvbatch should have all of the proper environment variables set up for you. Andy On Mon, Nov 8, 2010 at 10:12 PM, Hamilton Woods wrote: > I hav

Re: [Paraview] SC10 CoProcessing example

2010-11-04 Thread Andy Bauer
Hi Chris, I just fixed the formatting for the python code snippets. As you noticed there were problems of tabs and spaces intermixed but it's not been converted to all spaces now. There were also some problems with changes to the library names (import libvtkvtkCoProcessorPython now needs to be i

Re: [Paraview] Help: Calculating Vorticity in paraview

2010-10-26 Thread Andy Bauer
The Gradient of Unstructured DataSet does provide a vorticity computation option but as the filter's name implies, it is only valid for grids that derive from vtkPointSet (vtkStructuredGrid, vtkUnstructuredGrid, vtkPolyData and maybe vtkLabelHierarchy). On Tue, Oct 26, 2010 at 12:30 PM, Peter Brad

<    2   3   4   5   6   7   8   >