/* * 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 */ /***************************************************************************** * * expmap - ex_put_map * * entry conditions - * input parameters: * int exoid exodus file id * int* elem_map element order map array * * exit conditions - * * revision history - * * *****************************************************************************/ #include "exodusII.h" // for ex_err, etc #include "exodusII_int.h" // for EX_FATAL, EX_NOERR, etc /*! The function ex_put_map() writes out the optional element order map to the database. The function ex_put_init() must be invoked before this call is made. In case of an error, ex_put_map() returns a negative number; a warning will return a positive number. Possible causes of errors include: - data file not properly opened with call to ex_create() or ex_open() - data file opened for read only. - data file not initialized properly with call to ex_put_init(). - an element map already exists in the file. \param[in] exoid exodus file ID returned from a previous call to ex_create() or ex_open(). \param[in] elem_map The element order map. The following code generates a default element order map and outputs it to an open exodus file. This is a trivial case and included just for illustration. Since this map is optional, it should be written out only if it contains something other than the default map. ~~~{.c} int error, exoid; int *elem_map = (int *)calloc(num_elem, sizeof(int)); for (i=0; i < num_elem; i++) { elem_map[i] = i+1; } error = ex_put_map(exoid, elem_map); ~~~ */ int ex_put_map(int exoid, const void_int *elem_map) { int numelemdim, dims[1], mapid, status; int map_int_type; char errmsg[MAX_ERR_LENGTH]; EX_FUNC_ENTER(); if (ex__check_valid_file_id(exoid, __func__) == EX_FATAL) { EX_FUNC_LEAVE(EX_FATAL); } /* inquire id's of previously defined dimensions */ /* determine number of elements. Return if zero... */ if (nc_inq_dimid(exoid, DIM_NUM_ELEM, &numelemdim) != NC_NOERR) { EX_FUNC_LEAVE(EX_NOERR); } /* put netcdf file into define mode */ if ((status = nc_redef(exoid)) != NC_NOERR) { snprintf(errmsg, MAX_ERR_LENGTH, "ERROR: failed to put file id %d into define mode", exoid); ex_err_fn(exoid, __func__, errmsg, status); EX_FUNC_LEAVE(EX_FATAL); } /* create a variable array in which to store the element map */ dims[0] = numelemdim; map_int_type = NC_INT; if (ex_int64_status(exoid) & EX_MAPS_INT64_DB) { map_int_type = NC_INT64; } if ((status = nc_def_var(exoid, VAR_MAP, map_int_type, 1, dims, &mapid)) != NC_NOERR) { if (status == NC_ENAMEINUSE) { snprintf(errmsg, MAX_ERR_LENGTH, "ERROR: element map already exists in file id %d", exoid); ex_err_fn(exoid, __func__, errmsg, status); } else { snprintf(errmsg, MAX_ERR_LENGTH, "ERROR: failed to create element map array in file id %d", exoid); ex_err_fn(exoid, __func__, errmsg, status); } goto error_ret; /* exit define mode and return */ } ex__compress_variable(exoid, mapid, 1); /* leave define mode */ if ((status = ex__leavedef(exoid, __func__)) != NC_NOERR) { EX_FUNC_LEAVE(EX_FATAL); } /* write out the element order map */ if (ex_int64_status(exoid) & EX_MAPS_INT64_API) { status = nc_put_var_longlong(exoid, mapid, elem_map); } else { status = nc_put_var_int(exoid, mapid, elem_map); } if (status != NC_NOERR) { snprintf(errmsg, MAX_ERR_LENGTH, "ERROR: failed to store element map in file id %d", exoid); ex_err_fn(exoid, __func__, errmsg, status); EX_FUNC_LEAVE(EX_FATAL); } EX_FUNC_LEAVE(EX_NOERR); /* Fatal error: exit definition mode and return */ error_ret: ex__leavedef(exoid, __func__); EX_FUNC_LEAVE(EX_FATAL); }