Exodus 8.24
Loading...
Searching...
No Matches
/test/test-empty.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
*/
#include <exodusII.h>
#include <stdio.h>
int main(int argc, char **argv)
{
float version = 0.0;
int CPU_word_size = 0; /* sizeof(float) */
int IO_word_size = 4; /* (4 bytes) */
/* ======================================== */
/* Create an empty exodus file */
/* ====================================== */
int exoid = ex_create("test.exo", EX_CLOBBER, &CPU_word_size, &IO_word_size);
ex_close(exoid);
/* ======================================== */
/* Now try to open and read the empty file */
/* ====================================== */
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 */
printf("test.exo exoid = %d\n", exoid);
{
char title[MAX_LINE_LENGTH + 1];
int num_dim, num_nodes, num_elem, num_elem_blk, num_node_sets, num_side_sets;
int error = ex_get_init(exoid, title, &num_dim, &num_nodes, &num_elem, &num_elem_blk,
&num_node_sets, &num_side_sets);
printf("after ex_get_init, error = %3d\n", error);
if (error) {
exit(-1);
}
else {
exit(0);
}
}
}
@ EX_ABORT
Definition exodusII.h:292
@ EX_VERBOSE
Definition exodusII.h:290
#define EX_READ
Definition exodusII.h:95
#define EX_CLOBBER
Definition exodusII.h:98
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
#define MAX_LINE_LENGTH
Definition exodusII.h:318
#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