Exodus 8.24
|
#include "exodusII.h"
Functions | |
int | ex_put_elem_attr (int exoid, ex_entity_id elem_blk_id, const void *attrib) |
int ex_put_elem_attr | ( | int | exoid, |
ex_entity_id | elem_blk_id, | ||
const void * | attrib ) |
The function ex_put_elem_attr() writes the attributes for an element block. Each element in the element block must have the same number of attributes, so there are(num_attr x num_elem_this_blk) attributes for each element block. The function ex_put_elem_block() must be invoked before this call is made.
Because the attributes are floating point values, the application code must declare the array passed to be the appropriate type (float or double) to match the compute word size passed in ex_create() or ex_open().
[in] | exoid | exodus file ID returned from a previous call to ex_create() or ex_open(). |
[in] | elem_blk_id | The element block ID. |
[in] | attrib | Size [num_elem_this_blk*num_attr] The list of attributes for the element block. The num_attr index cycles faster. |
Refer to the code example in ex_put_elem_block() for an example of writing the attributes array for an element block.