admin管理员组文章数量:1350343
Hi I'm trying to convert a vtkUnstructuredGrid object read from a .case file into paraview and use the vtkExtractUnstructuredGrid filter to convert it to a vtkPolyData so that I can then use various polydata filters to get the connectivities of all faces and edges of my mesh. (this is for a fancy edge based cfd solver)
The input mesh is a 2x2x2 cube of eight hexahedral elements spanning from 0,0,0 to 4,4,4 with 27 points that is read as a vtkUnstructuredGrid.
vtkUnstructuredGrid (000001BD37601910)
Debug: Off
Modified Time: 2255684
Reference Count: 2
Registered Events: (none)
Information: 000001BD2BA69970
Data Released: False
Global Release Data: Off
UpdateTime: 0
Field Data:
Debug: Off
Modified Time: 2255656
Reference Count: 1
Registered Events: (none)
Number Of Arrays: 0
Number Of Components: 0
Number Of Tuples: 0
Number Of Points: 27
Number Of Cells: 8
The relivant code is below, where fluidblock is my unstructured grid and polyblock is meant to be my polydata output.
print (fluidBlock)
polyblock = vtkPolyData()
polycon=vtkExtractUnstructuredGrid()
polycon.SetInputData(fluidBlock)
polycon.SetOutput(polyblock)
print(polyblock)
Polyblock is assigned as a polydata somewhere but it has not inherited any data from the unstructured grid. I know this is just me being unfamiliar with the syntax of the vtk library but Its stumped me for the better part of a day.
vtkPolyData (000001BD2B5F8A80)
Debug: Off
Modified Time: 2256455
Reference Count: 2
Registered Events: (none)
Information: 000001BD2BA68240
Data Released: False
Global Release Data: Off
UpdateTime: 0
Field Data:
Debug: Off
Modified Time: 2256452
Reference Count: 1
Registered Events: (none)
Number Of Arrays: 0
Number Of Components: 0
Number Of Tuples: 0
Number Of Points: 0
Number Of Cells: 0
If anyone can tell me what I'm doing wrong that would be appreciated.
It's worth mentioning that really my end goal here is being able to extract a list of all unique faces and edges in my mesh (ie such that the two faces and four edges two hexahedral elements share are counted as one) and I'm not particular about methods, that is to say: if anyone has a better way to extract this data using the vtk library than messing with polydata please tell me.
Apologies for the amateurish question python is not my best language.
Hi I'm trying to convert a vtkUnstructuredGrid object read from a .case file into paraview and use the vtkExtractUnstructuredGrid filter to convert it to a vtkPolyData so that I can then use various polydata filters to get the connectivities of all faces and edges of my mesh. (this is for a fancy edge based cfd solver)
The input mesh is a 2x2x2 cube of eight hexahedral elements spanning from 0,0,0 to 4,4,4 with 27 points that is read as a vtkUnstructuredGrid.
vtkUnstructuredGrid (000001BD37601910)
Debug: Off
Modified Time: 2255684
Reference Count: 2
Registered Events: (none)
Information: 000001BD2BA69970
Data Released: False
Global Release Data: Off
UpdateTime: 0
Field Data:
Debug: Off
Modified Time: 2255656
Reference Count: 1
Registered Events: (none)
Number Of Arrays: 0
Number Of Components: 0
Number Of Tuples: 0
Number Of Points: 27
Number Of Cells: 8
The relivant code is below, where fluidblock is my unstructured grid and polyblock is meant to be my polydata output.
print (fluidBlock)
polyblock = vtkPolyData()
polycon=vtkExtractUnstructuredGrid()
polycon.SetInputData(fluidBlock)
polycon.SetOutput(polyblock)
print(polyblock)
Polyblock is assigned as a polydata somewhere but it has not inherited any data from the unstructured grid. I know this is just me being unfamiliar with the syntax of the vtk library but Its stumped me for the better part of a day.
vtkPolyData (000001BD2B5F8A80)
Debug: Off
Modified Time: 2256455
Reference Count: 2
Registered Events: (none)
Information: 000001BD2BA68240
Data Released: False
Global Release Data: Off
UpdateTime: 0
Field Data:
Debug: Off
Modified Time: 2256452
Reference Count: 1
Registered Events: (none)
Number Of Arrays: 0
Number Of Components: 0
Number Of Tuples: 0
Number Of Points: 0
Number Of Cells: 0
If anyone can tell me what I'm doing wrong that would be appreciated.
It's worth mentioning that really my end goal here is being able to extract a list of all unique faces and edges in my mesh (ie such that the two faces and four edges two hexahedral elements share are counted as one) and I'm not particular about methods, that is to say: if anyone has a better way to extract this data using the vtk library than messing with polydata please tell me.
Apologies for the amateurish question python is not my best language.
Share Improve this question asked Apr 1 at 20:43 Subject303Subject303 133 bronze badges1 Answer
Reset to default 0polycon.update()
to actually execute the algorithm.
:(
本文标签: vtkvtkExtractUnstructuredGrid not producing any output in the paraview python shellStack Overflow
版权声明:本文标题:vtk - vtkExtractUnstructuredGrid not producing any output in the paraview python shell - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743872097a2553660.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论