Re: [Paraview] Connecting points

2017-09-18 Thread Andy Bauer
ectional area, etc) in csv so paraview can read it? I would really > appreciate some directions. Thank you! > -- > *From:* Andy Bauer > *Sent:* September 14, 2017 4:13:02 PM > *To:* Doina Gumeniuc (224252 MAHS) > *Cc:* paraview@paraview.org >

Re: [Paraview] Connecting points

2017-09-14 Thread Andy Bauer
Hi, ParaView has line cells which is what you probably want to use. The line cells themselves have no concept of cross section but you can add that as field data. Beyond this, how are you getting your points into ParaView? Wherever that is being done you'll probably want to add in the line cells

[Paraview] Connecting points

2017-09-14 Thread Doina Gumeniuc (224252 MAHS)
Hi dear users, I would really appreciate if you could guide me on how to connect points with beam elements, FEM style. Thank you! ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.

Re: [Paraview] Connecting points with line

2014-03-18 Thread Andy Bauer
Hi Patrik, You need to specify what columns in your table from your csv file correspond to the point coordinates for your points. If you look at the information tab you should be able to see how many points have been created by the Table to Points filter. Regards, Andy On Tue, Mar 18, 2014 at 3

Re: [Paraview] Connecting points with line

2014-03-18 Thread Patrik Blahuta
After I put this text into script I ll get: ERROR: In C:\DBD\pvs-x64\paraview\src\paraview\VTK\Filters\General\vtkTableToPolyData.cxx, line 111 vtkTableToPolyData (0A9D63B0): Failed to locate the columns to use for the point coordinates ERROR: In C:\DBD\pvs-x64\paraview\src\paraview\VT

Re: [Paraview] Connecting points with line

2014-03-18 Thread Andy Bauer
Hi Patrik, Please keep the discussion on the mailing list so that everyone can participate. As for connecting points via a line cell, I don't think there's any filter to do that since it would have to make an assumption about which points should be connected by a line cell. To use my recommendati

Re: [Paraview] Connecting points with line

2014-03-18 Thread Andy Bauer
If you use the Programmable Filter you can connect the points with the following script: pdi = self.GetPolyDataInput() pdo = self.GetPolyDataOutput() numPoints = pdi.GetNumberOfPoints() pdo.Allocate() for i in range(0, numPoints-1): points = [i, i+1] # VTK_LINE is 3 pdo.InsertNextCell(

[Paraview] Connecting points with line

2014-03-18 Thread Patrik Blahuta
Hello, I am new using the paraview software. I would like to ask if you can help me with connecting points with line. I opened my .csv file and made table to points. That just shown me points in 3D view. Can you give me please tutor how to connect them? Thanks *Kind regards,* *Patrik* _