Exodus 8.24
Loading...
Searching...
No Matches
exodusII_int.h
Go to the documentation of this file.
1/*
2
3 * Copyright(C) 1999-2020, 2022, 2023 National Technology & Engineering Solutions
4 * of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
5 * NTESS, the U.S. Government retains certain rights in this software.
6 *
7 * See packages/seacas/LICENSE for details
8 */
9/*****************************************************************************
10 *
11 * exodusII_int.h - ExodusII header file for internal Exodus call use only
12 *
13 */
14#pragma once
15
16#include <stdbool.h>
17
18#include "exodus_config.h"
19
20#if defined(EXODUS_THREADSAFE)
21#include <pthread.h>
22#endif
23
24#include "netcdf.h"
25#if defined(NC_HAVE_META_H)
26#include "netcdf_meta.h"
27#endif
28
29#if defined(_WIN32) && defined(_MSC_VER) && _MSC_VER < 1900
30#define PRId64 "I64d"
31#else
32#include <inttypes.h>
33#endif
34
35#include <assert.h>
36#include <ctype.h>
37#include <string.h>
38
39#ifndef __APPLE__
40#if defined __STDC__ || defined __cplusplus
41#include <stdlib.h>
42#endif
43#endif
44
45#ifdef _MSC_VER
46#pragma warning(disable : 4127)
47#pragma warning(disable : 4706)
48#pragma warning(disable : 4701)
49#endif
50
51#if defined(__BORLANDC__)
52#pragma warn - 8004 /* "assigned a value that is never used" */
53#endif
54
55#include <stdio.h>
56
57#if defined(_MSC_VER) && _MSC_VER < 1900
58#define __func__ __FUNCTION__
59#define snprintf _snprintf
60#endif
61
62#define snprintf_nowarn(...) (snprintf(__VA_ARGS__) < 0 ? abort() : (void)0)
63
64#ifdef __cplusplus
65extern "C" {
66#endif
67
68#if NC_VERSION_MAJOR > 4 || (NC_VERSION_MAJOR == 4 && NC_VERSION_MINOR >= 6) || NC_HAS_HDF5
69#define EX_CAN_USE_NC_DEF_VAR_FILL 1
70#endif
71
72/**
73 * \defgroup Internal Internal Functions and Defines
74 * \internal
75 *
76 * Variables and functions used internally in the library
77 *@{
78 */
79#define MAX_VAR_NAME_LENGTH 32 /**< Internal use only */
80
81/* Default "filesize" for newly created files.
82 * Set to 0 for normal filesize setting.
83 * Set to 1 for EXODUS_LARGE_MODEL setting to be the default
84 */
85#define EXODUS_DEFAULT_SIZE 1
86
87/* Used to map between root (file id) and group ids when using groups */
88#define EX_FILE_ID_MASK (0xffff0000) /**< Must match FILE_ID_MASK in NetCDF nc4internal.h */
89#define EX_GRP_ID_MASK (0x0000ffff) /**< Must match GRP_ID_MASK in NetCDF nc4internal.h */
90
91void exi_reset_error_status(void);
92
93#if defined(EXODUS_THREADSAFE)
94#if !defined(exerrval)
95/* In both exodusII.h and exodusII_int.h */
96typedef struct EX_errval
97{
98 int errval;
101 int last_err_num;
102} EX_errval_t;
103
104EXODUS_EXPORT EX_errval_t *ex_errval;
105#define exerrval ex_errval->errval
106#endif
107
108extern pthread_once_t EX_first_init_g;
109
110typedef struct EX_mutex_struct
111{
112 pthread_mutex_t atomic_lock; /**< lock for atomicity of new mechanism */
113 pthread_mutexattr_t attribute;
114} EX_mutex_t;
115
116extern EX_mutex_t EX_g;
117extern int exi_mutex_lock(EX_mutex_t *mutex);
118extern int exi_mutex_unlock(EX_mutex_t *mutex, const char *func, int line);
119extern void exi_pthread_first_thread_init(void);
120extern EX_errval_t *exerrval_get(void);
121
122#define EX_FUNC_ENTER() \
123 do { \
124 /* Initialize the thread-safe code */ \
125 pthread_once(&EX_first_init_g, exi_pthread_first_thread_init); \
126 \
127 /* Grab the mutex for the library */ \
128 exi_mutex_lock(&EX_g); \
129 ex_errval = exerrval_get(); \
130 exerrval = 0; \
131 ex_errval->last_err_num = 0; \
132 } while (0)
133
134#define EX_FUNC_ENTER_INT() \
135 do { \
136 /* Initialize the thread-safe code */ \
137 pthread_once(&EX_first_init_g, exi_pthread_first_thread_init); \
138 \
139 /* Grab the mutex for the library */ \
140 exi_mutex_lock(&EX_g); \
141 ex_errval = exerrval_get(); \
142 } while (0)
143
144#define EX_FUNC_LEAVE(error) \
145 do { \
146 exi_mutex_unlock(&EX_g, __func__, __LINE__); \
147 return error; \
148 } while (0)
149
150#define EX_FUNC_VOID() \
151 do { \
152 exi_mutex_unlock(&EX_g, __func__, __LINE__); \
153 return; \
154 } while (0)
155
156#define EX_FUNC_UNLOCK() \
157 do { \
158 exi_mutex_unlock(&EX_g, __func__, __LINE__); \
159 } while (0)
160
161#else
162
163/* Enable this to output tracing information from the API functions */
164#if 0
165EXODUS_EXPORT int indent;
166#define EX_FUNC_ENTER() \
167 do { \
168 exi_reset_error_status(); \
169 fprintf(stderr, "%d Enter: %s\n", indent, __func__); \
170 indent++; \
171 } while (0)
172#define EX_FUNC_ENTER_INT() \
173 do { \
174 fprintf(stderr, "%d Enter: %s\n", indent, __func__); \
175 indent++; \
176 } while (0)
177#define EX_FUNC_LEAVE(error) \
178 do { \
179 indent--; \
180 fprintf(stderr, "%d Leave: %s\n", indent, __func__); \
181 return error; \
182 } while (0)
183#define EX_FUNC_VOID() \
184 do { \
185 indent--; \
186 fprintf(stderr, "%d Leave: %s\n", indent, __func__); \
187 return; \
188 } while (0)
189#define EX_FUNC_UNLOCK() \
190 do { \
191 indent--; \
192 fprintf(stderr, "%d Unlock: %s\n", indent, __func__); \
193 } while (0)
194#else
195#define EX_FUNC_ENTER() \
196 do { \
197 exi_reset_error_status(); \
198 } while (0)
199#define EX_FUNC_ENTER_INT()
200#define EX_FUNC_LEAVE(error) return error
201#define EX_FUNC_VOID() return
202#define EX_FUNC_UNLOCK()
203#endif
204#endif
205
206#define EX_UNUSED(A) \
207 do { \
208 (void)(A); \
209 } while (0)
210
211/*
212 * This file contains defined constants that are used internally in the
213 * EXODUS API.
214 *
215 * The first group of constants refer to NetCDF variables, attributes, or
216 * dimensions in which the EXODUS data are stored. Using the defined
217 * constants will allow the names of the NetCDF entities to be changed easily
218 * in the future if needed. The first three letters of the constant identify
219 * the NetCDF entity as a variable (VAR), dimension (DIM), or attribute (ATT).
220 *
221 * NOTE: The entity name should not have any blanks in it. Blanks are
222 * technically legal but some NetCDF utilities (ncgen in particular)
223 * fail when they encounter a blank in a name.
224 *
225 */
226#define ATT_TITLE "title" /**< the database title */
227#define ATT_API_VERSION "api_version" /**< the EXODUS api vers number */
228/*! the EXODUS api vers # used for db version 2.01 and earlier */
229#define ATT_API_VERSION_BLANK "api version"
230#define ATT_VERSION "version" /**< the EXODUS file vers number */
231#define ATT_FILESIZE "file_size" /**< 1=large, 0=normal */
232/*! word size of floating point numbers in file */
233#define ATT_FLT_WORDSIZE "floating_point_word_size"
234/*! word size of floating point numbers in file used for db version
235 2.01 and earlier */
236#define ATT_FLT_WORDSIZE_BLANK "floating point word size"
237#define ATT_MAX_NAME_LENGTH "maximum_name_length"
238#define ATT_INT64_STATUS "int64_status"
239#define ATT_NEM_API_VERSION "nemesis_api_version"
240#define ATT_NEM_FILE_VERSION "nemesis_file_version"
241#define ATT_PROCESSOR_INFO "processor_info"
242#define ATT_LAST_WRITTEN_TIME "last_written_time"
243
244#define DIM_NUM_ASSEMBLY "num_assembly" /**< number of assemblies */
245#define DIM_NUM_BLOB "num_blob" /**< number of blobs */
246#define DIM_NUM_NODES "num_nodes" /**< number of nodes */
247#define DIM_NUM_DIM "num_dim" /**< number of dimensions; 2- or 3-d*/
248#define DIM_NUM_EDGE "num_edge" /**< number of edges (over all blks)*/
249#define DIM_NUM_FACE "num_face" /**< number of faces (over all blks)*/
250#define DIM_NUM_ELEM "num_elem" /**< number of elements */
251#define DIM_NUM_EL_BLK "num_el_blk" /**< number of element blocks */
252#define DIM_NUM_ED_BLK "num_ed_blk" /**< number of edge blocks */
253#define DIM_NUM_FA_BLK "num_fa_blk" /**< number of face blocks */
254#define VAR_COORD "coord" /**< nodal coordinates */
255#define VAR_COORD_X "coordx" /**< X-dimension coordinate */
256#define VAR_COORD_Y "coordy" /**< Y-dimension coordinate */
257#define VAR_COORD_Z "coordz" /**< Z-dimension coordinate */
258#define VAR_NAME_COOR "coor_names" /**< names of coordinates */
259#define VAR_NAME_EL_BLK "eb_names" /**< names of element blocks */
260#define VAR_NAME_NS "ns_names" /**< names of node sets */
261#define VAR_NAME_SS "ss_names" /**< names of side sets */
262#define VAR_NAME_EM "emap_names" /**< names of element maps */
263#define VAR_NAME_EDM "edmap_names" /**< names of edge maps */
264#define VAR_NAME_FAM "famap_names" /**< names of face maps */
265#define VAR_NAME_NM "nmap_names" /**< names of node maps */
266#define VAR_NAME_ED_BLK "ed_names" /**< names of edge blocks */
267#define VAR_NAME_FA_BLK "fa_names" /**< names of face blocks */
268#define VAR_NAME_ES "es_names" /**< names of edge sets */
269#define VAR_NAME_FS "fs_names" /**< names of face sets */
270#define VAR_NAME_ELS "els_names" /**< names of element sets */
271#define VAR_STAT_EL_BLK "eb_status" /**< element block status */
272#define VAR_STAT_ECONN "econn_status" /**< element block edge status */
273#define VAR_STAT_FCONN "fconn_status" /**< element block face status */
274#define VAR_STAT_ED_BLK "ed_status" /**< edge block status */
275#define VAR_STAT_FA_BLK "fa_status" /**< face block status */
276#define VAR_ID_EL_BLK "eb_prop1" /**< element block ids props */
277#define VAR_ID_ED_BLK "ed_prop1" /**< edge block ids props */
278#define VAR_ID_FA_BLK "fa_prop1" /**< face block ids props */
279#define DIM_NUM_ENTITY_ASSEMBLY(num) exi_catstr("num_entity_assembly", num)
280#define VAR_ENTITY_ASSEMBLY(num) exi_catstr("assembly_entity", num)
281#define DIM_NUM_VALUES_BLOB(num) exi_catstr("num_values_blob", num)
282#define VAR_ENTITY_BLOB(num) exi_catstr("blob_entity", num)
283#define EX_ATTRIBUTE_TYPE "_type"
284#define EX_ATTRIBUTE_TYPENAME "_typename"
285#define EX_ATTRIBUTE_NAME "_name"
286#define EX_ATTRIBUTE_ID "_id"
287
288/*! element type names for each element block */
289#define ATT_NAME_ELB "elem_type"
290/*! number of elements in element block num */
291#define DIM_NUM_EL_IN_BLK(num) exi_catstr("num_el_in_blk", num)
292/*! number of nodes per element in element block num */
293#define DIM_NUM_NOD_PER_EL(num) exi_catstr("num_nod_per_el", num)
294/*! number of attributes in element block num */
295#define DIM_NUM_ATT_IN_BLK(num) exi_catstr("num_att_in_blk", num)
296/*! number of edges in edge block num */
297#define DIM_NUM_ED_IN_EBLK(num) exi_catstr("num_ed_in_blk", num)
298/*! number of nodes per edge in edge block num */
299#define DIM_NUM_NOD_PER_ED(num) exi_catstr("num_nod_per_ed", num)
300/*! number of edges per element in element block num */
301#define DIM_NUM_EDG_PER_EL(num) exi_catstr("num_edg_per_el", num)
302/*! number of attributes in edge block num */
303#define DIM_NUM_ATT_IN_EBLK(num) exi_catstr("num_att_in_eblk", num)
304/*! number of faces in face block num */
305#define DIM_NUM_FA_IN_FBLK(num) exi_catstr("num_fa_in_blk", num)
306/*! number of nodes per face in face block num */
307#define DIM_NUM_NOD_PER_FA(num) exi_catstr("num_nod_per_fa", num)
308/*! number of faces per element in element block num */
309#define DIM_NUM_FAC_PER_EL(num) exi_catstr("num_fac_per_el", num)
310/*! number of attributes in face block num */
311#define DIM_NUM_ATT_IN_FBLK(num) exi_catstr("num_att_in_fblk", num)
312/*! element connectivity for element block num */
313#define VAR_CONN(num) exi_catstr("connect", num)
314/*! array containing number of entity per */
315/* entity for n-sided face/element blocks */
316#define VAR_EBEPEC(num) exi_catstr("ebepecnt", num)
317/*! list of attributes for element block num */
318#define VAR_ATTRIB(num) exi_catstr("attrib", num)
319/*! list of attribute names for element block num */
320#define VAR_NAME_ATTRIB(num) exi_catstr("attrib_name", num)
321/*! list of the numth property for all element blocks */
322#define VAR_EB_PROP(num) exi_catstr("eb_prop", num)
323/*! edge connectivity for element block num */
324#define VAR_ECONN(num) exi_catstr("edgconn", num)
325/*! edge connectivity for edge block num */
326#define VAR_EBCONN(num) exi_catstr("ebconn", num)
327/*! list of attributes for edge block num */
328#define VAR_EATTRIB(num) exi_catstr("eattrb", num)
329/*! list of attribute names for edge block num */
330#define VAR_NAME_EATTRIB(num) exi_catstr("eattrib_name", num)
331#define VAR_NATTRIB "nattrb"
332#define VAR_NAME_NATTRIB "nattrib_name"
333#define DIM_NUM_ATT_IN_NBLK "num_att_in_nblk"
334
335#define VAR_NSATTRIB(num) exi_catstr("nsattrb", num)
336#define VAR_NAME_NSATTRIB(num) exi_catstr("nsattrib_name", num)
337#define DIM_NUM_ATT_IN_NS(num) exi_catstr("num_att_in_ns", num)
338
339#define VAR_SSATTRIB(num) exi_catstr("ssattrb", num)
340#define VAR_NAME_SSATTRIB(num) exi_catstr("ssattrib_name", num)
341#define DIM_NUM_ATT_IN_SS(num) exi_catstr("num_att_in_ss", num)
342
343#define VAR_ESATTRIB(num) exi_catstr("esattrb", num)
344#define VAR_NAME_ESATTRIB(num) exi_catstr("esattrib_name", num)
345#define DIM_NUM_ATT_IN_ES(num) exi_catstr("num_att_in_es", num)
346
347#define VAR_FSATTRIB(num) exi_catstr("fsattrb", num)
348#define VAR_NAME_FSATTRIB(num) exi_catstr("fsattrib_name", num)
349#define DIM_NUM_ATT_IN_FS(num) exi_catstr("num_att_in_fs", num)
350
351#define VAR_ELSATTRIB(num) exi_catstr("elsattrb", num)
352#define VAR_NAME_ELSATTRIB(num) exi_catstr("elsattrib_name", num)
353#define DIM_NUM_ATT_IN_ELS(num) exi_catstr("num_att_in_els", num)
354
355/*! list of the numth property for all edge blocks */
356#define VAR_ED_PROP(num) exi_catstr("ed_prop", num)
357/*! face connectivity for element block num */
358#define VAR_FCONN(num) exi_catstr("facconn", num)
359/*! face connectivity for face block num */
360#define VAR_FBCONN(num) exi_catstr("fbconn", num)
361/*! array containing number of entity per entity for n-sided face/element blocks */
362#define VAR_FBEPEC(num) exi_catstr("fbepecnt", num)
363/*! list of attributes for face block num */
364#define VAR_FATTRIB(num) exi_catstr("fattrb", num)
365/*! list of attribute names for face block num */
366#define VAR_NAME_FATTRIB(num) exi_catstr("fattrib_name", num)
367/*! list of the numth property for all face blocks */
368#define VAR_FA_PROP(num) exi_catstr("fa_prop", num)
369/*! name attached to element block, node set, side set, element map,
370 or map properties */
371#define ATT_PROP_NAME "name"
372#define VAR_MAP "elem_map" /**< element order map */
373#define DIM_NUM_SS "num_side_sets" /**< number of side sets */
374#define VAR_SS_STAT "ss_status" /**< side set status */
375#define VAR_SS_IDS "ss_prop1" /**< side set id properties */
376/*! number of sides in side set num*/
377#define DIM_NUM_SIDE_SS(num) exi_catstr("num_side_ss", num)
378/*! number of distribution factors in side set num */
379#define DIM_NUM_DF_SS(num) exi_catstr("num_df_ss", num)
380/*! the distribution factors for each node in side set num */
381#define VAR_FACT_SS(num) exi_catstr("dist_fact_ss", num)
382/*! list of elements in side set num */
383#define VAR_ELEM_SS(num) exi_catstr("elem_ss", num)
384/*! list of sides in side set */
385#define VAR_SIDE_SS(num) exi_catstr("side_ss", num)
386/*! list of the numth property for all side sets */
387#define VAR_SS_PROP(num) exi_catstr("ss_prop", num)
388#define DIM_NUM_ES "num_edge_sets" /**< number of edge sets */
389#define VAR_ES_STAT "es_status" /**< edge set status */
390#define VAR_ES_IDS "es_prop1" /**< edge set id properties */
391/*! number of edges in edge set num*/
392#define DIM_NUM_EDGE_ES(num) exi_catstr("num_edge_es", num)
393/*! number of distribution factors in edge set num */
394#define DIM_NUM_DF_ES(num) exi_catstr("num_df_es", num)
395/*! the distribution factors for each node in edge set num */
396#define VAR_FACT_ES(num) exi_catstr("dist_fact_es", num)
397/*! list of edges in edge set num */
398#define VAR_EDGE_ES(num) exi_catstr("edge_es", num)
399/*! list of orientations in the edge set. */
400#define VAR_ORNT_ES(num) exi_catstr("ornt_es", num)
401/*! list of the numth property for all edge sets */
402#define VAR_ES_PROP(num) exi_catstr("es_prop", num)
403#define DIM_NUM_FS "num_face_sets" /**< number of face sets */
404#define VAR_FS_STAT "fs_status" /**< face set status */
405#define VAR_FS_IDS "fs_prop1" /**< face set id properties */
406/*! number of faces in side set num*/
407#define DIM_NUM_FACE_FS(num) exi_catstr("num_face_fs", num)
408/*! number of distribution factors in face set num */
409#define DIM_NUM_DF_FS(num) exi_catstr("num_df_fs", num)
410/*! the distribution factors for each node in face set num */
411#define VAR_FACT_FS(num) exi_catstr("dist_fact_fs", num)
412/*! list of elements in face set num */
413#define VAR_FACE_FS(num) exi_catstr("face_fs", num)
414/*! list of sides in side set */
415#define VAR_ORNT_FS(num) exi_catstr("ornt_fs", num)
416/*! list of the numth property for all face sets */
417#define VAR_FS_PROP(num) exi_catstr("fs_prop", num)
418#define DIM_NUM_ELS "num_elem_sets" /**< number of elem sets */
419/*! number of elements in elem set num */
420#define DIM_NUM_ELE_ELS(num) exi_catstr("num_ele_els", num)
421/*! number of distribution factors in element set num */
422#define DIM_NUM_DF_ELS(num) exi_catstr("num_df_els", num)
423#define VAR_ELS_STAT "els_status" /**< elem set status */
424#define VAR_ELS_IDS "els_prop1" /**< elem set id properties */
425/*! list of elements in elem set num */
426#define VAR_ELEM_ELS(num) exi_catstr("elem_els", num)
427/*! list of distribution factors in elem set num */
428#define VAR_FACT_ELS(num) exi_catstr("dist_fact_els", num)
429/*! list of the numth property for all elem sets */
430#define VAR_ELS_PROP(num) exi_catstr("els_prop", num)
431#define DIM_NUM_NS "num_node_sets" /**< number of node sets */
432/*! number of nodes in node set num */
433#define DIM_NUM_NOD_NS(num) exi_catstr("num_nod_ns", num)
434/*! number of distribution factors in node set num */
435#define DIM_NUM_DF_NS(num) exi_catstr("num_df_ns", num)
436#define VAR_NS_STAT "ns_status" /**< node set status */
437#define VAR_NS_IDS "ns_prop1" /**< node set id properties */
438/*! list of nodes in node set num */
439#define VAR_NODE_NS(num) exi_catstr("node_ns", num)
440/*! list of distribution factors in node set num */
441#define VAR_FACT_NS(num) exi_catstr("dist_fact_ns", num)
442/*! list of the numth property for all node sets */
443#define VAR_NS_PROP(num) exi_catstr("ns_prop", num)
444#define DIM_NUM_QA "num_qa_rec" /**< number of QA records */
445#define VAR_QA_TITLE "qa_records" /**< QA records */
446#define DIM_NUM_INFO "num_info" /**< number of information records */
447#define VAR_INFO "info_records" /**< information records */
448#define VAR_WHOLE_TIME "time_whole" /**< simulation times for whole time steps */
449#define VAR_ASSEMBLY_TAB "assembly_var_tab" /**< assembly variable truth table */
450#define VAR_BLOB_TAB "blob_var_tab" /**< blob variable truth table */
451#define VAR_ELEM_TAB "elem_var_tab" /**< element variable truth table */
452#define VAR_EBLK_TAB "edge_var_tab" /**< edge variable truth table */
453#define VAR_FBLK_TAB "face_var_tab" /**< face variable truth table */
454#define VAR_ELSET_TAB "elset_var_tab" /**< elemset variable truth table */
455#define VAR_SSET_TAB "sset_var_tab" /**< sideset variable truth table */
456#define VAR_FSET_TAB "fset_var_tab" /**< faceset variable truth table */
457#define VAR_ESET_TAB "eset_var_tab" /**< edgeset variable truth table */
458#define VAR_NSET_TAB "nset_var_tab" /**< nodeset variable truth table */
459#define DIM_NUM_GLO_VAR "num_glo_var" /**< number of global variables */
460#define VAR_NAME_GLO_VAR "name_glo_var" /**< names of global variables */
461#define VAR_GLO_VAR "vals_glo_var" /**< values of global variables*/
462#define DIM_NUM_NOD_VAR "num_nod_var" /**< number of nodal variables */
463#define VAR_NAME_NOD_VAR "name_nod_var" /**< names of nodal variables */
464#define VAR_NOD_VAR "vals_nod_var" /**< values of nodal variables \deprecated */
465/*! values of nodal variables */
466#define VAR_NOD_VAR_NEW(num) exi_catstr("vals_nod_var", num)
467
468#define DIM_NUM_ASSEMBLY_VAR "num_assembly_var" /**< number of assembly variables */
469#define VAR_NAME_ASSEMBLY_VAR "name_assembly_var" /**< names of assembly variables*/
470#define VAR_ASSEMBLY_VAR(num1, num2) exi_catstr2("vals_assembly_var", num1, "assembly", num2)
471
472#define DIM_NUM_BLOB_VAR "num_blob_var" /**< number of blob variables */
473#define VAR_NAME_BLOB_VAR "name_blob_var" /**< names of blob variables*/
474#define VAR_BLOB_VAR(num1, num2) exi_catstr2("vals_blob_var", num1, "blob", num2)
475
476#define DIM_NUM_ELE_VAR "num_elem_var" /**< number of element variables */
477#define VAR_NAME_ELE_VAR "name_elem_var" /**< names of element variables*/
478/*! values of element variable num1 in element block num2 */
479#define VAR_ELEM_VAR(num1, num2) exi_catstr2("vals_elem_var", num1, "eb", num2)
480#define DIM_NUM_EDG_VAR "num_edge_var" /**< number of edge variables */
481#define VAR_NAME_EDG_VAR "name_edge_var" /**< names of edge variables */
482/*! values of edge variable num1 in edge block num2 */
483#define VAR_EDGE_VAR(num1, num2) exi_catstr2("vals_edge_var", num1, "eb", num2)
484#define DIM_NUM_FAC_VAR "num_face_var" /**< number of face variables */
485#define VAR_NAME_FAC_VAR "name_face_var" /**< names of face variables */
486/*! values of face variable num1 in face block num2 */
487#define VAR_FACE_VAR(num1, num2) exi_catstr2("vals_face_var", num1, "fb", num2)
488
489#define DIM_NUM_NSET_VAR "num_nset_var" /**< number of nodeset variables */
490#define VAR_NAME_NSET_VAR "name_nset_var" /**< names of nodeset variables*/
491/*! values of nodeset variable num1 in nodeset num2 */
492#define VAR_NS_VAR(num1, num2) exi_catstr2("vals_nset_var", num1, "ns", num2)
493#define DIM_NUM_ESET_VAR "num_eset_var" /**< number of edgeset variables */
494/*! values of edgeset variable num1 in edgeset num2 */
495#define VAR_NAME_ESET_VAR "name_eset_var" /**< names of edgeset variables*/
496#define VAR_ES_VAR(num1, num2) exi_catstr2("vals_eset_var", num1, "es", num2)
497#define DIM_NUM_FSET_VAR "num_fset_var" /**< number of faceset variables */
498#define VAR_NAME_FSET_VAR "name_fset_var" /**< names of faceset variables*/
499/*! values of faceset variable num1 in faceset num2 */
500#define VAR_FS_VAR(num1, num2) exi_catstr2("vals_fset_var", num1, "fs", num2)
501#define DIM_NUM_SSET_VAR "num_sset_var" /**< number of sideset variables */
502#define VAR_NAME_SSET_VAR "name_sset_var" /**< names of sideset variables*/
503/*! values of sideset variable num1 in sideset num2 */
504#define VAR_SS_VAR(num1, num2) exi_catstr2("vals_sset_var", num1, "ss", num2)
505#define DIM_NUM_ELSET_VAR "num_elset_var" /**< number of element set variables*/
506#define VAR_NAME_ELSET_VAR "name_elset_var" /**< names of elemset variables*/
507/*! values of elemset variable num1 in elemset num2 */
508#define VAR_ELS_VAR(num1, num2) exi_catstr2("vals_elset_var", num1, "es", num2)
509
510/**
511 * \defgroup ReductionVariables Variables controlling storage of reduction variables
512 *@{
513 */
514#define DIM_NUM_ASSEMBLY_RED_VAR "num_assembly_red_var" /**< number of assembly variables */
515#define VAR_NAME_ASSEMBLY_RED_VAR "name_assembly_red_var" /**< names of assembly variables*/
516#define VAR_ASSEMBLY_RED_VAR(num) exi_catstr("vals_red_var_assembly", num)
517
518#define DIM_NUM_BLOB_RED_VAR "num_blob_red_var" /**< number of blob variables */
519#define VAR_NAME_BLOB_RED_VAR "name_blob_red_var" /**< names of blob variables*/
520#define VAR_BLOB_RED_VAR(num) exi_catstr("vals_red_var_blob", num)
521
522#define DIM_NUM_ELE_RED_VAR "num_elem_red_var" /**< number of element variables */
523#define VAR_NAME_ELE_RED_VAR "name_elem_red_var" /**< names of element variables*/
524/*! values of element variable num in element block num */
525#define VAR_ELEM_RED_VAR(num) exi_catstr("vals_red_var_eb", num)
526
527#define DIM_NUM_EDG_RED_VAR "num_edge_red_var" /**< number of edge variables */
528#define VAR_NAME_EDG_RED_VAR "name_edge_red_var" /**< names of edge variables */
529/*! values of edge variable num in edge block num */
530#define VAR_EDGE_RED_VAR(num) exi_catstr("vals_red_var_edb", num)
531
532#define DIM_NUM_FAC_RED_VAR "num_face_red_var" /**< number of face variables */
533#define VAR_NAME_FAC_RED_VAR "name_face_red_var" /**< names of face variables */
534/*! values of face variable num in face block num */
535#define VAR_FACE_RED_VAR(num) exi_catstr("vals_red_var_fb", num)
536
537#define DIM_NUM_NSET_RED_VAR "num_nset_red_var" /**< number of nodeset variables */
538#define VAR_NAME_NSET_RED_VAR "name_nset_red_var" /**< names of nodeset variables*/
539/*! values of nodeset variable num in nodeset num */
540#define VAR_NS_RED_VAR(num) exi_catstr("vals_red_var_nset", num)
541
542#define DIM_NUM_ESET_RED_VAR "num_eset_red_var" /**< number of edgeset variables */
543/*! values of edgeset variable num in edgeset num */
544#define VAR_NAME_ESET_RED_VAR "name_eset_red_var" /**< names of edgeset variables*/
545#define VAR_ES_RED_VAR(num) exi_catstr("vals_red_var_eset", num)
546
547#define DIM_NUM_FSET_RED_VAR "num_fset_red_var" /**< number of faceset variables */
548#define VAR_NAME_FSET_RED_VAR "name_fset_red_var" /**< names of faceset variables*/
549/*! values of faceset variable num in faceset num */
550#define VAR_FS_RED_VAR(num) exi_catstr("vals_red_var_fset", num)
551
552#define DIM_NUM_SSET_RED_VAR "num_sset_red_var" /**< number of sideset variables */
553#define VAR_NAME_SSET_RED_VAR "name_sset_red_var" /**< names of sideset variables*/
554/*! values of sideset variable num in sideset num */
555#define VAR_SS_RED_VAR(num) exi_catstr("vals_red_var_sset", num)
556
557#define DIM_NUM_ELSET_RED_VAR "num_elset_red_var" /**< number of element set variables*/
558#define VAR_NAME_ELSET_RED_VAR "name_elset_red_var" /**< names of elemset variables*/
559/*! values of elemset variable num in elemset num */
560#define VAR_ELS_RED_VAR(num) exi_catstr("vals_red_var_elset", num)
561/** @}*/
562
563/*! general dimension of length MAX_STR_LENGTH used for some string lengths */
564#define DIM_STR "len_string"
565/*! general dimension of length MAX_NAME_LENGTH used for name lengths */
566#define DIM_STR_NAME "len_name"
567/*! general dimension of length MAX_LINE_LENGTH used for long strings */
568#define DIM_LIN "len_line"
569#define DIM_N4 "four"
570#define DIM_N1 "blob_entity"
571/*! unlimited (expandable) dimension for time steps*/
572#define DIM_TIME "time_step"
573#define VAR_ELEM_NUM_MAP "elem_num_map" /**< element numbering map */
574#define VAR_FACE_NUM_MAP "face_num_map" /**< face numbering map */
575#define VAR_EDGE_NUM_MAP "edge_num_map" /**< edge numbering map */
576#define VAR_NODE_NUM_MAP "node_num_map" /**< node numbering map */
577#define DIM_NUM_EM "num_elem_maps" /**< number of element maps */
578/*! the numth element map */
579#define VAR_ELEM_MAP(num) exi_catstr("elem_map", num)
580/*! list of the numth property for all element maps */
581#define VAR_EM_PROP(num) exi_catstr("em_prop", num)
582#define DIM_NUM_EDM "num_edge_maps" /**< number of edge maps */
583/*! the numth edge map */
584#define VAR_EDGE_MAP(num) exi_catstr("edge_map", num)
585/* list of the numth property for all edge maps */
586#define VAR_EDM_PROP(num) exi_catstr("edm_prop", num)
587#define DIM_NUM_FAM "num_face_maps" /**< number of face maps */
588/*! the numth face map */
589#define VAR_FACE_MAP(num) exi_catstr("face_map", num)
590/*! list of the numth property for all face maps */
591#define VAR_FAM_PROP(num) exi_catstr("fam_prop", num)
592#define DIM_NUM_NM "num_node_maps" /**< number of node maps */
593/*! the numth node map */
594#define VAR_NODE_MAP(num) exi_catstr("node_map", num)
595/*! list of the numth property for all node maps */
596#define VAR_NM_PROP(num) exi_catstr("nm_prop", num)
597/*! list of the numth property for all assemblies */
598#define VAR_ASSEMBLY_PROP(num) exi_catstr("assembly_prop", num)
599#define VAR_BLOB_PROP(num) exi_catstr("blob_prop", num)
600
601#define DIM_NUM_CFRAMES "num_cframes"
602#define DIM_NUM_CFRAME9 "num_cframes_9"
603#define VAR_FRAME_COORDS "frame_coordinates"
604#define VAR_FRAME_IDS "frame_ids"
605#define VAR_FRAME_TAGS "frame_tags"
606
607#define VAR_ELBLK_IDS_GLOBAL "el_blk_ids_global"
608#define VAR_ELBLK_CNT_GLOBAL "el_blk_cnt_global"
609#define VAR_NS_IDS_GLOBAL "ns_ids_global"
610#define VAR_NS_NODE_CNT_GLOBAL "ns_node_cnt_global"
611#define VAR_NS_DF_CNT_GLOBAL "ns_df_cnt_global"
612#define VAR_SS_IDS_GLOBAL "ss_ids_global"
613#define VAR_SS_SIDE_CNT_GLOBAL "ss_side_cnt_global"
614#define VAR_SS_DF_CNT_GLOBAL "ss_df_cnt_global"
615#define VAR_FILE_TYPE "nem_ftype"
616#define VAR_COMM_MAP "comm_map"
617#define VAR_NODE_MAP_INT "node_mapi"
618#define VAR_NODE_MAP_INT_IDX "node_mapi_idx"
619#define VAR_NODE_MAP_BOR "node_mapb"
620#define VAR_NODE_MAP_BOR_IDX "node_mapb_idx"
621#define VAR_NODE_MAP_EXT "node_mape"
622#define VAR_NODE_MAP_EXT_IDX "node_mape_idx"
623#define VAR_ELEM_MAP_INT "elem_mapi"
624#define VAR_ELEM_MAP_INT_IDX "elem_mapi_idx"
625#define VAR_ELEM_MAP_BOR "elem_mapb"
626#define VAR_ELEM_MAP_BOR_IDX "elem_mapb_idx"
627#define VAR_INT_N_STAT "int_n_stat"
628#define VAR_BOR_N_STAT "bor_n_stat"
629#define VAR_EXT_N_STAT "ext_n_stat"
630#define VAR_INT_E_STAT "int_e_stat"
631#define VAR_BOR_E_STAT "bor_e_stat"
632#define VAR_N_COMM_IDS "n_comm_ids"
633#define VAR_N_COMM_STAT "n_comm_stat"
634#define VAR_N_COMM_INFO_IDX "n_comm_info_idx"
635#define VAR_E_COMM_IDS "e_comm_ids"
636#define VAR_E_COMM_STAT "e_comm_stat"
637#define VAR_E_COMM_INFO_IDX "e_comm_info_idx"
638#define VAR_N_COMM_NIDS "n_comm_nids"
639#define VAR_N_COMM_PROC "n_comm_proc"
640#define VAR_N_COMM_DATA_IDX "n_comm_data_idx"
641#define VAR_E_COMM_EIDS "e_comm_eids"
642#define VAR_E_COMM_SIDS "e_comm_sids"
643#define VAR_E_COMM_PROC "e_comm_proc"
644#define VAR_E_COMM_DATA_IDX "e_comm_data_idx"
645
646#define DIM_NUM_INT_NODES "num_int_node"
647#define DIM_NUM_BOR_NODES "num_bor_node"
648#define DIM_NUM_EXT_NODES "num_ext_node"
649#define DIM_NUM_INT_ELEMS "num_int_elem"
650#define DIM_NUM_BOR_ELEMS "num_bor_elem"
651#define DIM_NUM_PROCS "num_processors"
652#define DIM_NUM_PROCS_F "num_procs_file"
653#define DIM_NUM_NODES_GLOBAL "num_nodes_global"
654#define DIM_NUM_ELEMS_GLOBAL "num_elems_global"
655#define DIM_NUM_NS_GLOBAL "num_ns_global"
656#define DIM_NUM_SS_GLOBAL "num_ss_global"
657#define DIM_NUM_ELBLK_GLOBAL "num_el_blk_global"
658#define DIM_NUM_N_CMAPS "num_n_cmaps"
659#define DIM_NUM_E_CMAPS "num_e_cmaps"
660#define DIM_NCNT_CMAP "ncnt_cmap"
661#define DIM_ECNT_CMAP "ecnt_cmap"
662
664 EX_EL_UNK = -1, /**< unknown entity */
666 EX_EL_TRIANGLE = 1, /**< Triangle entity */
667 EX_EL_QUAD = 2, /**< Quad entity */
668 EX_EL_HEX = 3, /**< Hex entity */
669 EX_EL_WEDGE = 4, /**< Wedge entity */
670 EX_EL_TETRA = 5, /**< Tetra entity */
671 EX_EL_TRUSS = 6, /**< Truss entity */
672 EX_EL_BEAM = 7, /**< Beam entity */
673 EX_EL_SHELL = 8, /**< Shell entity */
674 EX_EL_SPHERE = 9, /**< Sphere entity */
675 EX_EL_CIRCLE = 10, /**< Circle entity */
676 EX_EL_TRISHELL = 11, /**< Triangular Shell entity */
677 EX_EL_PYRAMID = 12 /**< Pyramid entity */
680
681/* Internal structure declarations */
682
684{
689 int time_varid; /* Store to avoid lookup each timestep */
690 unsigned int assembly_count;
691 unsigned int blob_count;
692 unsigned int
693 compression_algorithm : 2; /**< GZIP/ZLIB, SZIP, more may be supported by NetCDF soon */
694 unsigned int compression_level : 6; /**< 0 (disabled) to 9 (maximum) compression level for
695 gzip, 4..32 and even for szip; NetCDF-4 only */
696 unsigned int user_compute_wordsize : 1; /**< 0 for 4 byte or 1 for 8 byte reals */
697 unsigned int shuffle : 1; /**< 1 true, 0 false */
698 unsigned int
699 file_type : 2; /**< 0 - classic, 1 -- 64 bit classic, 2 --NetCDF4, 3 --NetCDF4 classic */
700 unsigned int is_write : 1; /**< for output or append */
701 unsigned int is_parallel : 1; /**< 1 true, 0 false */
702 unsigned int is_hdf5 : 1; /**< 1 true, 0 false */
703 unsigned int is_pnetcdf : 1; /**< 1 true, 0 false */
704 unsigned int has_nodes : 1; /**< for input only at this time */
705 unsigned int has_edges : 1; /**< for input only at this time */
706 unsigned int has_faces : 1; /**< for input only at this time */
707 unsigned int has_elems : 1; /**< for input only at this time */
709};
710
723
724/* Used in exo_jack.c for fortran interface */
731
733{ /* for use with ex_get_file_item */
735 int value;
737};
738
740{
741 int64_t *id_vals;
743 size_t num;
744 int exoid;
749};
750
751#ifndef EXODUS_EXPORT
752#define EXODUS_EXPORT extern
753#endif /* EXODUS_EXPORT */
754
755EXODUS_EXPORT void exi_iqsort(int v[], int iv[], size_t N);
756EXODUS_EXPORT void exi_iqsort64(int64_t v[], int64_t iv[], int64_t N);
757
758EXODUS_EXPORT char *exi_catstr(const char * /*string*/, int /*num*/);
759EXODUS_EXPORT char *exi_catstr2(const char * /*string1*/, int /*num1*/, const char * /*string2*/,
760 int /*num2*/);
761EXODUS_EXPORT char *exi_dim_num_entries_in_object(ex_entity_type /*obj_type*/, int /*idx*/);
763EXODUS_EXPORT char *exi_name_var_of_object(ex_entity_type /*obj_type*/, int /*i*/, int /*j*/);
764EXODUS_EXPORT char *exi_name_red_var_of_object(ex_entity_type /*obj_type*/, int /*indx*/);
765EXODUS_EXPORT char *exi_name_of_map(ex_entity_type /*map_type*/, int /*map_index*/);
766
767EXODUS_EXPORT int exi_conv_init(int exoid, int *comp_wordsize, int *io_wordsize, int file_wordsize,
768 int int64_status, bool is_parallel, bool is_hdf5, bool is_pnetcdf,
769 bool is_write);
770
772
773EXODUS_EXPORT nc_type nc_flt_code(int exoid);
777
779EXODUS_EXPORT int exi_get_file_item(int /*exoid*/, struct exi_list_item **/*list_ptr*/);
780EXODUS_EXPORT int exi_inc_file_item(int /*exoid*/, struct exi_list_item **/*list_ptr*/);
781EXODUS_EXPORT void exi_rm_file_item(int /*exoid*/, struct exi_list_item ** /*list_ptr*/);
782
783extern struct exi_obj_stats *exoII_eb;
784extern struct exi_obj_stats *exoII_ed;
785extern struct exi_obj_stats *exoII_fa;
786extern struct exi_obj_stats *exoII_ns;
787extern struct exi_obj_stats *exoII_es;
788extern struct exi_obj_stats *exoII_fs;
789extern struct exi_obj_stats *exoII_ss;
790extern struct exi_obj_stats *exoII_els;
791extern struct exi_obj_stats *exoII_em;
792extern struct exi_obj_stats *exoII_edm;
793extern struct exi_obj_stats *exoII_fam;
794extern struct exi_obj_stats *exoII_nm;
795
796struct exi_file_item *exi_find_file_item(int exoid);
798struct exi_obj_stats *exi_get_stat_ptr(int exoid, struct exi_obj_stats **obj_ptr);
799
800EXODUS_EXPORT void exi_rm_stat_ptr(int exoid, struct exi_obj_stats **obj_ptr);
801
802EXODUS_EXPORT void exi_set_compact_storage(int exoid, int varid);
803EXODUS_EXPORT void exi_compress_variable(int exoid, int varid, int type);
806 int exoid, const char *func); /** Return fatal error if exoid does not refer to valid file */
807EXODUS_EXPORT int exi_check_multiple_open(const char *path, int mode, const char *func);
808EXODUS_EXPORT int exi_check_file_type(const char *path, int *type);
809EXODUS_EXPORT char *exi_canonicalize_filename(const char *path);
810EXODUS_EXPORT int exi_get_dimension(int exoid, const char *DIMENSION, const char *label,
811 size_t *count, int *dimid, const char *routine);
812
813EXODUS_EXPORT int exi_get_nodal_var_time(int exoid, int nodal_var_index, int64_t node_number,
814 int beg_time_step, int end_time_step,
815 void *nodal_var_vals);
816
817EXODUS_EXPORT int exi_put_nodal_var_multi_time(int exoid, int nodal_var_index, int64_t num_nodes,
818 int beg_time_step, int end_time_step,
819 const void *nodal_var_vals);
820
821EXODUS_EXPORT int exi_get_nodal_var_multi_time(int exoid, int nodal_var_index, int64_t node_number,
822 int beg_time_step, int end_time_step,
823 void *nodal_var_vals);
824
825EXODUS_EXPORT int exi_put_nodal_var_time(int exoid, int nodal_var_index, int64_t num_nodes,
826 int beg_time_step, int end_time_step,
827 const void *nodal_var_vals);
828
829EXODUS_EXPORT int exi_get_partial_nodal_var(int exoid, int time_step, int nodal_var_index,
830 int64_t start_node, int64_t num_nodes, void *var_vals);
831
832EXODUS_EXPORT int exi_put_partial_nodal_var(int exoid, int time_step, int nodal_var_index,
833 int64_t start_node, int64_t num_nodes,
834 const void *nodal_var_vals);
835EXODUS_EXPORT int exi_get_glob_vars(int exoid, int time_step, int num_glob_vars,
836 void *glob_var_vals);
837
838EXODUS_EXPORT int exi_get_glob_vars_multi_time(int exoid, int num_glob_vars, int beg_time_step,
839 int end_time_step, void *glob_var_vals);
840
841EXODUS_EXPORT int exi_get_glob_var_time(int exoid, int glob_var_index, int beg_time_step,
842 int end_time_step, void *glob_var_vals);
843
844EXODUS_EXPORT int exi_get_name(int exoid, int varid, size_t index, char *name, int name_size,
845 ex_entity_type obj_type, const char *routine);
846EXODUS_EXPORT int exi_get_names(int exoid, int varid, size_t num_entity, char **names,
847 ex_entity_type obj_type, const char *routine);
848EXODUS_EXPORT int exi_put_name(int exoid, int varid, size_t index, const char *name,
849 ex_entity_type obj_type, const char *subtype, const char *routine);
850EXODUS_EXPORT int exi_put_names(int exoid, int varid, size_t num_entity, char *const *names,
851 ex_entity_type obj_type, const char *subtype, const char *routine);
852EXODUS_EXPORT void exi_trim(char *name);
854EXODUS_EXPORT int exi_leavedef(int exoid, /* NemesisI file ID */
855 const char *call_rout /* Name of calling function */
856 );
857
858EXODUS_EXPORT int exi_check_version(int run_version);
859EXODUS_EXPORT int exi_handle_mode(unsigned int my_mode, int is_parallel, int run_version);
860EXODUS_EXPORT int exi_populate_header(int exoid, const char *path, int my_mode, int is_parallel,
861 int *comp_ws, int *io_ws);
862
864 struct exi_elem_blk_parm *elem_blk_parm);
865
866EXODUS_EXPORT int exi_get_file_type(int exoid, char *ftype);
867
869
870EXODUS_EXPORT int exi_put_homogenous_block_params(int exoid, size_t block_count,
871 const struct ex_block *blocks);
872
874
875EXODUS_EXPORT int nei_id_lkup(int exoid, /* NetCDF/Exodus file ID */
876 const char *ne_var_name, /* Nemesis variable name */
877 int64_t *idx, /* index variable for variable, length 2 */
878 ex_entity_id ne_var_id /* NetCDF variable ID */
879);
880
881/**
882 * For output databases, the maximum length of any entity, variable,
883 * property, attribute, or coordinate name to be written (not
884 * including the NULL terminator). If a name is longer than this
885 * value, a warning message will be output to stderr and the name
886 * will be truncated. Must be set (via call to
887 * ex_set_max_name_length()(exoid, int len) prior to calling ex_create().
888 *
889 * For input databases, the size of the name arrays that the client
890 * code will be passing to API routines that retrieve names (not
891 * including the NULL terminator). This defaults to 32 for
892 * compatibility with older clients. The value used at the time of
893 * creation of the database can be queried by ex_inquire with the
894 * #EX_INQ_DB_MAX_ALLOWED_NAME_LENGTH argument. The current value for this
895 * variable can be queried with #EX_INQ_MAX_READ_NAME_LENGTH argument.
896 *
897 * Note that this is a global setting for all databases. If you are
898 * accessing multiple databases, they will all use the same value.
899 */
901/*! @} */
902
903#ifdef __cplusplus
904}
905#endif
static char last_pname[MAX_ERR_LENGTH+1]
Definition ex_err.c:20
static int last_err_num
Definition ex_err.c:22
static char last_errmsg[MAX_ERR_LENGTH+1]
Definition ex_err.c:21
ex_entity_type
Definition exodusII.h:259
int64_t ex_entity_id
Definition exodusII.h:324
struct exi_list_item ** exi_get_counter_list(ex_entity_type obj_type)
Definition ex_utils.c:1148
nc_type nc_flt_code(int exoid)
Definition ex_conv.c:316
char * exi_canonicalize_filename(const char *path)
Definition ex_utils.c:2321
int exi_get_dimension(int exoid, const char *DIMENSION, const char *label, size_t *count, int *dimid, const char *routine)
Definition ex_utils.c:1648
struct exi_obj_stats * exoII_es
Definition ex_utils.c:27
struct exi_obj_stats * exoII_nm
Definition ex_utils.c:34
#define EXODUS_EXPORT
Definition exodusII_int.h:752
int exi_put_partial_nodal_var(int exoid, int time_step, int nodal_var_index, int64_t start_node, int64_t num_nodes, const void *nodal_var_vals)
Definition ex_put_partial_nodal_var_int.c:48
int exi_check_file_type(const char *path, int *type)
Definition ex_utils.c:173
struct exi_obj_stats * exoII_ed
Definition ex_utils.c:24
int exi_put_homogenous_block_params(int exoid, size_t block_count, const struct ex_block *blocks)
Definition ex__put_homogenous_block_params.c:18
int exi_populate_header(int exoid, const char *path, int my_mode, int is_parallel, int *comp_ws, int *io_ws)
Definition ex_utils.c:2124
int exi_is_parallel(int exoid)
Definition ex_conv.c:503
struct exi_obj_stats * exoII_fa
Definition ex_utils.c:25
void exi_update_max_name_length(int exoid, int length)
Definition ex_utils.c:273
int exi_get_block_param(int exoid, ex_entity_id id, int ndim, struct exi_elem_blk_parm *elem_blk_parm)
Definition ex_int_get_block_param.c:23
struct exi_obj_stats * exoII_fs
Definition ex_utils.c:28
char * exi_name_var_of_object(ex_entity_type, int, int)
Definition ex_utils.c:680
char * exi_dim_num_objects(ex_entity_type obj_type)
Definition ex_utils.c:620
int exi_get_partial_nodal_var(int exoid, int time_step, int nodal_var_index, int64_t start_node, int64_t num_nodes, void *var_vals)
Definition ex_get_partial_nodal_var_int.c:40
int exi_get_cpu_ws(void)
Definition ex_utils.c:1370
struct exi_file_item * exi_find_file_item(int exoid)
Definition ex_conv.c:29
int exi_check_version(int run_version)
Definition ex_utils.c:1796
struct exi_obj_stats * exoII_em
Definition ex_utils.c:31
void exi_rm_stat_ptr(int exoid, struct exi_obj_stats **obj_ptr)
Definition ex_utils.c:1097
exi_element_type
Definition exodusII_int.h:663
int exi_default_max_name_length
void exi_iqsort(int v[], int iv[], size_t N)
Definition ex_utils.c:1587
int exi_get_name(int exoid, int varid, size_t index, char *name, int name_size, ex_entity_type obj_type, const char *routine)
Definition ex_utils.c:457
int exi_get_nodal_var_multi_time(int exoid, int nodal_var_index, int64_t node_number, int beg_time_step, int end_time_step, void *nodal_var_vals)
Definition ex__get_nodal_var_multi_time.c:67
void exi_iqsort64(int64_t v[], int64_t iv[], int64_t N)
Definition ex_utils.c:1603
exi_coordinate_frame_type
Definition exodusII_int.h:725
void exi_rm_file_item(int, struct exi_list_item **)
Definition ex_utils.c:1295
void exi_compress_variable(int exoid, int varid, int type)
Definition ex_utils.c:1720
int exi_put_name(int exoid, int varid, size_t index, const char *name, ex_entity_type obj_type, const char *subtype, const char *routine)
Definition ex_utils.c:380
int nei_check_file_version(int exoid)
Definition ex_ne_util.c:195
struct exi_obj_stats * exoII_eb
Definition ex_utils.c:23
int exi_check_multiple_open(const char *path, int mode, const char *func)
Definition ex_conv.c:44
struct exi_obj_stats * exoII_fam
Definition ex_utils.c:33
int exi_put_nemesis_version(int exoid)
Definition ex_ne_util.c:155
char * exi_catstr2(const char *, int, const char *, int)
Definition ex_utils.c:532
int exi_get_nodal_var_time(int exoid, int nodal_var_index, int64_t node_number, int beg_time_step, int end_time_step, void *nodal_var_vals)
Definition ex_get_nodal_var_time_int.c:81
void exi_set_compact_storage(int exoid, int varid)
Definition ex_utils.c:1697
char * exi_catstr(const char *, int)
Definition ex_utils.c:516
int exi_put_nodal_var_multi_time(int exoid, int nodal_var_index, int64_t num_nodes, int beg_time_step, int end_time_step, const void *nodal_var_vals)
struct exi_file_item * exi_add_file_item(int exoid)
int exi_get_names(int exoid, int varid, size_t num_entity, char **names, ex_entity_type obj_type, const char *routine)
Definition ex_utils.c:434
int exi_get_glob_var_time(int exoid, int glob_var_index, int beg_time_step, int end_time_step, void *glob_var_vals)
Definition ex_get_glob_var_time_int.c:74
void exi_conv_exit(int exoid)
Definition ex_conv.c:280
struct exi_obj_stats * exoII_els
Definition ex_utils.c:30
char * exi_name_red_var_of_object(ex_entity_type, int)
Definition ex_utils.c:707
void exi_reset_error_status(void)
Definition ex_err.c:33
char * exi_dim_num_entries_in_object(ex_entity_type, int)
Definition ex_utils.c:652
char * exi_name_of_map(ex_entity_type, int)
Definition ex_utils.c:734
struct exi_obj_stats * exoII_edm
Definition ex_utils.c:32
struct exi_obj_stats * exoII_ss
Definition ex_utils.c:29
int exi_get_glob_vars(int exoid, int time_step, int num_glob_vars, void *glob_var_vals)
Definition ex_get_glob_vars_int.c:33
int exi_handle_mode(unsigned int my_mode, int is_parallel, int run_version)
Definition ex_utils.c:1818
int exi_check_valid_file_id(int exoid, const char *func)
Definition ex_conv.c:75
int exi_get_file_type(int exoid, char *ftype)
Definition ex_ne_util.c:114
int exi_leavedef(int exoid, const char *call_rout)
Definition ex_utils.c:1780
int exi_id_lkup(int exoid, ex_entity_type id_type, ex_entity_id num)
Definition ex_utils.c:767
int exi_get_glob_vars_multi_time(int exoid, int num_glob_vars, int beg_time_step, int end_time_step, void *glob_var_vals)
Definition ex__get_glob_vars_multi_time.c:33
int exi_inc_file_item(int, struct exi_list_item **)
Definition ex_utils.c:1199
int exi_get_file_item(int, struct exi_list_item **)
Definition ex_utils.c:1248
int exi_put_names(int exoid, int varid, size_t num_entity, char *const *names, ex_entity_type obj_type, const char *subtype, const char *routine)
Definition ex_utils.c:311
void exi_trim(char *name)
Definition ex_utils.c:489
int exi_conv_init(int exoid, int *comp_wordsize, int *io_wordsize, int file_wordsize, int int64_status, bool is_parallel, bool is_hdf5, bool is_pnetcdf, bool is_write)
Definition ex_conv.c:110
int exi_put_nodal_var_time(int exoid, int nodal_var_index, int64_t num_nodes, int beg_time_step, int end_time_step, const void *nodal_var_vals)
Definition ex__put_nodal_var_multi_time.c:78
int nei_id_lkup(int exoid, const char *ne_var_name, int64_t *idx, ex_entity_id ne_var_id)
Definition ex_ne_util.c:40
struct exi_obj_stats * exi_get_stat_ptr(int exoid, struct exi_obj_stats **obj_ptr)
Definition ex_utils.c:1059
int exi_comp_ws(int exoid)
Definition ex_conv.c:481
struct exi_obj_stats * exoII_ns
Definition ex_utils.c:26
@ EX_EL_WEDGE
Definition exodusII_int.h:669
@ EX_EL_TRIANGLE
Definition exodusII_int.h:666
@ EX_EL_SPHERE
Definition exodusII_int.h:674
@ EX_EL_TRISHELL
Definition exodusII_int.h:676
@ EX_EL_SHELL
Definition exodusII_int.h:673
@ EX_EL_PYRAMID
Definition exodusII_int.h:677
@ EX_EL_TETRA
Definition exodusII_int.h:670
@ EX_EL_NULL_ELEMENT
Definition exodusII_int.h:665
@ EX_EL_HEX
Definition exodusII_int.h:668
@ EX_EL_TRUSS
Definition exodusII_int.h:671
@ EX_EL_BEAM
Definition exodusII_int.h:672
@ EX_EL_CIRCLE
Definition exodusII_int.h:675
@ EX_EL_QUAD
Definition exodusII_int.h:667
@ EX_EL_UNK
Definition exodusII_int.h:664
@ EX_CF_SPHERICAL
Definition exodusII_int.h:728
@ EX_CF_RECTANGULAR
Definition exodusII_int.h:726
@ EX_CF_CYLINDRICAL
Definition exodusII_int.h:727
#define MAX_ERR_LENGTH
Definition exodusII.h:320
Definition exodusII.h:395
Definition exodusII_int.h:712
exi_element_type elem_type_val
Definition exodusII_int.h:721
int64_t elem_blk_id
Definition exodusII_int.h:714
int num_nodes_per_elem
Definition exodusII_int.h:716
int64_t elem_ctr
Definition exodusII_int.h:720
int num_attr
Definition exodusII_int.h:719
int64_t num_elem_in_blk
Definition exodusII_int.h:715
char elem_type[33]
Definition exodusII_int.h:713
int num_nodes_per_side[6]
Definition exodusII_int.h:718
int num_sides
Definition exodusII_int.h:717
Definition exodusII_int.h:684
unsigned int is_write
Definition exodusII_int.h:700
unsigned int user_compute_wordsize
Definition exodusII_int.h:696
int file_id
Definition exodusII_int.h:685
unsigned int has_elems
Definition exodusII_int.h:707
struct exi_file_item * next
Definition exodusII_int.h:708
int time_varid
Definition exodusII_int.h:689
nc_type netcdf_type_code
Definition exodusII_int.h:686
unsigned int has_nodes
Definition exodusII_int.h:704
unsigned int is_parallel
Definition exodusII_int.h:701
unsigned int is_hdf5
Definition exodusII_int.h:702
unsigned int has_edges
Definition exodusII_int.h:705
unsigned int blob_count
Definition exodusII_int.h:691
unsigned int assembly_count
Definition exodusII_int.h:690
unsigned int compression_level
Definition exodusII_int.h:694
int maximum_name_length
Definition exodusII_int.h:688
unsigned int is_pnetcdf
Definition exodusII_int.h:703
unsigned int compression_algorithm
Definition exodusII_int.h:693
unsigned int file_type
Definition exodusII_int.h:699
int int64_status
Definition exodusII_int.h:687
unsigned int shuffle
Definition exodusII_int.h:697
unsigned int has_faces
Definition exodusII_int.h:706
Definition exodusII_int.h:733
int value
Definition exodusII_int.h:735
int exo_id
Definition exodusII_int.h:734
struct exi_list_item * next
Definition exodusII_int.h:736
Definition exodusII_int.h:740
char valid_stat
Definition exodusII_int.h:746
int * stat_vals
Definition exodusII_int.h:742
int exoid
Definition exodusII_int.h:744
char valid_ids
Definition exodusII_int.h:745
struct exi_obj_stats * next
Definition exodusII_int.h:748
int64_t * id_vals
Definition exodusII_int.h:741
size_t num
Definition exodusII_int.h:743
char sequential
Definition exodusII_int.h:747