#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define STRINGIFY(x) #x
#define TOSTRING(x) STRINGIFY(x)
#define EXCHECK(funcall) \
do { \
int f_error = (funcall); \
printf("after %s, error = %d\n", TOSTRING(funcall), f_error); \
if (f_error != EX_NOERR && f_error != EX_WARN) { \
fprintf(stderr, "Error calling %s\n", TOSTRING(funcall)); \
ex_close(exoid); \
exit(-1); \
} \
} while (0)
int main(int argc, char **argv)
{
int CPU_word_size = 0;
int IO_word_size = 4;
&CPU_word_size,
&IO_word_size);
printf("after ex_create for test.exo, exoid = %d\n", exoid);
printf(" cpu word size: %d io word size: %d\n", CPU_word_size, IO_word_size);
int num_dim = 3;
int num_nodes = 33;
int num_elem = 7;
int num_elem_blk = 7;
int num_node_sets = 2;
int num_side_sets = 5;
char *title = "This is a test";
EXCHECK(
ex_put_init(exoid, title, num_dim, num_nodes, num_elem, num_elem_blk, num_node_sets,
num_side_sets));
float x[100], y[100], z[100];
x[0] = 0.0; y[0] = 0.0; z[0] = 0.0;
x[1] = 1.0; y[1] = 0.0; z[1] = 0.0;
x[2] = 1.0; y[2] = 1.0; z[2] = 0.0;
x[3] = 0.0; y[3] = 1.0; z[3] = 0.0;
x[4] = 1.0; y[4] = 0.0; z[4] = 0.0;
x[5] = 2.0; y[5] = 0.0; z[5] = 0.0;
x[6] = 2.0; y[6] = 1.0; z[6] = 0.0;
x[7] = 1.0; y[7] = 1.0; z[7] = 0.0;
x[8] = 0.0; y[8] = 0.0; z[8] = 0.0;
x[9] = 10.0; y[9] = 0.0; z[9] = 0.0;
x[10] = 10.0; y[10] = 0.0; z[10] = -10.0;
x[11] = 1.0; y[11] = 0.0; z[11] = -10.0;
x[12] = 1.0; y[12] = 10.0; z[12] = 0.0;
x[13] = 10.0; y[13] = 10.0; z[13] = 0.0;
x[14] = 10.0; y[14] = 10.0; z[14] = -10.0;
x[15] = 1.0; y[15] = 10.0; z[15] = -10.0;
x[16] = 0.0; y[16] = 0.0; z[16] = 0.0;
x[17] = 1.0; y[17] = 0.0; z[17] = 5.0;
x[18] = 10.0; y[18] = 0.0; z[18] = 2.0;
x[19] = 7.0; y[19] = 5.0; z[19] = 3.0;
x[20] = 3.0; y[20] = 0.0; z[20] = 6.0;
x[21] = 6.0; y[21] = 0.0; z[21] = 0.0;
x[22] = 0.0; y[22] = 0.0; z[22] = 0.0;
x[23] = 3.0; y[23] = 2.0; z[23] = 6.0;
x[24] = 6.0; y[24] = 2.0; z[24] = 2.0;
x[25] = 0.0; y[25] = 2.0; z[25] = 0.0;
x[26] = 2.7; y[26] = 1.7; z[26] = 2.7;
x[27] = 6.0; y[27] = 1.7; z[27] = 3.3;
x[28] = 5.7; y[28] = 1.7; z[28] = 1.7;
x[29] = 3.7; y[29] = 0.0; z[29] = 2.3;
x[30] = 0.0; y[30] = 0.0; z[30] = 0.0;
x[31] = 10.0; y[31] = 0.0; z[31] = 0.0;
x[32] = 10.0; y[32] = 10.0; z[32] = 10.0;
char *coord_names[] = {"xcoor", "ycoor", "zcoor"};
{
char *attrib_names[] = {"Node_attr_1", "Node_attr_2"};
}
int *elem_map = (int *)calloc(num_elem, sizeof(int));
for (int i = 1; i <= num_elem; i++) {
elem_map[i - 1] = i * 10;
}
free(elem_map);
for (int i = 0; i < 10; i++) {
}
char *block_names[10];
block_names[0] = "block_1";
block_names[1] = "block_2";
block_names[2] = "block_3";
block_names[3] = "block_4";
block_names[4] = "block_5";
block_names[5] = "block_6";
block_names[6] = "block_7";
printf("after ex_put_name, error = %d\n", error);
for (int i = 0; i < num_elem_blk; i++) {
}
char *prop_names[2];
prop_names[0] = "MATERIAL_PROPERTY_LONG_NAME_32CH";
prop_names[1] = "DENSITY";
{
int connect[] = {1, 2, 3, 4};
}
{
int connect[] = {5, 6, 7, 8};
}
{
int connect[] = {9, 10, 11, 12, 13, 14, 15, 16};
}
{
int connect[] = {17, 18, 19, 20};
}
{
int connect[] = {21, 22, 23, 24, 25, 26};
}
{
int connect[] = {17, 18, 19, 20, 27, 28, 30, 29};
}
{
int connect[] = {31, 32, 33};
}
float attrib[1];
attrib[0] = 3.14159;
attrib[0] = 6.14159;
{
char *attrib_names[] = {"THICKNESS"};
for (int i = 0; i < num_elem_blk; i++) {
}
}
int num_nodes_in_nset[] = {5, 3};
int nsids[] = {20, 21};
{
int node_list[] = {10, 11, 12, 13, 14};
float dist_fact[] = {1.0, 2.0, 3.0, 4.0, 5.0};
}
{
int node_list[] = {20, 21, 22};
float dist_fact[] = {1.1, 2.1, 3.1};
}
char *nset_names[] = {"nset_1", "nset_2"};
int prop_array[] = {1000, 2000};
{
char *attrib_names[] = {"Nodeset_attribute"};
}
int num_face_in_sset[] = {2, 2, 7, 8, 10};
int ssids[] = {30, 31, 32, 33, 34};
{
int elem_list[] = {2, 2};
int side_list[] = {4, 2};
float dist_fact[] = {30.0, 30.1, 30.2, 30.3};
}
{
int elem_list[] = {1, 2};
int side_list[] = {2, 3};
float dist_fact[] = {31.0, 31.1, 31.2, 31.3};
}
{
int elem_list[] = {3, 3, 3, 3, 3, 3, 3};
int side_list[] = {5, 3, 3, 2, 4, 1, 6};
}
{
int elem_list[] = {4, 4, 4, 4, 6, 6, 6, 6};
int side_list[] = {1, 2, 3, 4, 1, 2, 3, 4};
}
{
int elem_list[] = {5, 5, 5, 5, 5, 7, 7, 7, 7, 7};
int side_list[] = {1, 2, 3, 4, 5, 1, 2, 3, 4, 5};
}
char *sset_names[] = {"sset_1", "sset_2", "sset_3", "sset_4", "sset_5"};
int num_qa_rec = 2;
char *qa_record[2][4];
qa_record[0][0] = "TESTWT";
qa_record[0][1] = "testwt";
qa_record[0][2] = "07/07/93";
qa_record[0][3] = "15:41:33";
qa_record[1][0] = "Thirty-Two character QA Record|";
qa_record[1][1] = " ";
qa_record[1][2] = "";
qa_record[1][3] = " ";
char *info[3];
info[0] = "This is the first information record.";
info[1] = "";
info[2] = "This info record is exactly 80 characters long. last character should be pipe |";
int num_info = 3;
int num_glo_vars = 1;
{
char *var_names[] = {"glo_vars"};
}
int num_nod_vars = 2;
{
char *var_names[] = {"node_variable_a_very_long_name_0", "nod_var1"};
}
int num_ele_vars = 3;
{
char *var_names[] = {"this_variable_name_is_short", "this_variable_name_is_just_right",
"this_variable_name_is_tooooo_long"};
}
int num_nset_vars = 3;
{
char *var_names[] = {"ns_var0", "ns_var1", "ns_var2"};
}
int num_sset_vars = 3;
{
char *var_names[] = {"ss_var0", "ss_var1", "ss_var2"};
}
int *truth_tab = (int *)calloc((num_elem_blk * num_ele_vars), sizeof(int));
{
int k = 0;
for (int i = 0; i < num_elem_blk; i++) {
for (int j = 0; j < num_ele_vars; j++) {
truth_tab[k++] = 1;
}
}
}
free(truth_tab);
float *glob_var_vals = (float *)calloc(num_glo_vars, CPU_word_size);
float *nodal_var_vals = (float *)calloc(num_nodes, CPU_word_size);
float *elem_var_vals = (float *)calloc(num_ele_vars, CPU_word_size);
float *sset_var_vals = (float *)calloc(10, CPU_word_size);
float *nset_var_vals = (float *)calloc(5, CPU_word_size);
int num_time_steps = 10;
for (int i = 0; i < num_time_steps; i++) {
int whole_time_step = i + 1;
float time_value = (float)(i + 1) / 100.;
for (int j = 0; j < num_glo_vars; j++) {
glob_var_vals[j] = (float)(j + 2) * time_value;
}
for (int k = 1; k <= num_nod_vars; k++) {
for (int j = 0; j < num_nodes; j++) {
nodal_var_vals[j] = (float)k + ((float)(j + 1) * time_value);
}
}
for (int k = 1; k <= num_ele_vars; k++) {
for (int j = 0; j < num_elem_blk; j++) {
for (
int m = 0; m < blocks[j].
num_entry; m++) {
elem_var_vals[m] = (float)(k + 1) + (float)(j + 2) + ((float)(m + 1) * time_value);
}
}
}
for (int k = 1; k <= num_sset_vars; k++) {
for (int j = 0; j < num_side_sets; j++) {
for (int m = 0; m < num_face_in_sset[j]; m++) {
sset_var_vals[m] = (float)(k + 2) + (float)(j + 3) + ((float)(m + 1) * time_value);
}
sset_var_vals));
}
}
for (int k = 1; k <= num_nset_vars; k++) {
for (int j = 0; j < num_node_sets; j++) {
for (int m = 0; m < num_nodes_in_nset[j]; m++) {
nset_var_vals[m] = (float)(k + 3) + (float)(j + 4) + ((float)(m + 1) * time_value);
}
nset_var_vals));
}
}
}
free(glob_var_vals);
free(nodal_var_vals);
free(elem_var_vals);
free(sset_var_vals);
free(nset_var_vals);
return 0;
}
#define EXCHECK(funcall)
Definition ex_copy.c:15
@ EX_SIDE_SET
Definition exodusII.h:278
@ EX_NODE_SET
Definition exodusII.h:270
@ EX_NODAL
Definition exodusII.h:268
@ EX_GLOBAL
Definition exodusII.h:285
@ EX_ELEM_MAP
Definition exodusII.h:280
@ EX_ELEM_BLOCK
Definition exodusII.h:275
@ EX_VERBOSE
Definition exodusII.h:390
char * ex_copy_string(char *dest, char const *source, size_t elements)
Definition ex_utils.c:2447
#define EX_CLOBBER
Definition exodusII.h:101
int ex_put_set_param(int exoid, ex_entity_type set_type, ex_entity_id set_id, int64_t num_entries_in_set, int64_t num_dist_fact_in_set)
Definition ex_put_set_param.c:39
int ex_put_names(int exoid, ex_entity_type obj_type, char *const names[])
Definition ex_put_names.c:37
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_prop_names(int exoid, ex_entity_type obj_type, int num_props, char **prop_names)
Definition ex_put_prop_names.c:97
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_prop(int exoid, ex_entity_type obj_type, ex_entity_id obj_id, const char *prop_name, ex_entity_id value)
Definition ex_put_prop.c:77
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_prop_array(int exoid, ex_entity_type obj_type, const char *prop_name, const void_int *values)
Definition ex_put_prop_array.c:71
int ex_put_name(int exoid, ex_entity_type obj_type, ex_entity_id entity_id, const char *name)
Definition ex_put_name.c:85
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_put_block_params(int exoid, size_t block_count, const struct ex_block *blocks)
Definition ex_put_block_params.c:21
int ex_put_attr_param(int exoid, ex_entity_type obj_type, ex_entity_id obj_id, int num_attrs)
Definition ex_put_attr_param.c:35
int ex_put_set_dist_fact(int exoid, ex_entity_type set_type, ex_entity_id set_id, const void *set_dist_fact)
Definition ex_put_set_dist_fact.c:37
int ex_put_set(int exoid, ex_entity_type set_type, ex_entity_id set_id, const void_int *set_entry_list, const void_int *set_extra_list)
Definition ex_put_set.c:41
int ex_put_attr_names(int exoid, ex_entity_type blk_type, ex_entity_id blk_id, char **names)
int ex_put_id_map(int exoid, ex_entity_type map_type, const void_int *map)
Definition ex_put_id_map.c:37
int ex_put_time(int exoid, int time_step, const void *time_value)
Definition ex_put_time.c:51
int ex_put_variable_names(int exoid, ex_entity_type obj_type, int num_vars, char *const var_names[])
Definition ex_put_variable_names.c:125
int ex_put_variable_param(int exoid, ex_entity_type obj_type, int num_vars)
Definition ex_put_variable_param.c:124
int ex_put_truth_table(int exoid, ex_entity_type obj_type, int num_blk, int num_var, const int *var_tab)
Definition ex_put_truth_table.c:67
int ex_put_var(int exoid, int time_step, ex_entity_type var_type, int var_index, ex_entity_id obj_id, int64_t num_entries_this_obj, const void *var_vals)
Definition ex_put_var.c:77
#define MAX_STR_LENGTH
Definition exodusII.h:409
#define ex_create(path, mode, comp_ws, io_ws)
Definition exodusII.h:591
int ex_put_qa(int exoid, int num_qa_records, char *qa_record[][4])
Definition ex_put_qa.c:63
int ex_opts(int options)
Definition ex_opts.c:56
int ex_put_info(int exoid, int num_info, char *const info[])
Definition ex_put_info.c:73
int ex_close(int exoid)
Definition ex_close.c:47
int ex_update(int exoid)
Definition ex_update.c:30
Definition exodusII.h:492
int64_t num_nodes_per_entry
Definition exodusII.h:497
ex_entity_type type
Definition exodusII.h:494
int64_t num_attribute
Definition exodusII.h:500
int64_t num_entry
Definition exodusII.h:496
ex_entity_id id
Definition exodusII.h:493
char topology[MAX_STR_LENGTH+1]
Definition exodusII.h:495
int64_t num_edges_per_entry
Definition exodusII.h:498
int64_t num_faces_per_entry
Definition exodusII.h:499