⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exgssn.c

📁 一个用来实现偏微分方程中网格的计算库
💻 C
📖 第 1 页 / 共 3 页
字号:
/* * Copyright (c) 2005 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. *  *//******************************************************************************* exgssn - ex_get_side_set_node_list** entry conditions - *   input parameters:*       int     exoid                   exodus file id*       int     side_set_id             side set id** exit conditions - *       int     *side_set_node_cnt_list returned array of number of nodes for*                                       side or face*       int     *side_set_node_list     array of nodes** revision history - **  $Id: exgssn.c 2928 2008-07-11 17:45:07Z friedmud $******************************************************************************/#include <ctype.h>#include <string.h>#include <stdlib.h>#include "exodusII.h"#include "exodusII_int.h"/*! * This routine is designed to read the Exodus II V 2.0 side set side  * definition  and return a ExodusI style side set node definition. */int ex_get_side_set_node_list(int exoid,                          int side_set_id,                          int *side_set_node_cnt_list,                          int *side_set_node_list){  int i, j, m;   int  num_side_sets, num_elem_blks, num_df, ndim;  int tot_num_elem = 0, tot_num_ss_elem = 0, elem_num = 0;  int connect_offset, side_num, node_pos;  int *elem_blk_ids, *connect;   int *ss_elem_ndx, *ss_elem_node_ndx, *ss_parm_ndx;  int *side_set_elem_list, *side_set_side_list;  int elem_ctr, node_ctr, elem_num_pos;  int num_elem_in_blk, num_nodes_per_elem, num_attr;  float fdum;  char *cdum, elem_type[MAX_STR_LENGTH+1];  struct elem_blk_parm  *elem_blk_parms;/* side to node translation tables -      These tables are used to look up the side number based on the     first and second node in the side/face list. The side node order     is found in the original Exodus document, SAND87-2997. The element     node order is found in the ExodusII document, SAND92-2137. These     tables were generated by following the right-hand rule for determining     the outward normal.*/  /* triangle */  static int tri_table[3][3] = {  /*   1        2        3                                             side   */    {1,2,4}, {2,3,5}, {3,1,6}                                       /* nodes  */  };  /* triangle 3d */  static int tri3_table[5][7] = {  /*       1                2                                          side   */    {1,2,3,4,5,6,7}, {3,2,1,6,5,4,7},                               /* nodes  */  /*       3              4              5                             side   */    {1,2,4,0,0,0,0}, {2,3,5,0,0,0,0}, {3,1,6,0,0,0,0}               /* nodes  */  };  /* quad */  static int quad_table[4][3] = {  /*   1        2        3        4                                    side   */    {1,2,5}, {2,3,6}, {3,4,7}, {4,1,8}                              /* nodes  */  };  /* shell */  static int shell_table[6][8] = {  /*        1                  2                                       side   */    {1,2,3,4,5,6,7,8}, {1,4,3,2,8,7,6,5} ,                          /* nodes  */  /*        3                  4                                       side   */    {1,2,5,0,0,0,0,0}, {2,3,6,0,0,0,0,0} ,                          /* nodes  */  /*        5                  6                                       side   */    {3,4,7,0,0,0,0,0}, {4,1,8,0,0,0,0,0}                            /* nodes  */  };  /* tetra */  static int tetra_table[4][6] = {  /*      1              2               3               4            side   */    {1,2,4,5,9,8}, {2,3,4,6,10,9}, {1,4,3,8,10,7}, {1,3,2,7,6,5}   /* nodes  */  };  /* wedge */  static int wedge_table[5][8] = {  /*        1                     2                     3              side   */    {1,2,5,4,7,11,13,10}, {2,3,6,5,8,12,14,11}, {1,4,6,3,10,15,12,9},  /*        4                  5                                       side   */    {1,3,2,0,9,8,7,0}, {4,5,6,0,13,14,15,0}                         /* nodes  */  };  /* hex */  static int hex_table[6][9] = {  /*         1                        2                                side   */    {1,2,6,5,9,14,17,13,26}, {2,3,7,6,10,15,18,14,25},              /* nodes  */  /*         3                        4                                side   */    {3,4,8,7,11,16,19,15,27}, {1,5,8,4,13,20,16,12,24},             /* nodes  */  /*         5                        6                                side   */    {1,4,3,2,12,11,10,9,22},  {5,6,7,8,17,18,19,20,23}              /* nodes  */  };  /* pyramid */  static int pyramid_table[5][8] = {  /*          1                   2                    3              side   */    {1,2,5,0,6,11,10,0}, {2,3,5,0,7,12,11,0}, {3,4,5,0,8,13,12,0}, /* nodes  */  /*          4                  5                                    side   */    {1,5,4,0,10,13,9,0}, {1,4,3,2,9,8,7,6}                         /* nodes  */  };  char errmsg[MAX_ERR_LENGTH];  exerrval = 0; /* clear error code */  cdum = 0; /* initialize even though it is not used *//* first check if any side sets are specified *//* inquire how many side sets have been stored */  if ((ex_inquire(exoid, EX_INQ_SIDE_SETS, &num_side_sets, &fdum, cdum)) == -1)  {    sprintf(errmsg,           "Error: failed to get number of side sets in file id %d",exoid);    ex_err("ex_get_side_set_node_list",errmsg,exerrval);    return(EX_FATAL);  }  if (num_side_sets == 0)  {    sprintf(errmsg,           "Warning: no side sets defined in file id %d",exoid);    ex_err("ex_get_side_set_node_list",errmsg,EX_WARN);    return(EX_WARN);  }/* Lookup index of side set id in VAR_SS_IDS array */  ex_id_lkup(exoid,EX_SIDE_SET,side_set_id);  if (exerrval != 0)   {     if (exerrval == EX_NULLENTITY)     {       sprintf(errmsg,              "Warning: side set %d is NULL in file id %d",               side_set_id,exoid);       ex_err("ex_get_side_set_node_list",errmsg,EX_MSG);       return (EX_WARN);     }     else     {     sprintf(errmsg,     "Error: failed to locate side set id %d in VAR_SS_IDS array in file id %d",             side_set_id,exoid);     ex_err("ex_get_side_set_node_list",errmsg,exerrval);     return (EX_FATAL);     }  }  if ((ex_inquire(exoid, EX_INQ_ELEM_BLK, &num_elem_blks, &fdum, cdum)) == -1)  {    sprintf(errmsg,           "Error: failed to get number of element blocks in file id %d",exoid);    ex_err("ex_get_side_set_node_list",errmsg,exerrval);    return(EX_FATAL);  }  if ((ex_inquire(exoid, EX_INQ_ELEM, &tot_num_elem, &fdum, cdum)) == -1)  {    sprintf(errmsg,           "Error: failed to get total number of elements in file id %d",exoid);    ex_err("ex_get_side_set_node_list",errmsg,exerrval);    return(EX_FATAL);  }/* get the dimensionality of the coordinates;  this is necessary to   distinguish between 2d TRIs and 3d TRIs */  if ((ex_inquire(exoid, EX_INQ_DIM, &ndim, &fdum, cdum)) == -1)  {    sprintf(errmsg,           "Error: failed to get dimensionality in file id %d",exoid);    ex_err("ex_cvt_nodes_to_sides",errmsg,exerrval);    return(EX_FATAL);  }  /* First determine the  # of elements in the side set*/  if ((ex_get_side_set_param(exoid,side_set_id,&tot_num_ss_elem,&num_df)) == -1)  {    sprintf(errmsg,         "Error: failed to get number of elements in side set %d in file id %d",            side_set_id, exoid);    ex_err("ex_get_side_set_node_list",errmsg,exerrval);    return(EX_FATAL);  }  /* Allocate space for the side set element list */  if (!(side_set_elem_list=malloc(tot_num_ss_elem*sizeof(int))))  {    exerrval = EX_MEMFAIL;    sprintf(errmsg,    "Error: failed to allocate space for side set element list for file id %d",            exoid);    ex_err("ex_get_side_set_node_list",errmsg,exerrval);    return (EX_FATAL);  }  /* Allocate space for the side set side list */  if (!(side_set_side_list=malloc(tot_num_ss_elem*sizeof(int))))  {    free(side_set_elem_list);    exerrval = EX_MEMFAIL;    sprintf(errmsg,    "Error: failed to allocate space for side set side list for file id %d",            exoid);    ex_err("ex_get_side_set_node_list",errmsg,exerrval);    return (EX_FATAL);  }  if (ex_get_side_set(exoid, side_set_id,                       side_set_elem_list, side_set_side_list) == -1)  {    free(side_set_elem_list);    free(side_set_side_list);    sprintf(errmsg,    "Error: failed to get side set %d in file id %d",            side_set_id, exoid);    ex_err("ex_get_side_set_node_list",errmsg,exerrval);    return (EX_FATAL);  }  /* Allocate space for the ss element index array */  if (!(ss_elem_ndx= malloc(tot_num_ss_elem*sizeof(int))))  {    free(side_set_elem_list);    free(side_set_side_list);    exerrval = EX_MEMFAIL;    sprintf(errmsg, "Error: failed to allocate space for side set elem sort array for file id %d",            exoid);    ex_err("ex_get_side_set_node_list",errmsg,exerrval);    return (EX_FATAL);  }  /* Sort side set element list into index array  - non-destructive */  for (i=0;i<tot_num_ss_elem;i++)    ss_elem_ndx[i] = i; /* init index array to current position */  ex_iqsort(side_set_elem_list, ss_elem_ndx,tot_num_ss_elem);  /* Allocate space for the element block ids */  if (!(elem_blk_ids= malloc(num_elem_blks*sizeof(int))))  {    exerrval = EX_MEMFAIL;    free(ss_elem_ndx);    free(side_set_side_list);    free(side_set_elem_list);    sprintf(errmsg,        "Error: failed to allocate space for element block ids for file id %d",            exoid);    ex_err("ex_get_side_set_node_list",errmsg,exerrval);    return (EX_FATAL);  }  if (ex_get_elem_blk_ids(exoid, elem_blk_ids) == -1)  {    free(elem_blk_ids);    free(ss_elem_ndx);    free(side_set_side_list);    free(side_set_elem_list);    sprintf(errmsg,           "Error: failed to get element block ids in file id %d",            exoid);    ex_err("ex_get_side_set_node_list",errmsg,EX_MSG);    return(EX_FATAL);  }   /* Allocate space for the element block params */  if (!(elem_blk_parms= malloc(num_elem_blks*sizeof(struct elem_blk_parm))))  {    free(elem_blk_ids);    free(ss_elem_ndx);    free(side_set_side_list);    free(side_set_elem_list);    exerrval = EX_MEMFAIL;    sprintf(errmsg,      "Error: failed to allocate space for element block params for file id %d",            exoid);    ex_err("ex_get_side_set_node_list",errmsg,exerrval);    return (EX_FATAL);  }  elem_ctr = 0;  for (i=0; i<num_elem_blks; i++)  {    /* read in an element block parameter */    if ((ex_get_elem_block (exoid,                            elem_blk_ids[i],                            elem_type,                            &num_elem_in_blk,                            &num_nodes_per_elem,                            &num_attr)) == -1)    {      free(elem_blk_parms);      free(elem_blk_ids);      free(ss_elem_ndx);      free(side_set_side_list);      free(side_set_elem_list);      sprintf(errmsg,             "Error: failed to get element block %d parameters in file id %d",              elem_blk_ids[i], exoid);      ex_err("ex_get_side_set_node_list",errmsg,EX_MSG);      return(EX_FATAL);    }    elem_blk_parms[i].num_elem_in_blk = num_elem_in_blk;    elem_blk_parms[i].num_nodes_per_elem = num_nodes_per_elem;    elem_blk_parms[i].num_attr = num_attr;    for (m=0; m < strlen(elem_type); m++)      elem_blk_parms[i].elem_type[m] = toupper(elem_type[m]);    elem_blk_parms[i].elem_type[m] = NULL_ELEMENT;    if (strncmp(elem_blk_parms[i].elem_type,"CIRCLE",3) == 0)    {      elem_blk_parms[i].elem_type_val = CIRCLE;      /* set side set node stride */        elem_blk_parms[i].num_nodes_per_side[0] = 1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -