当前位置:   article > 正文

VTK四面体文件格式_vtk文件

vtk文件

参考
https://kitware.github.io/vtk-examples/site/VTKFileFormats/#legacy-file-examples

文件为文本文件,后缀为.vtk

存储类型为非结构网格: UNSTRUCTURED_GRID

文件分为两部分:

  1. 头部
  2. 数据

头部

前4行为头部

  1. 第一行是说明vtk文件的version(这是legacy 版本,此外还有较新的xml版本)
  2. 第二行是文件描述,随便写什么
  3. 第三行是ASCII或者BINARY
  4. 第四行是说明数据类型:为UNSTRUCTURED_GRID,此外还有
    STRUCTURED_POINTS,
    STRUCTURED_GRID,
    RECTILINEAR_GRID,
    POLYDATA

在这里插入图片描述

数据

我们就讲非结构网格这种数据类型
它分为三个部分:

  1. POINTS 点数据
  2. CELSS 网格数据
  3. CELL_TYPES网格类型
    在这里插入图片描述

我们分别来讲

  1. POINTS 点数据
    在这里插入图片描述

  2. CELSS 网格数据
    分别是网格的数量和cell list size(其实就是54985*5 = 274925)
    在这里插入图片描述

  3. CELL_TYPES网格类型
    网格也是数量

后面的数字代表的是网格的类型编号。(10代表 的是四面体,其他类型编号请看下图)
在这里插入图片描述

在这里插入图片描述

附录:官方文档解释

Unstructured Grid. The unstructured grid dataset consists of arbitrary combinations of any possible cell type. Unstructured grids are defined by points, cells, and cell types. The CELLS keyword requires two parameters: the number of cells n and the size of the cell list size. The cell list size is the total number of integer values required to represent the list (i.e., sum of numPoints and connectivity indices over each cell). The CELL_TYPES keyword requires a single parameter: the number of cells n. This value should match the value specified by the CELLS keyword. The cell types data is a single integer value per cell that specified cell type (see vtkCell.h or Figure 2).

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/996037
推荐阅读
相关标签
  

闽ICP备14008679号