Ejemplo n.º 1
0
int ne_put_n_elem_attr(int          neid,           /* NetCDF/Exodus file ID */
                       ex_entity_id elem_blk_id,    /* Element block ID */
                       int64_t      start_elem_num, /* Starting position to write to */
                       int64_t      num_elems,      /* Number of elements to write */
                       void *       attrib          /* Attribute */
                       )
{
  return ex_put_partial_attr(neid, EX_ELEM_BLOCK, elem_blk_id, start_elem_num, num_elems, attrib);
}
Ejemplo n.º 2
0
int ex_put_n_attr (int   exoid,
		   ex_entity_type blk_type,
		   ex_entity_id   blk_id,
		   int64_t   start_entity,
		   int64_t   num_entity,
		   const void *attrib)
{
  return ex_put_partial_attr(exoid, blk_type, blk_id, start_entity, num_entity, attrib);
}
Ejemplo n.º 3
0
int ex_put_partial_elem_attr(int exoid, ex_entity_id elem_blk_id, int64_t start_elem_num,
                             int64_t num_elems, void *attrib)
{
  return ex_put_partial_attr(exoid, EX_ELEM_BLOCK, elem_blk_id, start_elem_num, num_elems, attrib);
}