Enumerations

vecds/include/vecds/fe_flags.h File Reference

Enumerations

enum  FiniteElementFlags {
  null = 0x000,
  line = 0x012,
  triangle = 0x133,
  quad = 0x144
}

Enumeration Type Documentation

This is a simple set of abstract data flags that identifies specific finite element types that are compatible with vecds. These data types enumerate the types of graphical output supported. These are, null (do nothing, join nothing), line (join two vertices), triangle (join three vertices), and quad (join four vertices).

The order of enumerating nodes is exceptionally important.

Author:
Toby D. Young
Enumerator:
null 

A null (empty) finite element: zero faces, zero lines, zero vertices. The default in any case!

line 

A line: zero faces, one line, two vertices.

triangle 

A triangle: one face, three lines, three vertices.

quad 

A quadralateral: one face, four lines, four vertices.