Cell_Set


Synopsis

Holds cell-based data for all cells of the same type in a mesh.


group Cell_Set {
     int ncells;      /* number of cells */
     int cell_ndim;      /* cell dimensionality */
     int cell_nnodes;      /* number of nodes per cell */
     int cell_corner_nnodes => cell_nnodes;      /* # corner nodes per cell */
     int cell_order;      /* cells' order */
     int poly_flag;      /* flag used for polylines, polytriangles */
     int node_connect_list[ncells*cell_nnodes]; /* node connectivity array */
     string+opt      name;      /* user supplied string to name cell set */
     int+opt      nprops;
     float+opt      props[nprops];
};

Description

The Cell_Set holds all of the non-coordinate, non-data information for all cells of the same type (Point, Line, Polyline, Tri, Polytri, Quad, Tet, Hex, Pyr, or Prism, and so on) within an unstructured mesh.

This basic Cell_Set definition must be qualified with the information specific to each cell type before it can be used. See the individual headings for the cell types.

To get/set one entire cell_set: