AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
slist_items.h
1#ifndef H_SLISTITEM_
2#define H_SLISTITEM_
3
4// dependencies ::
5// svect
6// svect2d
7
9{
10 int nd1; /* the first node on the face */
11 int nd2; /* the second node on the face */
12 int nd3; /* the third node on the face */
13 int ie1; /* the first element on the face */
14 int ie2; /* the second element on the face */
15 struct FACE_LIST_ITEM *next; /* the next item in the linked list */
16};
17typedef struct FACE_LIST_ITEM FACE_LIST_ITEM; /* special line for linked list structure - refers to itself */
18
20{
21 int nd1; /* the first node */
22 int nd2; /* the second node */
23 int nd3; /* the third node */
24 int nd4; /* the fourth node */
25 int ielem; /* the element number */
26 int mat; /* material id*/
27 struct ELEM3D_LIST_ITEM *next; /* the next item in the linked list */
28}; /* a linked list item for 3D elements */
29typedef struct ELEM3D_LIST_ITEM ELEM3D_LIST_ITEM; /* special line for linked list structure - refers to itself */
30
32{
33 int nd1; /* the first node */
34 int nd2; /* the second node */
35 int nd3; /* the third node */
36 int mat; /* material id*/
37 int ielem; /* the element number */
38 struct ELEM2D_LIST_ITEM *next; /* the next item in the linked list */
39}; /* a linked list item for 2D elements */
40typedef struct ELEM2D_LIST_ITEM ELEM2D_LIST_ITEM; /* special line for linked list structure - refers to itself */
41
43{
44 int nd1; /* the first node */
45 int nd2; /* the second node */
46 int ielem; /* the element number */
47 struct ELEM1D_LIST_ITEM *next; /* the next item in the linked list */
48}; /* a linked list item for 1D elements */
49typedef struct ELEM1D_LIST_ITEM ELEM1D_LIST_ITEM; /* special line for linked list structure - refers to itself */
50
52{
53 int nd1; /* the first node on the edge */
54 int nd2; /* the second node on the edge */
55 int new_node; /* the new node */
56 int rank; /* the rank of the edge */
57 struct EDGE_LIST_ITEM *next; /* the next item in the linked list */
58}; /* a linked list item for edges */
59typedef struct EDGE_LIST_ITEM EDGE_LIST_ITEM; /* special line for linked list structure - refers to itself */
60
61
63{
64 struct NODE_LIST_ITEM *next; /* the next item in the linked list */
65 int rnode; /* relative node number on owning processor */
66 int sd; /* owning processor */
67 int local; /* local node number on myid */
68//#ifdef _MESSG
69 int global;
70 int global_surf;
71 SVECT coords;
72//#endif
73}; /* a linked list item for global node numbers */
74typedef struct NODE_LIST_ITEM NODE_LIST_ITEM; /* special line for linked list structure - refers to itself */
75
76
78{
79 struct ELEM_REF_LIST_ITEM *next; /* the next item in the linked list */
80 int ielem; /* the element number */
81}; /* a linked list item for element numbers */
82typedef struct ELEM_REF_LIST_ITEM ELEM_REF_LIST_ITEM; /* special line for linked list structure - refers to itself */
83
84
85/* a linked list item for centroids (points) */
87{
88 SVECT2D vect; /* the coordinates of the point */
89 int index; /* an index for this column (e.g., column id) */
90 struct CENT_LIST_ITEM *next; /* the next item in the linked list */
91};
92typedef struct CENT_LIST_ITEM CENT_LIST_ITEM; /* special line for linked list structure - refers to itself */
93
94
96{
97 int id; /* the id of the member */
98 struct ID_LIST_ITEM *next; /* the next item in the linked list */
99 struct ID_LIST_ITEM *prev; /* the next item in the linked list */
100};
101typedef struct ID_LIST_ITEM ID_LIST_ITEM; /* special line for linked list structure - refers to itself */
102
103
104// this is an interesting list:
105// -- an array of num_midpts of these are allocated in the code
106// -- each one points to the top midpoint of the column
107// -- this midpoint may not be on the surface,
108// ---- for example, if the first midpoint falls between the top two vertical nodes.
110{
111 SVECT vect; /* the coordinates of the point */
112 int index; /* an index for this column (e.g., column id) */
113 int node1; /* this midpoint lies on the edge formed by node1 and node2 */
114 int node2;
115 int surf_node1; /* the two surface nodes that lie above node1 and node2 */
116 int surf_node2;
117 int vertical; /* 0 = not a vertical edge; 1 = this is a vertical edge */
118 int column1; /* the indices of the 2 columns that share this edge */
119 int column2;
120
121 int elem_upper[2]; /* the element that lies above this edge/midpt in each of the two columns */
122 int elem_lower[2]; /* the element that lies below this edge/midpt in each of the two columns */
123 double value[5]; /* data associated with this midpoint */
124 /* value[0] = pressure at midpt;
125 * value[1] = pressure from positive perturbation at the "left" surface node
126 * value[2] = pressure from positive perturbation at the "right" surface node
127 * value[3] = pressure from negative perturbation at the "left" surface node
128 * value[4] = pressure from negative perturbation at the "right" surface node
129 */
130 struct MIDPT_LIST_ITEM *next; /* the next item in the linked list */
131 struct MIDPT_LIST_ITEM *prev; /* the next item in the linked list */
132}; /* a linked list item for centroids (points) */
133typedef struct MIDPT_LIST_ITEM MIDPT_LIST_ITEM;
134
135
136/* structure used to rank the edges */
137typedef struct
138{
139 int number; /* which edge */
140 double length; /* the length of the edge */
141} EDGE_RANK; /* structure to sort the edges */
142
143/*********************************************************/
144/* struct methods -------------------------------------- */
145int add_node(NODE_LIST_ITEM ** head, int local_index, int global_index, SVECT coords, int sd, int rnode, int global_surf);
146int add_node_tmp(NODE_LIST_ITEM ** head, int local_index, int global_index);
147int add_ghost_node(NODE_LIST_ITEM **head, int index, int my_nnode, int *num_ghosts);
148int add_surf_node(NODE_LIST_ITEM **, int);
149int search_ghost_node(NODE_LIST_ITEM * head, int index);
150int add_elem2d_list(ELEM2D_LIST_ITEM ** head, int index, int *node, int iel_mat);
151int add_elem3d_list(ELEM3D_LIST_ITEM ** head, int global_index, int *node, int iel_mat);
152int free_elem3d_list(ELEM3D_LIST_ITEM * elem3d_list);
153int free_elem2d_list(ELEM2D_LIST_ITEM * elem2d_list);
154int free_node_list(NODE_LIST_ITEM * head);
155int free_ghost_nodes(NODE_LIST_ITEM *** ghost_nodes, int npes);
156
157#endif
Definition: slist_items.h:87
Definition: slist_items.h:52
Definition: slist_items.h:138
Definition: slist_items.h:43
Definition: slist_items.h:32
Definition: slist_items.h:20
Definition: slist_items.h:78
Definition: slist_items.h:9
Definition: slist_items.h:96
Definition: slist_items.h:110
Definition: slist_items.h:63
Definition: svect2d.h:4
Definition: svect.h:4