Exodus 8.24
Loading...
Searching...
No Matches
/test/testwt-one-attrib.c
/*
* Copyright(C) 1999-2020 National Technology & Engineering Solutions
* of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
* NTESS, the U.S. Government retains certain rights in this software.
*
* See packages/seacas/LICENSE for details
*/
#undef NDEBUG
#include "exodusII.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
int exoid, num_dim, num_nodes, num_elem, num_elem_blk;
int num_elem_in_block[10], num_nodes_per_elem[10], num_attr[10];
int num_node_sets, num_side_sets, error;
int i, j, *connect;
int ebids[10], ids[10];
int CPU_word_size, IO_word_size;
char title[MAX_LINE_LENGTH + 1], elem_type[MAX_STR_LENGTH + 1];
float version;
float *attrib;
float x[100], y[100], z[100];
char *coord_names[3];
/* Coordinate Frames */
int cf_ids[2] = {20, 13};
float pt_coords[9 * 2] = {1, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0};
char tags[2] = {'r', 'c'};
/* Specify compute and i/o word size */
CPU_word_size = 0; /* sizeof(float) */
IO_word_size = 4; /* (4 bytes) */
/* create EXODUS II file */
exoid = ex_create("test.exo", /* filename path */
EX_CLOBBER, /* create mode */
&CPU_word_size, /* CPU float word size in bytes */
&IO_word_size); /* I/O float word size in bytes */
/* initialize file with parameters */
num_dim = 3;
num_nodes = 19;
num_elem = 12;
;
num_elem_blk = 1;
num_node_sets = 0;
num_side_sets = 0;
error = ex_put_init(exoid, "This is testwt1", num_dim, num_nodes, num_elem, num_elem_blk,
num_node_sets, num_side_sets);
assert(error == 0);
/* write nodal coordinates values and names to database */
/* Quad #1 */
x[0] = 1.0000000E+00;
x[1] = 5.0000000E-01;
x[2] = 1.0000000E+00;
x[3] = 1.0000000E+00;
x[4] = 7.5000000E-01;
x[5] = 5.0000000E-01;
x[6] = 1.0000000E+00;
x[7] = 7.5000000E-01;
x[8] = 1.0000000E+00;
x[9] = 5.0000000E-01;
x[10] = 5.0000000E-01;
x[11] = 5.0000000E-01;
x[12] = 1.0000000E+00;
x[13] = 1.0000000E+00;
x[14] = 7.5000000E-01;
x[15] = 7.5000000E-01;
x[16] = 1.0000000E+00;
x[17] = 7.5000000E-01;
x[18] = 1.0000000E+00;
y[0] = 5.0000000E-01;
y[1] = 1.0000000E+00;
y[2] = 1.0000000E+00;
y[3] = 7.5000000E-01;
y[4] = 1.0000000E+00;
y[5] = 5.0000000E-01;
y[6] = 5.0000000E-01;
y[7] = 5.0000000E-01;
y[8] = 5.0000000E-01;
y[9] = 1.0000000E+00;
y[10] = 7.5000000E-01;
y[11] = 1.0000000E+00;
y[12] = 1.0000000E+00;
y[13] = 7.5000000E-01;
y[14] = 1.0000000E+00;
y[15] = 7.5000000E-01;
y[16] = 1.0000000E+00;
y[17] = 1.0000000E+00;
y[18] = 7.5000000E-01;
z[0] = 5.0000000E-01;
z[1] = 5.0000000E-01;
z[2] = 5.0000000E-01;
z[3] = 5.0000000E-01;
z[4] = 5.0000000E-01;
z[5] = 1.0000000E+00;
z[6] = 1.0000000E+00;
z[7] = 1.0000000E+00;
z[8] = 7.5000000E-01;
z[9] = 1.0000000E+00;
z[10] = 1.0000000E+00;
z[11] = 7.5000000E-01;
z[12] = 1.0000000E+00;
z[13] = 1.0000000E+00;
z[14] = 1.0000000E+00;
z[15] = 1.0000000E+00;
z[16] = 7.5000000E-01;
z[17] = 7.5000000E-01;
z[18] = 7.5000000E-01;
error = ex_put_coord(exoid, x, y, z);
assert(error == 0);
coord_names[0] = "xcoor";
coord_names[1] = "ycoor";
coord_names[2] = "zcoor";
error = ex_put_coord_names(exoid, coord_names);
assert(error == 0);
/* write element block parameters */
num_elem_in_block[0] = 12;
num_nodes_per_elem[0] = 4;
ebids[0] = 10;
num_attr[0] = 3;
error = ex_put_block(exoid, EX_ELEM_BLOCK, ebids[0], "quad", num_elem_in_block[0],
num_nodes_per_elem[0], 0, 0, num_attr[0]);
assert(error == 0);
/* write element connectivity */
connect = (int *)calloc(num_elem_in_block[0] * num_nodes_per_elem[0], sizeof(int));
connect[0] = 1;
connect[1] = 4;
connect[2] = 19;
connect[3] = 9;
connect[4] = 4;
connect[5] = 3;
connect[6] = 17;
connect[7] = 19;
connect[8] = 3;
connect[9] = 5;
connect[10] = 18;
connect[11] = 17;
connect[12] = 5;
connect[13] = 2;
connect[14] = 12;
connect[15] = 18;
connect[16] = 9;
connect[17] = 19;
connect[18] = 14;
connect[19] = 7;
connect[20] = 7;
connect[21] = 14;
connect[22] = 16;
connect[23] = 8;
connect[24] = 19;
connect[25] = 17;
connect[26] = 13;
connect[27] = 14;
connect[28] = 17;
connect[29] = 18;
connect[30] = 15;
connect[31] = 13;
connect[32] = 14;
connect[33] = 13;
connect[34] = 15;
connect[35] = 16;
connect[36] = 8;
connect[37] = 16;
connect[38] = 11;
connect[39] = 6;
connect[40] = 18;
connect[41] = 12;
connect[42] = 10;
connect[43] = 15;
connect[44] = 16;
connect[45] = 15;
connect[46] = 10;
connect[47] = 11;
error = ex_put_conn(exoid, EX_ELEM_BLOCK, ebids[0], connect, NULL, NULL);
assert(error == 0);
free(connect);
/* write element block attributes (3 per block) */
attrib = (float *)calloc(num_elem_in_block[0] * num_attr[0], sizeof(float));
#if 0
{
k = 0;
for (i=0; i < num_elem_in_block[0]; i++) {
for (j = 0; j < num_attr[0]; j++) {
attrib[k++] = 10*(i+1) + j+1;
}
}
}
error = ex_put_attr (exoid, EX_ELEM_BLOCK, ebids[0], &attrib[0]);
assert(error == 0);
#else
{
for (j = 0; j < num_attr[0]; j++) {
for (i = 0; i < num_elem_in_block[0]; i++) {
attrib[i] = 10 * (i + 1) + j + 1;
}
error = ex_put_one_attr(exoid, EX_ELEM_BLOCK, ebids[0], j + 1, &attrib[0]);
assert(error == 0);
}
}
#endif
free(attrib);
/* Add a coordinate frame just to give test coverage... */
{
error = ex_put_coordinate_frames(exoid, 2, cf_ids, pt_coords, tags);
assert(error == 0);
}
/* close the EXODUS files
*/
error = ex_close(exoid);
assert(error == 0);
/* Reopen the file and read the attributes to see if they were written correctly */
CPU_word_size = 0; /* sizeof(float) */
IO_word_size = 0; /* use what is stored in file */
/* open EXODUS II files */
exoid = ex_open("test.exo", /* filename path */
EX_READ, /* access mode = READ */
&CPU_word_size, /* CPU word size */
&IO_word_size, /* IO word size */
&version); /* ExodusII library version */
assert(exoid >= 0);
if (exoid < 0) {
exit(1);
}
error = ex_get_init(exoid, title, &num_dim, &num_nodes, &num_elem, &num_elem_blk, &num_node_sets,
&num_side_sets);
assert(error == 0);
if (num_elem_blk > 0) {
error = ex_get_ids(exoid, EX_ELEM_BLOCK, ids);
assert(error == 0);
for (i = 0; i < num_elem_blk; i++) {
error = ex_get_block(exoid, EX_ELEM_BLOCK, ids[i], elem_type, &(num_elem_in_block[i]),
&(num_nodes_per_elem[i]), NULL, NULL, &(num_attr[i]));
assert(error == 0);
}
/* read element block attributes */
attrib = (float *)calloc(num_elem_in_block[0], sizeof(float));
for (j = 0; j < num_attr[0]; j++) {
error = ex_get_one_attr(exoid, EX_ELEM_BLOCK, ids[0], j + 1, &attrib[0]);
assert(error == 0);
if (error == 0) {
for (i = 0; i < num_elem_in_block[0]; i++) {
assert(attrib[i] == 10 * (i + 1) + j + 1);
}
}
}
free(attrib);
}
/* Read the coordinate frame... */
{
int nframes;
int rdcf_ids[2];
float rdpt_coords[9 * 2];
char rdtags[2];
assert(nframes == 2);
error = ex_get_coordinate_frames(exoid, &nframes, rdcf_ids, rdpt_coords, rdtags);
assert(error == 0);
assert(rdtags[0] == tags[0] && rdtags[1] == tags[1]);
assert(rdcf_ids[0] == cf_ids[0] && rdcf_ids[1] == cf_ids[1]);
for (i = 0; i < nframes * 9; i++) {
assert(rdpt_coords[i] == pt_coords[i]);
}
}
error = ex_close(exoid);
assert(error == 0);
return 0;
}
@ EX_ELEM_BLOCK
Definition exodusII.h:267
@ EX_ABORT
Definition exodusII.h:292
@ EX_VERBOSE
Definition exodusII.h:290
@ EX_INQ_COORD_FRAMES
Definition exodusII.h:187
#define EX_READ
Definition exodusII.h:95
#define EX_CLOBBER
Definition exodusII.h:98
int ex_get_coordinate_frames(int exoid, int *nframes, void_int *cf_ids, void *pt_coordinates, char *tags)
Definition ex_get_coordinate_frames.c:97
int ex_put_conn(int exoid, ex_entity_type blk_type, ex_entity_id blk_id, const void_int *node_conn, const void_int *elem_edge_conn, const void_int *elem_face_conn)
Definition ex_put_conn.c:44
int ex_put_one_attr(int exoid, ex_entity_type obj_type, ex_entity_id obj_id, int attrib_index, const void *attrib)
Definition ex_put_one_attr.c:37
int ex_put_coordinate_frames(int exoid, int nframes, const void_int *cf_ids, const void *pt_coordinates, const char *tags)
Definition ex_put_coordinate_frames.c:30
int ex_put_coord_names(int exoid, char *const coord_names[])
Definition ex_put_coord_names.c:46
int ex_put_coord(int exoid, const void *x_coor, const void *y_coor, const void *z_coor)
Definition ex_put_coord.c:87
int ex_put_attr(int exoid, ex_entity_type blk_type, ex_entity_id blk_id, const void *attrib)
Definition ex_put_attr.c:37
int ex_put_init(int exoid, const char *title, int64_t num_dim, int64_t num_nodes, int64_t num_elem, int64_t num_elem_blk, int64_t num_node_sets, int64_t num_side_sets)
Definition ex_put_init.c:53
int ex_get_block(int exoid, ex_entity_type blk_type, ex_entity_id blk_id, char *elem_type, void_int *num_entries_this_blk, void_int *num_nodes_per_entry, void_int *num_edges_per_entry, void_int *num_faces_per_entry, void_int *num_attr_per_entry)
Definition ex_get_block.c:36
int ex_get_init(int exoid, char *title, void_int *num_dim, void_int *num_nodes, void_int *num_elem, void_int *num_elem_blk, void_int *num_node_sets, void_int *num_side_sets)
Definition ex_get_init.c:75
int ex_get_ids(int exoid, ex_entity_type obj_type, void_int *ids)
Definition ex_get_ids.c:96
int ex_get_one_attr(int exoid, ex_entity_type obj_type, ex_entity_id obj_id, int attrib_index, void *attrib)
Definition ex_get_one_attr.c:32
int ex_put_block(int exoid, ex_entity_type blk_type, ex_entity_id blk_id, const char *entry_descrip, int64_t num_entries_this_blk, int64_t num_nodes_per_entry, int64_t num_edges_per_entry, int64_t num_faces_per_entry, int64_t num_attr_per_entry)
Definition ex_put_block.c:47
#define MAX_STR_LENGTH
Definition exodusII.h:312
#define MAX_LINE_LENGTH
Definition exodusII.h:318
int64_t ex_inquire_int(int exoid, ex_inquiry req_info)
Definition ex_inquire.c:1021
#define ex_create(path, mode, comp_ws, io_ws)
Definition exodusII.h:494
int ex_opts(int options)
Definition ex_opts.c:56
#define ex_open(path, mode, comp_ws, io_ws, version)
Definition exodusII.h:500
int ex_close(int exoid)
Definition ex_close.c:47