|
Exodus
7.10
|
Functions | |
| int | ex_put_init (int exoid, const char *title, int64_t num_dim, int64_t num_nodes, int64_t num_elem, int64_t num_elem_blk, int64_t num_node_sets, int64_t num_side_sets) |
| int ex_put_init | ( | int | exoid, |
| const char * | title, | ||
| int64_t | num_dim, | ||
| int64_t | num_nodes, | ||
| int64_t | num_elem, | ||
| int64_t | num_elem_blk, | ||
| int64_t | num_node_sets, | ||
| int64_t | num_side_sets | ||
| ) |
The function ex_put_init() writes the initialization parameters to the exodus file. This function must be called once (and only once) before writing any data to the file.
| exoid | exodus file ID returned from a previous call to ex_create() or ex_open(). |
| title | Database title. Maximum length is MAX_LINE_LENGTH. |
| num_dim | The dimensionality of the database. This is the number of coordinates per node. |
| num_nodes | The number of nodal points. |
| num_elem | The number of elements. |
| num_elem_blk | The number of element blocks. |
| num_node_sets | The number of node sets. |
| num_side_sets | The number of side sets. |
The following code segment will initialize an open exodus file with the specified parameters: