Exodus 8.24
Loading...
Searching...
No Matches
/test/testcp_nl.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
*/
/*****************************************************************************
*
* testcp_lrg - copy file test.exo created by testwt, normal_model to large_model
*
* author - Sandia National Laboratories
* Larry A. Schoof - Original
*
*
* environment - UNIX
*
* entry conditions -
* input parameters:
*
* exit conditions -
*
* revision history -
*
*****************************************************************************/
#include "exodusII.h"
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
int exoid, exoid1, error, idum;
int CPU_word_size, IO_word_size;
float version;
char *cdum = NULL;
/* open EXODUS II files */
CPU_word_size = 0; /* sizeof(float) */
IO_word_size = 0; /* use size in file */
exoid = ex_open("testcp.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("\nafter ex_open\n");
if (exoid < 0) {
exit(1);
}
printf("test.exo is an EXODUSII file; version %4.2f\n", version);
printf(" CPU word size %1d\n", CPU_word_size);
printf(" I/O word size %1d\n", IO_word_size);
ex_inquire(exoid, EX_INQ_API_VERS, &idum, &version, cdum);
printf("EXODUSII API; version %4.2f\n", version);
CPU_word_size = 8; /* this really shouldn't matter for
the copy but tests the conversion
routines */
IO_word_size = 4;
exoid1 = ex_create("testcp_nl.exo", /* filename */
EX_CLOBBER | EX_LARGE_MODEL, /* OK to overwrite, large */
&CPU_word_size, /* CPU float word size in bytes */
&IO_word_size); /* I/O float word size in bytes */
printf("\nafter ex_create, exoid = %3d\n", exoid1);
if (exoid1 < 0) {
exit(1);
}
printf(" CPU word size %1d\n", CPU_word_size);
printf(" I/O word size %1d\n", IO_word_size);
error = ex_copy(exoid, exoid1);
printf("\nafter ex_copy, error = %3d\n", error);
error = ex_close(exoid);
printf("\nafter ex_close, error = %3d\n", error);
error = ex_close(exoid1);
printf("\nafter ex_close, error = %3d\n", error);
return 0;
}
@ EX_ABORT
Definition exodusII.h:292
@ EX_VERBOSE
Definition exodusII.h:290
@ EX_INQ_API_VERS
Definition exodusII.h:142
#define EX_READ
Definition exodusII.h:95
#define EX_CLOBBER
Definition exodusII.h:98
#define EX_LARGE_MODEL
Definition exodusII.h:101
#define ex_create(path, mode, comp_ws, io_ws)
Definition exodusII.h:494
int ex_opts(int options)
Definition ex_opts.c:56
int ex_inquire(int exoid, ex_inquiry req_info, void_int *ret_int, float *ret_float, char *ret_char)
Definition ex_inquire.c:1087
#define ex_open(path, mode, comp_ws, io_ws, version)
Definition exodusII.h:500
int ex_close(int exoid)
Definition ex_close.c:47
int ex_copy(int in_exoid, int out_exoid)
Definition ex_copy.c:151