Re: [Paraview] Interpolate data from an unstructured mesh to a structured one

2011-11-02 Thread Gena Bug
Thank you very much -- you've saved me a lot of time! One question about wavelet source -- can I generate rectilinear mesh with, for example, 100x100x100 elements in [0, 1]x[0, 1]x[0, 1] extent? -|- Gena. On Tue November 1 2011 17:21:11 David E DeMarle wrote: Or just use the wavelet

Re: [Paraview] Interpolate data from an unstructured mesh to a structured one

2011-11-01 Thread Gena Bug
Hello, Robert! Thank you for quick response! Seems, this plugin is what I'm looking for. But can you explain me how can I compile it? I can't find any readme in the repository and I don't have enough experience with building paraview plugins. My platform is Debian testing amd64. -|-

Re: [Paraview] Interpolate data from an unstructured mesh to a structured one

2011-11-01 Thread Sebastien Jourdain
Hi Gena, you can also use Resample with dataset. The only missing part will be your destination dataset that you want to use for sampling your original data. You can look at that documentation to create an empty one manually by creating a legacy VTK file.

Re: [Paraview] Interpolate data from an unstructured mesh to a structured one

2011-11-01 Thread David E DeMarle
Or just use the wavelet source to make the image data to sample onto. David E DeMarle Kitware, Inc. RD Engineer 21 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-881-4909 On Tue, Nov 1, 2011 at 9:07 AM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: Hi Gena, you can also

[Paraview] Interpolate data from an unstructured mesh to a structured one

2011-10-31 Thread Gena Bug
Hello! I have an interesting task -- I need to move the cell data from an unstructured mesh to corresponding cartesian mesh. Original domain is an alpha-degree 3D sector (alpha is a parameter, sector' angle, may be pi/3, pi/4, ...) with periodic side boundaries and unstructured

Re: [Paraview] Interpolate data from an unstructured mesh to a structured one

2011-10-31 Thread Robert Maynard
You might be interested in the code at: https://github.com/berkgeveci/ComparativeVis It has a filter called Cross Mesh Field Evaluation which maps a property from a unstructured mesh onto a structured mesh in parallel. On Mon, Oct 31, 2011 at 10:48 AM, Gena Bug archaero...@mail.ru wrote: Hello!