| ||
Home | Modules | Examples |
State | Each state describes everything necessary to solve a mesh at a given instant in time. Multiple states will be required for moving or morphing meshes. |
Processor | Contains the mesh, solution, and initial conditions for the state. |
Field Set | A field set is the collection of post data. It may (and probably will) contain many fields. |
Field | One post data variable (e.g. "Pressure"). |
Field Data | Either the cell, vertex, or face values for a particular post data variable. |
Map | The map converts a data index into an ID. For instance given vertex data { (0, 0, 0), (0, 1, 0), (1, 1, 0) } and the map { 3, 1, 4 }, we know that Vertex 1 (0, 1, 0) Vertex 3 (0, 0, 0) Vertex 4 (1, 1, 0) |