Cells

Synopsis

group Cells {
     int ncell_sets; /* number of cell sets */
     Cell_Set cell_set[ncell_sets]; /* array of cell sets */
};

Description

Cells contains the different Cell_Sets.

Cell_Sets hold all of the cells of one type (Point, Line, Polyline, Tri, Polytri, Quad, Tet, Hex, Pyr, or Prism) within an unstructured mesh. There are as many Cell_Sets as there are different types of cells in the Mesh.

Subobjects

ncell_sets

An integer that sets the number of Cell_Sets. FLDget_ncell_sets

cell_set[ncell_sets]

An array of type Cell_Set that holds the Cell_Sets. It is ncell_sets long.
To get/set an entire single cell_set:
FLDget_cell_set

Files

v/fld.v.

See Also

none.