forked from pcoulier/hbemfun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bemcollpoints.h
55 lines (48 loc) · 2.65 KB
/
bemcollpoints.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
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef _BEMNODEINDEX_
#define _BEMNODEINDEX_
void BemNodeIndex(const double* const Nod, const unsigned int& nNod,
const unsigned int& NodeID, int& index);
#endif
#ifndef _BEMCOLLPOINTS_
#define _BEMCOLLPOINTS_
void BemCollPoints(const double* const Elt, const double* const Nod,
unsigned int* const TypeID, unsigned int* const nKeyOpt,
const char* const TypeName[], const char* const TypeKeyOpts[],
const unsigned int& nEltType,
const unsigned int& nElt, const unsigned int& maxEltCol, const unsigned int& nNod,
unsigned int* const NodalColl,unsigned int* const CentroidColl,
unsigned int& nNodalColl, unsigned int& nCentroidColl);
#endif
#ifndef _BEMCOLLCOORDS_
#define _BEMCOLLCOORDS_
void BemCollCoords(const double* const Elt, const double* const Nod,
unsigned int* const TypeID, unsigned int* const nKeyOpt,
const char* const TypeName[],const char* const TypeKeyOpts[],const unsigned int& nEltType,
const unsigned int* const CentroidColl,
const unsigned int* const NodalColl,double* const CollPoints,
const unsigned int& nTotalColl, const unsigned int& nElt,const unsigned int& nNod);
#endif
#ifndef _BEMCOINCNODES_
#define _BEMCOINCNODES_
void BemCoincNodes(const double* const Nod, const unsigned int& nNod,
double* const CoincNod, bool& SlavesExist);
#endif
#ifndef _BEMELTCOLLINDEX_
#define _BEMELTCOLLINDEX_
void BemEltCollIndex(const double* const Elt, const unsigned int& iElt, const unsigned int& nElt,
const double* const CollPoints, const unsigned int& nCentroidColl,
const unsigned int& nTotalColl, const unsigned int& nEltColl,
const unsigned int& nEltNod, unsigned int* const eltCollIndex);
#endif
#ifndef _BEMREGULARCOLL_
#define _BEMREGULARCOLL_
void BemRegularColl(const double* const Elt,const unsigned int& iElt,
const unsigned int& nElt, const double* const Nod,
const unsigned int& nNod, const double* const CoincNod,
const bool& SlavesExist, const double* const CollPoints,
const unsigned int& nCentroidColl, const unsigned int& nTotalColl,
unsigned int* const RegularColl,unsigned int& nRegularColl,unsigned int& nSingularColl,
const unsigned int* const TypeID, const unsigned int* const nKeyOpt,
const char* const TypeName[], const char* const TypeKeyOpts[],
const unsigned int& nEltType);
#endif