Exodus 8.24
Loading...
Searching...
No Matches
/test/testwt-nface-nside.c
/*
* Copyright(C) 1999-2021 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
*/
/*****************************************************************************
*
* testwt - test write an ExodusII database file (testwt-nfaced.exo)
*
*****************************************************************************/
#include "exodusII.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char **argv)
{
int num_elem_in_block[10], num_total_nodes_per_blk[10];
int num_face_in_block[10], num_total_faces_per_blk[10];
int error;
int i, j;
int bids[10], nnpe[10];
float x[100], y[100], z[100];
char *coord_names[3], *qa_record[2][4], *info[3], *var_names[3];
char *block_names[10], *nset_names[10], *sset_names[10];
char *prop_names[2], *attrib_names[2];
/* Specify compute and i/o word size */
int CPU_word_size = 0; /* sizeof(float) */
int IO_word_size = 4; /* (4 bytes) */
/* create EXODUS II file */
int exoid = ex_create("test-nfaced.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 */
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);
/* initialize file with parameters */
{
int num_dim = 3;
int num_nodes = 14;
int num_elem = 1;
int num_elem_blk = 1;
int num_node_sets = 0;
char *title = "This is a test";
par.num_dim = num_dim;
par.num_nodes = num_nodes;
par.num_edge = 0;
par.num_edge_blk = 0;
par.num_face = 5;
par.num_face_blk = 1;
par.num_elem = num_elem;
par.num_elem_blk = num_elem_blk;
par.num_node_sets = num_node_sets;
par.num_edge_sets = 0;
par.num_face_sets = 0;
par.num_side_sets = 0;
par.num_elem_sets = 0;
par.num_node_maps = 0;
par.num_edge_maps = 0;
par.num_face_maps = 0;
par.num_elem_maps = 0;
error = ex_put_init_ext(exoid, &par);
printf("after ex_put_init_ext, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
}
/* write nodal coordinates values and names to database */
x[0] = 0.00000e+00;
y[0] = 0.00000e+00;
z[0] = 0.00000e+00;
x[1] = 2.00000e+00;
y[1] = 0.00000e+00;
z[1] = 0.00000e+00;
x[2] = 0.00000e+00;
y[2] = 2.00000e+00;
z[2] = 0.00000e+00;
x[3] = 2.00000e+00;
y[3] = 2.00000e+00;
z[3] = 0.00000e+00;
x[4] = 0.00000e+00;
y[4] = 0.00000e+00;
z[4] = 2.00000e+00;
x[5] = 2.00000e+00;
y[5] = 0.00000e+00;
z[5] = 2.00000e+00;
x[6] = 0.00000e+00;
y[6] = 2.00000e+00;
z[6] = 2.00000e+00;
x[7] = 2.00000e+00;
y[7] = 2.00000e+00;
z[7] = 2.00000e+00;
x[8] = 0.00000e+00;
y[8] = 3.50000e+00;
z[8] = 1.00000e+00;
x[9] = 2.00000e+00;
y[9] = 3.50000e+00;
z[9] = 1.00000e+00;
x[10] = 0.00000e+00;
y[10] = 3.00000e+00;
z[10] = 1.50000e+00;
x[11] = 2.00000e+00;
y[11] = 3.00000e+00;
z[11] = 1.50000e+00;
x[12] = 0.00000e+00;
y[12] = 3.00000e+00;
z[12] = 0.50000e+00;
x[13] = 2.00000e+00;
y[13] = 3.00000e+00;
z[13] = 0.50000e+00;
error = ex_put_coord(exoid, x, y, z);
printf("after ex_put_coord, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
coord_names[0] = "x";
coord_names[1] = "y";
coord_names[2] = "z";
error = ex_put_coord_names(exoid, coord_names);
printf("after ex_put_coord_names, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
/* Write the face block parameters */
block_names[0] = "face_block_1";
num_face_in_block[0] = 15;
num_total_nodes_per_blk[0] = 54;
bids[0] = 10;
error = ex_put_block(exoid, EX_FACE_BLOCK, bids[0], "nsided", num_face_in_block[0],
num_total_nodes_per_blk[0], 0, 0, 0);
printf("after ex_put_block, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
/* write face connectivity */
int *connect = (int *)calloc(num_total_nodes_per_blk[0], sizeof(int));
i = 0;
j = 0;
connect[i++] = 5;
connect[i++] = 6;
connect[i++] = 8; /* connectivity of face 1 of element 1 */
connect[i++] = 2;
connect[i++] = 1;
connect[i++] = 4; /* face 2 of element 1 */
connect[i++] = 6;
connect[i++] = 2;
connect[i++] = 4;
connect[i++] = 8; /* face 3 of element 1 */
connect[i++] = 8;
connect[i++] = 4;
connect[i++] = 1;
connect[i++] = 5; /* face 4 of element 1 */
connect[i++] = 1;
connect[i++] = 2;
connect[i++] = 6;
connect[i++] = 5; /* face 5 of element 1 */
connect[i++] = 5;
connect[i++] = 8;
connect[i++] = 7; /* connectivity of face 1 of element 2 */
connect[i++] = 1;
connect[i++] = 2;
connect[i++] = 3;
connect[i++] = 4;
nnpe[j++] = 4;
connect[i++] = 5;
connect[i++] = 3;
connect[i++] = 4;
connect[i++] = 6;
nnpe[j++] = 4;
connect[i++] = 5;
connect[i++] = 1;
connect[i++] = 2;
connect[i++] = 6;
nnpe[j++] = 4;
connect[i++] = 6;
connect[i++] = 2;
connect[i++] = 4;
nnpe[j++] = 3;
connect[i++] = 5;
connect[i++] = 3;
connect[i++] = 1;
nnpe[j++] = 3;
assert(i == num_total_nodes_per_blk[0]);
assert(j == num_face_in_block[0]);
error = ex_put_conn(exoid, EX_FACE_BLOCK, bids[0], connect, NULL, NULL);
printf("after ex_put_conn, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
free(connect);
connect = NULL;
error = ex_put_entity_count_per_polyhedra(exoid, EX_FACE_BLOCK, bids[0], nnpe);
printf("after ex_put_entity_count_per_polyhedra, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
/* write element block parameters */
block_names[0] = "nfaced_1";
num_elem_in_block[0] = 1;
num_total_faces_per_blk[0] = 5;
bids[0] = 10;
error = ex_put_block(exoid, EX_ELEM_BLOCK, bids[0], "nfaced", num_elem_in_block[0], 0, 0,
num_total_faces_per_blk[0], 0);
printf("after ex_put_block, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
/* Write face block names */
error = ex_put_names(exoid, EX_FACE_BLOCK, block_names);
printf("after ex_put_names, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
/* Write element block names */
error = ex_put_names(exoid, EX_ELEM_BLOCK, block_names);
printf("after ex_put_names, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
/* write element-face connectivity */
connect = (int *)calloc(num_total_faces_per_blk[0], sizeof(int));
i = 0;
j = 0;
connect[i++] = 1;
connect[i++] = 2;
connect[i++] = 3;
connect[i++] = 4;
connect[i++] = 5;
nnpe[j++] = 5; /* Number of faces per element */
assert(i == num_total_faces_per_blk[0]);
assert(j == num_elem_in_block[0]);
error = ex_put_conn(exoid, EX_ELEM_BLOCK, bids[0], NULL, NULL, connect);
printf("after ex_put_conn, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
free(connect);
error = ex_put_entity_count_per_polyhedra(exoid, EX_ELEM_BLOCK, bids[0], nnpe);
printf("after ex_put_entity_count_per_polyhedra, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
/* write QA records; test empty and just blank-filled records */
int num_qa_rec = 2;
qa_record[0][0] = "TESTWT-NFACED";
qa_record[0][1] = "testwt-nfaced";
qa_record[0][2] = "2010/02/15";
qa_record[0][3] = "06:35:15";
qa_record[1][0] = "";
qa_record[1][1] = " ";
qa_record[1][2] = "";
qa_record[1][3] = " ";
error = ex_put_qa(exoid, num_qa_rec, qa_record);
printf("after ex_put_qa, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
/* write information records; test empty and just blank-filled records */
int num_info = 3;
info[0] = "This is the first information record.";
info[1] = "";
info[2] = " ";
error = ex_put_info(exoid, num_info, info);
printf("after ex_put_info, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
/* write results variables parameters and names */
int num_glo_vars = 1;
var_names[0] = "glo_vars";
error = ex_put_variable_param(exoid, EX_GLOBAL, num_glo_vars);
printf("after ex_put_variable_param, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
error = ex_put_variable_names(exoid, EX_GLOBAL, num_glo_vars, var_names);
printf("after ex_put_variable_names, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
int num_nod_vars = 2;
/* 12345678901234567890123456789012 */
var_names[0] = "node_variable_a_very_long_name_0";
var_names[1] = EX_NODE_SET;
error = ex_put_variable_param(exoid, EX_NODAL, num_nod_vars);
printf("after ex_put_variable_param, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
error = ex_put_variable_names(exoid, EX_NODAL, num_nod_vars, var_names);
printf("after ex_put_variable_names, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
int num_ele_vars = 3;
var_names[0] = "ele_var0";
var_names[1] = "ele_var1";
var_names[2] = "ele_var2";
error = ex_put_variable_param(exoid, EX_ELEM_BLOCK, num_ele_vars);
printf("after ex_put_variable_param, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
error = ex_put_variable_names(exoid, EX_ELEM_BLOCK, num_ele_vars, var_names);
printf("after ex_put_variable_names, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
/* write element variable truth table */
int *truth_tab = (int *)calloc((num_elem_blk * num_ele_vars), sizeof(int));
int k = 0;
for (i = 0; i < num_elem_blk; i++) {
for (j = 0; j < num_ele_vars; j++) {
truth_tab[k++] = 1;
}
}
error = ex_put_truth_table(exoid, EX_ELEM_BLOCK, num_elem_blk, num_ele_vars, truth_tab);
printf("after ex_put_elem_var_tab, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
free(truth_tab);
/* for each time step, write the analysis results;
* the code below fills the arrays glob_var_vals,
* nodal_var_vals, and elem_var_vals with values for debugging purposes;
* obviously the analysis code will populate these arrays
*/
int whole_time_step = 1;
int num_time_steps = 10;
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(8, CPU_word_size);
for (i = 0; i < num_time_steps; i++) {
float time_value = (float)(i + 1) / 100.;
/* write time value */
error = ex_put_time(exoid, whole_time_step, &time_value);
printf("after ex_put_time, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
/* write global variables */
for (j = 0; j < num_glo_vars; j++) {
glob_var_vals[j] = (float)(j + 2) * time_value;
}
error = ex_put_var(exoid, whole_time_step, EX_GLOBAL, 1, 1, num_glo_vars, glob_var_vals);
printf("after ex_put_glob_vars, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
/* write nodal variables */
for (k = 1; k <= num_nod_vars; k++) {
for (j = 0; j < num_nodes; j++) {
nodal_var_vals[j] = (float)k + ((float)(j + 1) * time_value);
}
error = ex_put_nodal_var(exoid, whole_time_step, k, num_nodes, nodal_var_vals);
printf("after ex_put_nodal_var, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
}
/* write element variables */
for (k = 1; k <= num_ele_vars; k++) {
for (j = 0; j < num_elem_blk; j++) {
for (int m = 0; m < num_elem_in_block[j]; m++) {
elem_var_vals[m] = (float)(k + 1) + (float)(j + 2) + ((float)(m + 1) * time_value);
/* printf("elem_var_vals[%d]: %f\n",m,elem_var_vals[m]); */
}
error = ex_put_elem_var(exoid, whole_time_step, k, bids[j], num_elem_in_block[j],
elem_var_vals);
printf("after ex_put_elem_var, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
}
}
whole_time_step++;
/* update the data file; this should be done at the end of every time step
* to ensure that no data is lost if the analysis dies
*/
error = ex_update(exoid);
printf("after ex_update, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
}
free(glob_var_vals);
free(nodal_var_vals);
free(elem_var_vals);
/* close the EXODUS files
*/
error = ex_close(exoid);
printf("after ex_close, error = %d\n", error);
if (error) {
ex_close(exoid);
exit(-1);
}
return 0;
}
@ EX_NODE_SET
Definition exodusII.h:262
@ EX_NODAL
Definition exodusII.h:260
@ EX_FACE_BLOCK
Definition exodusII.h:265
@ EX_GLOBAL
Definition exodusII.h:277
@ EX_ELEM_BLOCK
Definition exodusII.h:267
@ EX_ABORT
Definition exodusII.h:292
@ EX_VERBOSE
Definition exodusII.h:290
SEACAS_DEPRECATED int ex_put_nodal_var(int exoid, int time_step, int nodal_var_index, int64_t num_nodes, const void *nodal_var_vals)
Definition ex_put_nodal_var.c:74
SEACAS_DEPRECATED int ex_put_elem_var(int exoid, int time_step, int elem_var_index, ex_entity_id elem_blk_id, int64_t num_elem_this_blk, const void *elem_var_vals)
Definition ex_put_elem_var.c:114
char * ex_copy_string(char *dest, char const *source, size_t elements)
Definition ex_utils.c:2283
#define EX_CLOBBER
Definition exodusII.h:98
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_init_ext(int exoid, const ex_init_params *model)
Definition ex_put_init_ext.c:210
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_entity_count_per_polyhedra(int exoid, ex_entity_type blk_type, ex_entity_id blk_id, const int *entity_counts)
Definition ex_put_entity_count_per_polyhedra.c:26
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
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_LINE_LENGTH
Definition exodusII.h:318
#define ex_create(path, mode, comp_ws, io_ws)
Definition exodusII.h:494
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:341
int64_t num_edge
Definition exodusII.h:345
int64_t num_node_sets
Definition exodusII.h:351
int64_t num_face
Definition exodusII.h:347
int64_t num_nodes
Definition exodusII.h:344
int64_t num_face_maps
Definition exodusII.h:358
int64_t num_elem_sets
Definition exodusII.h:355
int64_t num_dim
Definition exodusII.h:343
int64_t num_edge_sets
Definition exodusII.h:352
int64_t num_elem
Definition exodusII.h:349
int64_t num_elem_blk
Definition exodusII.h:350
int64_t num_face_blk
Definition exodusII.h:348
int64_t num_node_maps
Definition exodusII.h:356
int64_t num_edge_maps
Definition exodusII.h:357
int64_t num_side_sets
Definition exodusII.h:354
int64_t num_elem_maps
Definition exodusII.h:359
int64_t num_face_sets
Definition exodusII.h:353
int64_t num_edge_blk
Definition exodusII.h:346
char title[MAX_LINE_LENGTH+1]
Definition exodusII.h:342