This repository has been archived by the owner on Mar 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmk_dm.h
42 lines (35 loc) · 1.63 KB
/
mk_dm.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/************************************************************************ *
* Goma - Multiphysics finite element software *
* Sandia National Laboratories *
* *
* Copyright (c) 2014 Sandia Corporation. *
* *
* Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, *
* the U.S. Government retains certain rights in this software. *
* *
* This software is distributed under the GNU General Public License. *
\************************************************************************/
/* mk_dm.h - prototype declarations for mk_dm.c
*/
#ifndef _MK_DM_H
#define _MK_DM_H
#ifdef EXTERN
#undef EXTERN
#endif
#ifdef _MK_DM_C
#define EXTERN /* do nothing */
#endif
#ifndef _MK_DM_C
#define EXTERN extern
#endif
EXTERN void make_goma_dofmap /* mk_dm.c */
PROTO((Exo_DB *, /* full mesh description */
Bevm ***, /* mult - basic eqnvar multiplicities */
int ***, /* evd - eqnvar dependencies */
int ***, /* Lucky - local nodal dof existence profs */
int *, /* num_basic_eqnvars - for ea elemblock */
int *, /* node_kind - list for every global node */
int *, /* node_dof0 - name of first dof for ea node */
Node_Description **, /* pnd - pointer array to node descriptions */
int *)); /* nkn - actual number of node descriptions */
#endif /* _MK_DM_H */