📄 expinix.c
字号:
/* * Copyright (c) 2006 Sandia Corporation. Under the terms of Contract * DE-AC04-94AL85000 with Sandia Corporation, the U.S. Governement * retains certain rights in this software. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided * with the distribution. * * * Neither the name of Sandia Corporation nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * *//******************************************************************************* expinix - ex_put_init_ext** entry conditions - * input parameters:* int exoid exodus file id* const ex_init_params* params finite element model parameters** exit conditions - ** revision history - * David Thompson - Added edge/face blocks/sets** $Id: expinix.c 2928 2008-07-11 17:45:07Z friedmud $******************************************************************************/#include "exodusII.h"#include "exodusII_int.h"#include <string.h>#include <assert.h>#include <stdlib.h>#define EX_WRITE_OBJECT_PARAMS(TNAME,DNAME,SNAME,INAME,NUM_BLK,DIMVAR) \ /* Can have nonzero model->num_elem_blk even if model->num_elem == 0 */ \ if ((NUM_BLK) > 0) { \ if ((status = nc_def_dim(exoid, DNAME, (size_t)(NUM_BLK), &DIMVAR)) != NC_NOERR) { \ exerrval = status; \ sprintf(errmsg, \ "Error: failed to define number of " TNAME "s in file id %d", \ exoid); \ ex_err("ex_put_init_ext",errmsg,exerrval); \ goto error_ret; /* exit define mode and return */ \ } \ /* ...and some variables */ \ /* element block id status array */ \ dim[0] = DIMVAR; \ if ((status = nc_def_var (exoid, SNAME, NC_INT, 1, dim, &varid)) != NC_NOERR) { \ exerrval = status; \ sprintf(errmsg, \ "Error: failed to define " TNAME " status array in file id %d",exoid); \ ex_err("ex_put_init_ext",errmsg,exerrval); \ goto error_ret; /* exit define mode and return */ \ } \ \ /* TNAME id array */ \ if ((status = nc_def_var (exoid, INAME, NC_INT, 1, dim, &varid)) != NC_NOERR) { \ exerrval = status; \ sprintf(errmsg, \ "Error: failed to define " TNAME " id array in file id %d",exoid); \ ex_err("ex_put_init_ext",errmsg,exerrval); \ goto error_ret; /* exit define mode and return */ \ } \ \ /* store property name as attribute of property array variable */ \ if ((status=nc_put_att_text(exoid, varid, ATT_PROP_NAME, 3, "ID")) != NC_NOERR) { \ exerrval = status; \ sprintf(errmsg, \ "Error: failed to store " TNAME " property name %s in file id %d", \ "ID",exoid); \ ex_err("ex_put_init_ext",errmsg,exerrval); \ return (EX_FATAL); \ } \ }#define EX_WRITE_MAP_PARAMS(TNAME,DNUMMAP,VMAPIDS,NUMMAPS,MAPDIM) \ /* Can have nonzero model->num_XXXX_map even if model->num_XXXX == 0 */ \ if ((NUMMAPS) > 0) { \ if ((status = nc_def_dim(exoid, DNUMMAP, (size_t)(NUMMAPS), &MAPDIM)) != NC_NOERR) { \ exerrval = status; \ sprintf(errmsg, \ "Error: failed to define number of " TNAME "s in file id %d", \ exoid); \ ex_err("ex_put_init_ext",errmsg,exerrval); \ goto error_ret; /* exit define mode and return */ \ } \ \ dim[0] = MAPDIM; \ \ /* TNAME id array */ \ if ((status = nc_def_var(exoid, VMAPIDS, NC_INT, 1, dim, &varid)) != NC_NOERR) { \ exerrval = status; \ sprintf(errmsg, \ "Error: failed to define " TNAME " id array in file id %d",exoid); \ ex_err("ex_put_init_ext",errmsg,exerrval); \ goto error_ret; /* exit define mode and return */ \ } \ \ /* store property name as attribute of property array variable */ \ if ((status=nc_put_att_text(exoid, varid, ATT_PROP_NAME, 3, "ID")) != NC_NOERR) { \ exerrval = status; \ sprintf(errmsg, \ "Error: failed to store " TNAME " property name %s in file id %d", \ "ID",exoid); \ ex_err("ex_put_init_ext",errmsg,exerrval); \ return (EX_FATAL); \ } \ }#define EX_WRITE_OBJECT_NAMES(TNAME,DNAME,DIMVAR,DIMVAL) \ /* Element block names... */ \ if ((DIMVAL) > 0) { \ dim[0] = (DIMVAR); \ dim[1] = strdim; \ \ if ((status = nc_def_var (exoid, DNAME, NC_CHAR, 2, dim, &varid)) != NC_NOERR) { \ exerrval = status; \ sprintf(errmsg, \ "Error: failed to define %s name array in file id %d",TNAME,exoid); \ ex_err("ex_put_init_ext",errmsg,exerrval); \ goto error_ret; /* exit define mode and return */ \ } \ }static void zero_id_status(int exoid, const char *var_stat, const char *var_id, int count, int *ids){ int status; int i; int id_var, stat_var; if (count > 0) { for (i=0; i < count; i++) { ids[i] = 0; } status = nc_inq_varid(exoid, var_id, &id_var); assert(status == NC_NOERR); status = nc_inq_varid(exoid, var_stat, &stat_var); assert(status == NC_NOERR); status = nc_put_var_int(exoid, id_var, ids); assert(status == NC_NOERR); status = nc_put_var_int(exoid, stat_var, ids); assert(status == NC_NOERR); }}/*! * writes the initialization parameters to the EXODUS II file * \param exoid exodus file id * \param model finite element model parameters */int ex_put_init_ext (int exoid, const ex_init_params *model){ int numdimdim, numnoddim, elblkdim, edblkdim, fablkdim, esetdim, fsetdim, elsetdim, nsetdim, ssetdim, strdim, dim[2], varid, temp; int status; int nmapdim,edmapdim,famapdim,emapdim;#if 0 /* used for header size calculations which are turned off for now */ int header_size, fixed_var_size, iows;#endif char errmsg[MAX_ERR_LENGTH]; exerrval = 0; /* clear error code */ if (nc_inq_dimid (exoid, DIM_NUM_DIM, &temp) == NC_NOERR) { exerrval = EX_MSG; sprintf(errmsg, "Error: initialization already done for file id %d",exoid); ex_err("ex_put_init_ext",errmsg,exerrval); return (EX_FATAL); } /* put file into define mode */ if ((status = nc_redef (exoid)) != NC_NOERR) { exerrval = status; sprintf(errmsg, "Error: failed to put file id %d into define mode", exoid); ex_err("ex_put_init_ext",errmsg,exerrval); return (EX_FATAL); } /* define some attributes... */ if ((status = nc_put_att_text(exoid, NC_GLOBAL, (const char*)ATT_TITLE, strlen(model->title)+1, model->title)) != NC_NOERR) { exerrval = status; sprintf(errmsg, "Error: failed to define model->title attribute to file id %d", exoid); ex_err("ex_put_init_ext",errmsg,exerrval); goto error_ret; /* exit define mode and return */ } /* ...and some dimensions... */ if ((status = nc_def_dim(exoid, DIM_NUM_DIM, model->num_dim, &numdimdim)) != NC_NOERR) { exerrval = status; sprintf(errmsg, "Error: failed to define number of dimensions in file id %d",exoid); ex_err("ex_put_init_ext",errmsg,exerrval); goto error_ret; /* exit define mode and return */ } /* * Need to handle "empty file" that may be the result of a strange * load balance or some other strange run. Note that if num_node * == 0, then model->num_elem must be zero since you cannot have elements * with no nodes. It *is* permissible to have zero elements with * non-zero node count. */ if (model->num_nodes > 0) { if ((status = nc_def_dim(exoid, DIM_NUM_NODES, model->num_nodes, &numnoddim)) != NC_NOERR) { exerrval = status; sprintf(errmsg, "Error: failed to define number of nodes in file id %d",exoid); ex_err("ex_put_init_ext",errmsg,exerrval); goto error_ret; /* exit define mode and return */ } } if (model->num_elem > 0) { if (model->num_nodes <= 0) { exerrval = EX_MSG; sprintf(errmsg, "Error: Cannot have non-zero element count if node count is zero.in file id %d",exoid); ex_err("ex_put_init_ext",errmsg,exerrval); goto error_ret; /* exit define mode and return */ } if ((status = nc_def_dim(exoid, DIM_NUM_ELEM, model->num_elem, &temp)) != NC_NOERR) {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -