Re: [Paraview] (no subject)

2017-05-31 Thread bruno le hyaric
Thank you Utkarsh, I appreciate the consideration for a ticket. Do you see any workaround (even ugly) ? It seems strange to me that there is absolutely no way to do that. I believe we might find a way deep into VTK... Regards, Bruno. > On 31 May 2017, at 17:12, Utkarsh Ayachit wrote: > > Th

Re: [Paraview] (no subject)

2017-05-31 Thread Utkarsh Ayachit
This isn't support currently, I am afraid. I've reported an issue: https://gitlab.kitware.com/paraview/paraview/issues/17482 Utkarsh On Thu, May 25, 2017 at 10:22 AM, bruno le hyaric wrote: > Hi, > > Is there any mean to assign a texture in a python programmable filter ? > > I have my programmab

[Paraview] (no subject)

2017-05-25 Thread bruno le hyaric
Hi, Is there any mean to assign a texture in a python programmable filter ? I have my programmable filter which have two inputs : - a unstructured grid of 3D points with texture coordinates - an image dataset coming from an ImageReader which reads a sequence of images I would like to apply the c

Re: [Paraview] (no subject)

2017-03-30 Thread John Haase
Okay, I figured it out. I updated my version of Paraview from 5.2.0 to 5.3.0 and that fixed it. Is there a way to only have "aname" loop over "reader[0].ElementVariables"? I tried to replace the line "for aname in inTable.RowData.keys():" with "for aname in " + reader[0].ElementVariables + ":"

Re: [Paraview] (no subject)

2017-03-30 Thread Utkarsh Ayachit
Not sure what's going on. The attached script worked just fine for me. On Thu, Mar 30, 2017 at 1:02 PM, John Haase wrote: > Utkarsh, > > Using the script attached, and the same data sets as before. I get the error > > Traceback (most recent call last): > > File "", line 22, in > > File "", line

Re: [Paraview] (no subject)

2017-03-30 Thread John Haase
Utkarsh, Using the script attached, and the same data sets as before. I get the error Traceback (most recent call last): File "", line 22, in File "", line 5, in RequestData File "C:\Program Files\ParaView 5.2.0-Qt4-OpenGL2-Windows-64bit\bin\lib\site-packages\vtk\numpy_interface\dataset_adapt

Re: [Paraview] (no subject)

2017-03-30 Thread Utkarsh Ayachit
John, That's the script for a "Programmable Filter", not simply to be added to your script, similar to what you're doing with `squareDiff`. e.g. myfilter = ProgrammableFilter(Input=integrateSqrVarOverSpace) myfilter.Script = "" # the script I provided. myfilter.UpdatePipeline() ... Utkars

Re: [Paraview] (no subject)

2017-03-30 Thread John Haase
Exploring 'integrateSqrVarOverSpace', it doesn't have a 'RowData' object. dir(integrateSqrVarOverSpace) ['CellData', 'FieldData', 'FileNameChanged', 'GetCellDataInformation', 'GetDataInformation', 'GetFieldDataInformation', 'GetPointDataInformation', 'GetProperty', 'GetPropertyValue', 'Initialize

Re: [Paraview] (no subject)

2017-03-30 Thread Utkarsh Ayachit
Isn't that simply a sum of all the rows in the output of integrateSqrVarOverSpace filter? If so, that can be done by using another *ProgrammableFilter* with the following *Script*: from numpy import sum for inTable, outTable in zip(inputs[0], output): for aname in inTable.RowData.keys():

Re: [Paraview] (no subject)

2017-03-29 Thread John Haase
Sorry, that's not what I wanted. I want to integrate the variable "integrateSqrVarOverSpace", over time as well. Regards, John R. Haase jhaa...@nd.edu On Wed, Mar 29, 2017 at 1:05 PM, Utkarsh Ayachit < utkarsh.ayac...@kitware.com> wrote: > Your script worked for me for the most part with ParaVi

Re: [Paraview] (no subject)

2017-03-29 Thread Utkarsh Ayachit
Your script worked for me for the most part with ParaView 5.3. All I did was added a plot view to show the results (attached). If that what you were looking for? On Wed, Mar 29, 2017 at 12:30 PM, John Haase wrote: > They are very large. I believe you should be able to access them through > this

Re: [Paraview] (no subject)

2017-03-29 Thread John Haase
They are very large. I believe you should be able to access them through this link https://notredame.box.com/s/qy0p9y5jg71jwxtzfey80xiq9i9udk5s Regards, John R. Haase jhaa...@nd.edu On Wed, Mar 29, 2017 at 12:06 PM, Utkarsh Ayachit < utkarsh.ayac...@kitware.com> wrote: > John, > > Can you send

Re: [Paraview] (no subject)

2017-03-29 Thread Utkarsh Ayachit
John, Can you send me the datafiles too (feel free to do it off the mailing list) so I can figure out what could be going wrong. Thanks Utkarsh On Wed, Mar 29, 2017 at 12:01 PM, John Haase wrote: > Hello Paraviewers, > > I'm trying to integrate variables over time. I found this thread where it

[Paraview] (no subject)

2017-03-29 Thread John Haase
Hello Paraviewers, I'm trying to integrate variables over time. I found this thread where it had been brought up previously. http://paraview.markmail.org/search/?q=integral+over+time#query:integral%20over%20time+page:1+mid:z75bede26onth4eu+state:results However, when I try and open the state fil

Re: [Paraview] (no subject)

2017-02-13 Thread Ben Boeckel
On Mon, Feb 13, 2017 at 14:16:03 -0500, Bishwajit Dutta wrote: > http://midas3.kitware.com/midas/api/rest?method=midas.bitstream.download&checksum=b10bd3f7136ef809f1df7ad5c94c553f&algorithm=MD5 > ("Couldn't connect to server") > > http://www.paraview.org/files/ExternalData/MD5/b10bd3f7136ef809f1df

Re: [Paraview] (no subject) 5.0.0 Compilation issue

2017-02-13 Thread Bishwajit Dutta
Adding subject On Mon, Feb 13, 2017 at 2:16 PM, Bishwajit Dutta wrote: > Hi All, > > I am trying to compile Paraview 5.0.0 on Ubuntu 14.04 but I am running > into the below compilation issue. My machine is connected to the network (I > tested it). > Is there something wrong with the kitware URLs

[Paraview] (no subject)

2017-02-13 Thread Bishwajit Dutta
Hi All, I am trying to compile Paraview 5.0.0 on Ubuntu 14.04 but I am running into the below compilation issue. My machine is connected to the network (I tested it). Is there something wrong with the kitware URLs? logs-- CMake Error at /home/bd/gohan_mount/bdutta

Re: [Paraview] (no subject)

2016-06-14 Thread Shawn Waldon
Hi Vince, This is expected. Essentially ParaViewWeb allows you to remotely view the ParaView output with your browser. If you launched the Visualizer without pointing a browser at it and then went to another computer and pointed a browser at the first computer, you would see the ParaViewWeb outp

[Paraview] (no subject)

2016-06-14 Thread Vincent Perry
Hello, When running ParaViewWeb on a Mac, a pvpython window entitled 'Visualization Toolkit - Cocoa #1' pops up on start-up. This window displays the exact same output as the Visualizer in the browser, but there is no way to interact with it directly. If I quit out of this window, the entire appl

Re: [Paraview] (no subject)

2016-04-24 Thread Cory Quammen
Hi, Installing on Windows 8 should be very easy. Please visit http://www.paraview.org/download/ choose the appropriate installer, download it, and double click the installation program. Click through the installer, and it should be all set up. Hope that helps, Cory On Sat, Apr 23, 2016 at 7:5

[Paraview] (no subject)

2016-04-23 Thread Chathuri Gunasekera
Hi, I want to install Paraview and i cannot find a video abt installing paraview on windows 8. i cannot find a proper one.pls help. -- Warm regards, Chathuri Gunasekera. ___ Powered by www.kitware.com Visit other Kitware open-source projects at htt

Re: [Paraview] (no subject)

2016-03-23 Thread Cory Quammen
Tom, Thanks for the bug report. I was able to reproduce this bug and have filed a report at http://www.paraview.org/Bug/view.php?id=16037 Best regards, Cory On Wed, Mar 23, 2016 at 8:33 AM, Tom Fahner wrote: > Dear all, > > I recently noticed a bug. I have a statefile saved which I use for > p

[Paraview] (no subject)

2016-03-23 Thread Tom Fahner
Dear all, I recently noticed a bug. I have a statefile saved which I use for post-processing some OpenFOAM results. To have the view settings consistent, I also saved new Custom Camera settings (The 1 2 3 4 buttons in the Adjust Camera widget). With my workflow as: Open Statefile>Make pictures fro

[Paraview] (no subject)

2016-03-09 Thread David E DeMarle
Hi Bud, Please start a new thread on the mailing list unless this is closely related to the multi-page tiff in parallel problem. When you do ask, a little more context would be helpful. Is this a time varying data set, what file format etc. thanks David E DeMarle Kitware, Inc. R&D Engineer 21 C

[Paraview] (no subject)

2016-01-04 Thread mafalda alves
___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Search the list archives at:

[Paraview] (no subject)

2015-10-22 Thread Anton . Piccardo-Selg
This message is commercial in confidence and may be privileged. It is intended for the addressee(s) only. Access to this message by anyone else is unauthorized and strictly prohibited. If you have received this message in error, please inform the sender immediately. Please note that messages s

Re: [Paraview] (no subject)

2015-09-21 Thread Utkarsh Ayachit
> When I apply a threshold filter and view as a ‘Surface’ the image is a lot > more ‘blocky’ than in the other two applications. The image is dominated by > the artifactual lines due to the original data being acquired as axial > slices; whereas in OsiriX and 3D Slicer this gets smoothed out an

[Paraview] (no subject)

2015-09-21 Thread Mathew Guilfoyle
I would be grateful for some advice on volume and surface rendering in Paraview. I am trying to generate 3D skull models from CT data. The reason for using Paraview is to take advantage of the detailed fly-through/movie capability. I can generate an acceptable 3D model that I can interact with

Re: [Paraview] (no subject)

2015-08-07 Thread Schubert, Raphael
SPACING 1 1 1 ORIGIN 0 0 0 POINT_DATA 8 FIELD FieldData 1 Index 1 8 long 0 1 2 3 4 5 6 7 Von: Dan Lipsa [dan.li...@kitware.com] Gesendet: Freitag, 7. August 2015 05:11 Bis: Schubert, Raphael; paraview@paraview.org; vtkus...@vtk.org Betreff: Re: [Paraview] (no subject

Re: [Paraview] (no subject)

2015-08-06 Thread Dan Lipsa
Raphael, Indeed, the FIELD definitions have to be after the dataset details according to: http://www.vtk.org/wp-content/uploads/2015/04/file-formats.pdf On Thu, Aug 6, 2015 at 11:14 AM Schubert, Raphael < raphael.schub...@iwm.fraunhofer.de> wrote: > I use the following script to generate three

[Paraview] (no subject)

2015-08-06 Thread Schubert, Raphael
I use the following script to generate three vtk files containing different dataset types and an additional FIELD. import numpy as np import vtk from vtk.util.numpy_support import numpy_to_vtk for dataset in (vtk.vtkStructuredPoints, vtk.vtkRectilinearGrid, vtk.vt

Re: [Paraview] (no subject)

2015-05-12 Thread Sean . Ziegeler
@paraview.org Subject: Re: [Paraview] (no subject) The Glyph filter is the appropriate way to see points that have no cells attached to them (as in the case of the cube data). This might be a problem with the new uniform spatial distribution feature of the glyph filter. What happens if you change the

Re: [Paraview] (no subject)

2015-05-12 Thread Moreland, Kenneth
mailto:paraview@paraview.org>" mailto:paraview@paraview.org>> Subject: [EXTERNAL] [Paraview] (no subject) A user of mine would like to see points or glyphs of the atoms in a cube file. However, ParaView does not seem to be able to recognize them as data points that can do that. I c

Re: [Paraview] (no subject)

2015-05-12 Thread Utkarsh Ayachit
Sean, You would indeed need to use the "Glyph" filter to glyph the "Output". Try changing the "Glyph Mode" for the Glyph filter on the Properties panel to "All Points". Does that help? Utkarsh On Mon, May 11, 2015 at 6:53 PM, wrote: > A user of mine would like to see points or glyphs of the at

[Paraview] (no subject)

2015-05-11 Thread Sean . Ziegeler
A user of mine would like to see points or glyphs of the atoms in a cube file. However, ParaView does not seem to be able to recognize them as data points that can do that. I can reproduce this in the VTKData example file: m4_TotalDensity.cube. This would be for the "Output" portion of the pi

[Paraview] (no subject)

2014-07-03 Thread Saeed Mazrouei
Hi Does anyone has a vtk file in cylindrical coordinate. I have data and I need to write them in vtk file for cylindrical coordinate. I just started to learn. please help me ___ Powered by www.kitware.com Visit other Kitware open-source projects at htt

[Paraview] (no subject)

2013-04-29 Thread Jane Hickmott
Hi, I'm trying to build paraviewweb using superbuild on my new computer (fedora 15) but get compile errors pasted below.  I guess the issue is that git:// should actually be http:// but for the life of me cannot figure out where to set this for 'make' to find.  Every time I alter .git/config or

[Paraview] (no subject)

2013-04-24 Thread Hedieh Ebrahimi
Hello, I am trying to use the StreamTracer with custom source on my dataset, but my Dataset has 100,000,000 cells. First StreamTracer with custom source is not active on cell data so I had to convert using "Cell Data to Point Data" filter. Then, as my dataset is so big, I can not apply the "Str

Re: [Paraview] (no subject)

2013-03-15 Thread Utkarsh Ayachit
Can you post the errors that you're getting as well please? Utkarsh On Fri, Mar 15, 2013 at 8:40 AM, Hedieh Ebrahimi wrote: > PS. I have attached the CMakeCache.txt. > > Thank you > > > On 15 March 2013 12:53, Hedieh Ebrahimi > wrote: >> >> Hello everyone, I am trying to ccmake, make and then m

Re: [Paraview] (no subject)

2013-03-15 Thread Hedieh Ebrahimi
PS. I have attached the CMakeCache.txt. Thank you On 15 March 2013 12:53, Hedieh Ebrahimi wrote: > Hello everyone, I am trying to ccmake, make and then make install Paraview > Superbuild from the Paraview Website, but unfortunatle I find the > instructions not very clear. I would appreciate any

[Paraview] (no subject)

2013-03-15 Thread Hedieh Ebrahimi
Hello everyone, I am trying to ccmake, make and then make install Paraview Superbuild from the Paraview Website, but unfortunatle I find the instructions not very clear. I would appreciate any help with my questions below: http://paraview.org/Wiki/ParaView:Superbuild 1. CMAKE In the Web page it s

Re: [Paraview] (no subject)

2012-12-01 Thread Sebastien Jourdain
M, Timothy Cale wrote: >> >>> Sebastien: >>> >>> The data file I attached to the previous version of this update note was >>> too large. >>> >>> I am resending the note with that file removed. >>> >>> Tim >>> >

Re: [Paraview] (no subject)

2012-12-01 Thread Timothy Cale
version of this update note was >> too large. >> >> I am resending the note with that file removed. >> >> Tim >> >> -- Forwarded message -- >> From: Timothy Cale >> Date: Fri, Nov 30, 2012 at 1:03 PM >> Subject: Re: [Paraview] (no subject)

Re: [Paraview] (no subject)

2012-12-01 Thread Timothy Cale
Nov 30, 2012 at 3:10 PM, Timothy Cale wrote: > >> Sebastien: >> >> The data file I attached to the previous version of this update note was >> too large. >> >> I am resending the note with that file removed. >> >> Tim >> >> -

Re: [Paraview] (no subject)

2012-12-01 Thread Sebastien Jourdain
- > From: Timothy Cale > Date: Fri, Nov 30, 2012 at 1:03 PM > Subject: Re: [Paraview] (no subject) > To: Sebastien Jourdain > Cc: "paraview@paraview.org" > > > Update: > > I am able to write a ply file using CreateWriter (see attached > first_stab.py and

Re: [Paraview] (no subject)

2012-11-30 Thread Timothy Cale
Sebastien: Good question: My goal is to have a script which smooths results between simulation steps (fortran codes). I use paraview to view results, and the smoothing filter in paraview seems to do what I want. I want to start with a Trace-generated python script, and edit it to write the vert

Re: [Paraview] (no subject)

2012-11-29 Thread Sebastien Jourdain
I don't know ? what your script is supposed to do ? Render an image and quit ? On Thu, Nov 29, 2012 at 1:19 PM, Timothy Cale wrote: > I am using paraview 3.14 (64 bit, ubuntu 12.04 vm on a MBP). > > I am trying to run pvpython to view .py files generated using Trace: > > 'which' pvpython' yield

[Paraview] (no subject)

2012-11-29 Thread Timothy Cale
I am using paraview 3.14 (64 bit, ubuntu 12.04 vm on a MBP). I am trying to run pvpython to view .py files generated using Trace: 'which' pvpython' yields: /usr/bin/pvpython 'pvpython' yields: Error converting executable file "/usr/bin/../lib/paraview/pvpython" to real path: No such file or dire

[Paraview] (no subject)

2012-08-24 Thread Joe Borġ
Different results for ViewSize when running on remote station. See my test.py script. If I run that on a localhost, then the image gets made the correct size. If I run this on a remote station (of exactly the same spec and after setting the DISPLAY) I get a different size screenshot, even though

[Paraview] (no subject)

2012-08-06 Thread Eugenio Trumpy
Hi to all,i'm a new user of paraview. Primarily i started to use paraview as compiled software by downloading the binary for Linux platform.Then i read the presence of one GEO version (ParaViewGEO) to read and view some geographical dataset, so i downloadedboth the source and the binary of par

Re: [Paraview] (no subject)

2012-07-09 Thread Tom
Biddiscombe, John A. cscs.ch> writes: > > > > might just be that libxml+xdmf didn’t rebuild themselves when you turned on shared libs. Try wiping the build parts of those projects and rerunning cmake then build again. >   > JB >   > > > From: Boettcher, > Prof. Dr. Peter [mailto:Boettcher

Re: [Paraview] (no subject)

2012-05-18 Thread Utkarsh Ayachit
>> so that people can visualize the data in real time. > > No. > Unless, by "real time", you meant "interactively", in which case the answer is Yes. You can use ParaViewWeb for interactive 3D visualization in a web browser. Utkarsh ___ Powered by www.ki

Re: [Paraview] (no subject)

2012-05-18 Thread David E DeMarle
On Fri, May 18, 2012 at 1:46 AM, sreewathsa k wrote: ... > I just want to know, is there any possibility to integrate Paraview into a   > web browser Yes. See: http://paraview.org/Wiki/ParaViewWeb > so that people can visualize the data in real time. No. Visualizing data as it arrives with pa

[Paraview] (no subject)

2012-05-17 Thread sreewathsa k
Hello, I am new to Paraview and visualization tools. I just want to know, is there any possibility to integrate Paraview into a web browser so that people can visualize the data in real time. Thank you! Wathsa. ___ Powered by www.kitware.com

[Paraview] (no subject)

2011-11-11 Thread Fred Fred
Hello,I have a filter inherited from vtkUnstructuredGridAlgorithm, with 2 inputs of type vtkStructuredGrid and 3 outputs, 1 and 2 are just copies of the input and the third one is of type vtkUnstructuredGrid.I copy input0 to output0 like this: vtkInformation *in0Info = inputVector[0]->GetInfo

Re: [Paraview] (no subject)

2011-04-30 Thread David Doria
On Fri, Apr 29, 2011 at 6:06 AM, Rentschler Martin < martin.rentsch...@gmail.com> wrote: > Hi, > > I want to access the PointData of a Source using a python script. > > So first I choose the Source by > > >>> bla=GetActiveSource() > > >>> bla > > > > and then I would to access the data of that ob

Re: [Paraview] (no subject)

2011-04-29 Thread David E DeMarle
ParaView has a client server architecture, so the actual data may be far far away. Use servermanager.Fetch to bring the data to the client, or use a python programmable filter to script on the server where the data is. David E DeMarle Kitware, Inc. R&D Engineer 28 Corporate Drive Clifton Park, NY

[Paraview] (no subject)

2011-04-29 Thread Rentschler Martin
Hi, I want to access the PointData of a Source using a python script. So first I choose the Source by >>> bla=GetActiveSource() >>> bla and then I would to access the data of that object, but >>> Arrays=SOLID25_h5part.PointArrays >>> Arrays ['Coords_0', 'Coords_1', 'Coords_2', 'SOLID25_h'

[Paraview] (no subject)

2010-12-31 Thread Yann-Hervé Hellouvry
___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Follow this link to subscrib

Re: [Paraview] (no subject)

2009-12-16 Thread Adriano Gagliardi
Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: 16 December 2009 15:27 To: agaglia...@ara.co.uk Cc: Berk Geveci; ParaView Subject: Re: [Paraview] (no subject) There was a bug in the python module due to which it reported the wrong name as being overridden. Now it should report the correct name

Re: [Paraview] (no subject)

2009-12-16 Thread Utkarsh Ayachit
ircraft Research Association Ltd. > Manton Lane > Bedford > > Tel: 01234 32 4644 > E-mail: agaglia...@ara.co.uk > Url: www.ara.co.uk > -Original Message- > From: Berk Geveci [mailto:berk.gev...@kitware.com] > Sent: 16 December 2009 14:33 > To: agaglia...@ara.co.uk

Re: [Paraview] (no subject)

2009-12-16 Thread Adriano Gagliardi
ject Scientist Computational Aerodynamics Aircraft Research Association Ltd. Manton Lane Bedford Tel: 01234 32 4644 E-mail: agaglia...@ara.co.uk Url: www.ara.co.uk -Original Message- From: Berk Geveci [mailto:berk.gev...@kitware.com] Sent: 16 December 2009 14:33 To: agaglia...@ara.co.uk Cc

Re: [Paraview] (no subject)

2009-12-16 Thread Berk Geveci
Hi Adriano, Are you loading any plugin or do you have any custom filters? -berk On Wed, Dec 16, 2009 at 4:23 AM, Adriano Gagliardi wrote: > Hi, > > Can anyone explain why the following warnings are appearing when I open the > Python Shell? This only appears to be happening on my machine in inte

Re: [Paraview] (no subject)

2009-12-16 Thread Sven Buijssen
Hi Adriano, Sounds familiar to me. I reported this a while back to Mantis: http://www.paraview.org/Bug/view.php?id=9549 Sven - Original Message - From: "Adriano Gagliardi" To: "'ParaView'" Sent: Mittwoch, 16. Dezember 2009 10:23:25 Subject: [Paravie

[Paraview] (no subject)

2009-12-16 Thread Adriano Gagliardi
Hi, Can anyone explain why the following warnings are appearing when I open the Python Shell? This only appears to be happening on my machine in interactive mode (using pvpython or pvbatch, I don't get these messages). >>> from paraview.simple import * Warning: Clip is being overwritten. This ma

[Paraview] (no subject)

2009-12-04 Thread Nathalie.Rauschmayr
Hello, I have already tried the command servermanager.Fetch(). And I think it make the right thing on server-side, when I run the test-case with the standard python shell. But I get no representation in GUI. I have tried to work with the Proxymanager, but I have also read, that this just only

Re: [Paraview] (no subject)

2009-12-04 Thread David E DeMarle
It is not clear to me what exactly you are trying to do, but I think you want servermanager.Fetch(). Call Fetch to aggregate and deliver the data produced on the server back back to the client. See the wiki page, the book or help within paraview's python shell to learn how to use it. David E DeMa

[Paraview] (no subject)

2009-12-04 Thread Nathalie.Rauschmayr
Hello, I have some questions about the servermanager-module. I'd like to run a test-case on a cluster and visualize the results via Paraview GUI on client-side. Therefor I have included some classes in the test-case, in order that those results are transformed in vtk-objects and paraview-obje

Re: [Paraview] (no subject)

2009-03-10 Thread Berk Geveci
It sounds like FindCell() is failing. It would be great if you could extract the cells that are causing this and post a small dataset that contains them. It is probably a bug related to tolerance issues in one of the cell types. On Sat, Mar 7, 2009 at 11:25 AM, Jacques Papper wrote: > Hi all, > >

Re: [Paraview] (no subject)

2009-02-04 Thread Berk Geveci
Hi Nathalie, I have been working on this exact feature. If you are willing to build and use the development version of ParaView, I can give you some pointers on where to get started. Are you loading the ParaView modules from a Python shell that already has the data or are you loading the data from

Re: [Paraview] (no subject)

2008-12-29 Thread Berk Geveci
Hi Beheshti, ParaView cannot generate streamlines or contours from a set of points. It needs a volume consisting of elements such as tetrahedra. You can create such a volume by applying Delaunay 2D or 3D to your dataset. Happy new year. -berk On Tue, Dec 23, 2008 at 6:16 AM, ali-a beheshti wrot

[Paraview] (no subject)

2008-12-23 Thread ali-a beheshti
Dear All,I want to visualize flow around a complex pier using measured velocities in the laboratory. Measured points are not structured and some points have been measured randomly in position. I have used an UNSTRUCTURED_GRID data set with ASCII format. Following is the structure of used data s

[Paraview] (no subject)

2008-11-21 Thread Natalie Happenhofer
Hi! I´m writing a new filter called vtkDataCalculator, which should add/subtract/multiply/ divide the point data arrays of two datasets. Having written now a very simple version which just adds the point data, I try to build it as a Plugin and I get the error Linking Cxx Shared Library ...\bin

Re: [Paraview] (no subject)

2008-10-31 Thread Hom Nath Gharti
One possible reason may be the different order of the data. Looks like your original data stored in the order (Row major format): for i= for j= for k= But paraview is reading as (Column major format): for k= for j= for i= If this is the case, you should wr