1 /*
2  * Copyright (c) 2005-2017 National Technology & Engineering Solutions
3  * of Sandia, LLC (NTESS).  Under the terms of Contract DE-NA0003525 with
4  * NTESS, the U.S. Government 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 NTESS 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_attr()(exoid, EX_ELEM_BLOCK, elem_blk_id, attrib)
40 
41 The function ex_put_elem_attr() writes the attributes for an element
42 block. Each element in the element block must have the same number of
43 attributes, so there are(num_attr x num_elem_this_blk)
44 attributes for each element block. The function ex_put_elem_block()
45 must be invoked before this call is made.
46 
47 Because the attributes are floating point values, the application code
48 must declare the array passed to be the appropriate type (float or
49 double) to match the compute word size passed in ex_create() or
50 ex_open().
51 
52 \return In case of an error, ex_put_elem_attr() returns a negative
53 number; a warning will return a positive number. Possible causes of
54 errors include:
55   -  data file not properly opened with call to ex_create() or ex_open()
56   -  data file opened for read only.
57   -  data file not initialized properly with call to ex_put_init().
58   -  ex_put_elem_block() was not called previously for specified element block
59 ID.
60   -  ex_put_elem_block() was called with 0 attributes specified.
61 
62 \param[in]  exoid       exodus file ID returned from a previous call to
63 ex_create() or ex_open().
64 \param[in] elem_blk_id  The element block ID.
65 \param[in] attrib       Size [num_elem_this_blk*num_attr]
66                         The list of attributes for the element block. The
67 num_attr
68                         index cycles faster.
69 
70 Refer to the code example in ex_put_elem_block() for an example of
71 writing the attributes array for an element block.
72 
73 */
74 
ex_put_elem_attr(int exoid,ex_entity_id elem_blk_id,const void * attrib)75 int ex_put_elem_attr(int exoid, ex_entity_id elem_blk_id, const void *attrib)
76 {
77   return ex_put_attr(exoid, EX_ELEM_BLOCK, elem_blk_id, attrib);
78 }
79