Exodus 8.24
Loading...
Searching...
No Matches
ex_put_elem_conn.c File Reference
#include "exodusII.h"

Functions

int ex_put_elem_conn (int exoid, ex_entity_id elem_blk_id, const void_int *connect)
 

Function Documentation

◆ ex_put_elem_conn()

int ex_put_elem_conn ( int exoid,
ex_entity_id elem_blk_id,
const void_int * connect )
Deprecated
Use ex_put_conn()(exoid, EX_ELEM_BLOCK, elem_blk_id, connect, 0, 0)

The function ex_put_elem_conn() writes the connectivity array for an element block. The function ex_put_elem_block() must be invoked before this call is made.

Returns
In case of an error, ex_put_elem_conn() returns a negative number; a warning will return a positive number. Possible causes of errors include:
Parameters
[in]exoidexodus file ID returned from a previous call to ex_create() or ex_open().
[in]elem_blk_idThe element block ID.
[in]connectSize [num_elem_this_blk,num_nodes_per_elem], The connectivity array; a list of nodes (internal node IDs; See Section LocalNodeIds) that define each element in the element block. The node index cycles faster than the element index.

Refer to the code example in ex_put_elem_block() for an example of writing the connectivity array for an element block.