[Paraview] Compile Error 3.14.1 with gcc 4.7.1

2012-06-18 Thread Andrew Parker
Hi, Using 4.7.1 I get the following compile error when compiling the 3.14.1 tag, it looks like the pointer type is unknown, possibly missing header? [ 21%] Building CXX object VTK/Rendering/CMakeFiles/vtkRendering.dir/vtkFreeTypeUtilities.cxx.o

Re: [Paraview] Compile Error 3.14.1 with gcc 4.7.1

2012-06-18 Thread Andrew Parker
Found a fix, posting here for others: http://anonscm.debian.org/gitweb/?p=collab-maint/vtk.git;a=commitdiff;h=428e763c995bb303805e07da70c1a34fc103d208 Andy On 18 June 2012 15:00, Andrew Parker andy.john.par...@googlemail.comwrote: Hi, Using 4.7.1 I get the following compile error when

[Paraview] vtkDistributedDataFilter and ghost cells

2012-11-06 Thread Andrew Parker
Hi, Hope you can help. I have some code running in parallel, that by other means I have constructed nprocs worth of vtkRectilinearGrids, one per process. Each of which is a valid nprocs-worth of the whole serial mesh, I've check this and I am happy with that i.e. it's partitioned properly and

Re: [Paraview] vtkDistributedDataFilter and ghost cells

2012-11-06 Thread Andrew Parker
be possible to request a layer of ghost cells by setting UPDATE_NUMBER_OF_GHOST_LEVELS at the bottom of the pipeline, but I'm not totally sure how to make that work. It's probably easier (or at least cleaner) to do it from within a filter. -Ken From: Andrew Parker andy.john.par

Re: [Paraview] vtkDistributedDataFilter and ghost cells

2012-11-06 Thread Andrew Parker
. It might be possible to request a layer of ghost cells by setting UPDATE_NUMBER_OF_GHOST_LEVELS at the bottom of the pipeline, but I'm not totally sure how to make that work. It's probably easier (or at least cleaner) to do it from within a filter. -Ken From: Andrew Parker andy.john.par

Re: [Paraview] vtkDistributedDataFilter and ghost cells

2012-11-06 Thread Andrew Parker
a vtkUnstructuredGrid::SafeDownCast() to the data to get the unstructured mesh (and access to the point data). -Ken From: Andrew Parker andy.john.par...@googlemail.com Date: Tuesday, November 6, 2012 9:32 AM To: Kenneth Moreland kmo...@sandia.gov Cc: vtkus...@vtk.org vtkus...@vtk.org, paraview

Re: [Paraview] vtkDistributedDataFilter and ghost cells

2012-11-07 Thread Andrew Parker
of data object it really is. -Ken From: Andrew Parker andy.john.par...@googlemail.com Date: Tuesday, November 6, 2012 9:50 AM To: Kenneth Moreland kmo...@sandia.gov Cc: vtkus...@vtk.org vtkus...@vtk.org, paraview@paraview.org paraview@paraview.org Subject: [EXTERNAL] Re: [Paraview

Re: [Paraview] [vtkusers] vtkDistributedDataFilter and ghost cells

2012-11-07 Thread Andrew Parker
on. -Ken Sent from my iPad so blame autocorrect. On Nov 7, 2012, at 2:38 AM, Andrew Parker andy.john.par...@googlemail.com wrote: So that's working now in terms of the cast, forgot GetOutput() inside the cast operator! The returned vtkUGrid is now fully populated and contains

Re: [Paraview] [vtkusers] vtkDistributedDataFilter and ghost cells - PROGRESS

2012-11-07 Thread Andrew Parker
. Cheers again, Andy On 7 November 2012 14:50, George Zagaris george.zaga...@kitware.com wrote: On Wed, Nov 7, 2012 at 9:34 AM, Andrew Parker andy.john.par...@googlemail.com wrote: Many thanks for that. I perform some threshold stuff early on, so basically Perhaps an easy solution

Re: [Paraview] [vtkusers] vtkDistributedDataFilter and ghost cells - PROGRESS

2012-11-07 Thread Andrew Parker
From: Andrew Parker andy.john.par...@googlemail.com Date: Wednesday, November 7, 2012 9:31 AM To: George Zagaris george.zaga...@kitware.com Cc: Kenneth Moreland kmo...@sandia.gov, vtkus...@vtk.org vtkus...@vtk.org, paraview@paraview.org paraview@paraview.org Subject: [EXTERNAL] Re: [vtkusers

Re: [Paraview] [vtkusers] vtkDistributedDataFilter and ghost cells

2012-11-08 Thread Andrew Parker
their own global ids so I don't use d3 for that. Regards, Paul On 7 November 2012 14:50, George Zagaris george.zaga...@kitware.comwrote: On Wed, Nov 7, 2012 at 9:34 AM, Andrew Parker andy.john.par...@googlemail.com wrote: Many thanks for that. I perform some threshold stuff early on, so

[Paraview] Bug with 4.7.2 build and 3.14.1

2012-11-09 Thread Andrew Parker
Hi, I get this error building a fresh clone of 3.14.1 using gcc 4.7.2, vtk build and works perfectly fine with this compiler so I presume it's a slight change in ordering that has caused the problem.: [ 30%] Building CXX object VTK/Rendering/CMakeFiles/vtkRendering.dir/vtkFreeTypeUtilities.cxx.o

[Paraview] 3.98-rc2 and multiple selections

2012-11-13 Thread Andrew Parker
Hi, So as requested, I built the latest rc against 4.7.2 and that also happens to be built against qt 4.8.3, and it compiles and installs fine. This is built against openmpi 1.6.2 with use_mpi on. However, I have noticed that when loading multiple files around 20 of them, vtu's in this instance,

[Paraview] Possible vtkOBBTree bug or weirdness

2012-11-21 Thread Andrew Parker
Hi, So I've been having some problems with vtkOBBTree using the intersectWithLine method with the following signature: int IntersectWithLine (double a0[3], double a1[3], double tol, double t, double x[3], double pcoords[3], int subId, vtkIdType cellId, vtkGenericCell *cell) In particular,

[Paraview] Construct 3D revolved mesh from a 2d mesh

2013-01-31 Thread Andrew Parker
All, I am doing this in code using vtk, but can be reproduced using paraview as noted below. I have a 2d mesh which represent a cylindrically symmetric simulation. I want to be able to revolve this around the z-axis to create a 3d mesh. However, when doing this using the rotational extrusion

Re: [Paraview] Construct 3D revolved mesh from a 2d mesh

2013-02-01 Thread Andrew Parker
Sorry to repost. Does anybody have a feel for whether I can apply a filter and essentially produce a 3d volume mesh with associated scalars and transformed vectors, from it's 2d counter part using vtk? i.e. a cylindrically symmetric simulation converted to a valid 3d volume mesh. I can apply

[Paraview] Median Dual Mesh Construction

2013-02-14 Thread Andrew Parker
Hi, Just a quick one. Is there any filter in vtk/paraview to obtain the median dual of a mesh? I'm happy to assume the cells are know cell types, but would want it for any input type of mesh. Anybody had success with something like this in vtk? Cheers, Andy

[Paraview] Explicit numbering of nodes indexes in Xdmf/h5

2013-11-25 Thread Andrew Parker
All, I thought I'd forward this onto the paraview lists in case somebody could think of a way to do this? Please see my email below which I originally sent to the vtk user list. Any help would be very much appreciated, including the fact that it just cannot be done. I would in particular

[Paraview] Explicit numbering of nodes indexes in Xdmf/h5

2013-11-25 Thread Andrew Parker
All, I thought I'd forward this onto the paraview list in case somebody could think of a way to do this? Please see my email below which I originally sent to the vtk user list. Any help would be very much appreciated, including the fact that it just cannot be done. I would in particular

Re: [Paraview] Explicit numbering of nodes indexes in Xdmf/h5

2013-11-25 Thread Andrew Parker
, Andrew Parker andy.john.par...@googlemail.com wrote: All, I thought I'd forward this onto the paraview list in case somebody could think of a way to do this? Please see my email below which I originally sent to the vtk user list. Any help would be very much appreciated, including

[Paraview] Potential bug in vtkPolygon normal and area calculations

2014-08-29 Thread Andrew Parker
Dear all, This is driving me round the bend. When I have a meshing coming from a rectilinear source, I get NANs from my normal and face area calculations. When all other input meshes are used, i.e. unstructured, the results are correct. To test this I've written the following test code which

Re: [Paraview] [EXTERNAL] Re: Make animation from steady state result

2018-01-19 Thread Andrew Parker
Thank you very much for these comments. I'll give them a go and follow up if need be. Thanks, Andy On 19 January 2018 at 13:18, Cory Quammen <cory.quam...@kitware.com> wrote: > Andrew, > > Responses inlined below: > > On Fri, Jan 19, 2018 at 6:27 AM, Andrew Parker via

[Paraview] Paraview bug found in pvtu files containing polyhedrons

2016-02-29 Thread Andrew Parker via ParaView
Dear All, I have recently been having problems reading pvtu files in paraview when those files contain arbitrary polyhedrons: this is from the output of a large scale code that runs in parallel via mpi. To show the problem, I have written a very small sample code, attached, that runs in

Re: [Paraview] [EXTERNAL] Re: Make animation from steady state result

2018-01-19 Thread Andrew Parker via ParaView
Dear all, Sorry to post onto an old thread. I have been reading this thread and the related write up here: https://www.paraview.org/Wiki/Advanced_Tips_and_Tricks#Animating_a_static_vector_field This thread (and the tips and tricks post) is really close to what I want to do, but I have a few

Re: [Paraview] [EXTERNAL] Re: Make animation from steady state result

2018-02-02 Thread Andrew Parker via ParaView
at 13:18, Cory Quammen <cory.quam...@kitware.com> wrote: > Andrew, > > Responses inlined below: > > On Fri, Jan 19, 2018 at 6:27 AM, Andrew Parker via ParaView > <paraview@paraview.org> wrote: > > Dear all, > > > > Sorry to post onto an old thread. I h