1 /*
2  * Copyright (c) 2005 Sandia Corporation. Under the terms of Contract
3  * DE-AC04-94AL85000 with Sandia Corporation, the U.S. Governement
4  * retains certain rights in this software.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met:
9  *
10  *     * Redistributions of source code must retain the above copyright
11  *       notice, this list of conditions and the following disclaimer.
12  *
13  *     * Redistributions in binary form must reproduce the above
14  *       copyright notice, this list of conditions and the following
15  *       disclaimer in the documentation and/or other materials provided
16  *       with the distribution.
17  *
18  *     * Neither the name of Sandia Corporation nor the names of its
19  *       contributors may be used to endorse or promote products derived
20  *       from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  *
34  */
35 
36 #include "exodusII.h"
37 
38 /*!
39 \deprecated Use ex_put_conn()(exoid, EX_ELEM_BLOCK, elem_blk_id, connect, 0, 0)
40 
41 The function ex_put_elem_conn() writes the connectivity array for an
42 element block. The function ex_put_elem_block() must be invoked before
43 this call is made.
44 
45 \return In case of an error, ex_put_elem_conn() returns a negative
46 number; a warning will return a positive number.  Possible causes of
47 errors include:
48   -  data file opened for read only.
49   -  data file not initialized properly with call to ex_put_init().
50   -  ex_put_elem_block() was not called previously.
51 
52 
53 \param[in] exoid        exodus file ID returned from a previous call to ex_create() or ex_open().
54 \param[in] elem_blk_id  The element block ID.
55 \param[in] connect      Size [num_elem_this_blk,num_nodes_per_elem],
56                         The connectivity array; a list of nodes (internal node IDs;
57                         See Section LocalNodeIds) that define each element in the element
58                         block. The node index cycles faster than the element index.
59 
60 Refer to the code example in ex_put_elem_block() for an example of
61 writing the connectivity array for an element block.
62 
63 */
64 
ex_put_elem_conn(int exoid,int elem_blk_id,const int * connect)65 int ex_put_elem_conn (int   exoid,
66                       int   elem_blk_id,
67                       const int  *connect)
68 {
69   return ex_put_conn(exoid, EX_ELEM_BLOCK, elem_blk_id, connect, 0, 0);
70 }
71