Ice Sheet System Model  4.18
Code documentation
Seg.cpp
Go to the documentation of this file.
1 
4 /*Headers:*/
5 /*{{{*/
6 #ifdef HAVE_CONFIG_H
7 #include <config.h>
8 #else
9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
10 #endif
11 
12 #include <stdio.h>
13 #include <string.h>
14 #include "../classes.h"
15 #include "../Inputs2/SegInput2.h"
16 #include "../Inputs2/TriaInput2.h"
17 #include "../../shared/shared.h"
18 /*}}}*/
19 
20 /*Element macros*/
21 #define NUMVERTICES 2
22 /*Constructors/destructor/copy*/
23 Seg::Seg(int seg_id, int seg_sid,int seg_lid,IoModel* iomodel,int nummodels)/*{{{*/
24  :ElementHook(nummodels,seg_id,NUMVERTICES,iomodel){
25 
26  this->iscollapsed = 0;
27  this->collapsed_ids[0] = -1;
28  this->collapsed_ids[1] = -1;
29 
30  /*id: */
31  this->id = seg_id;
32  this->sid = seg_sid;
33  this->lid = seg_lid;
34 
35  /*surface and base*/
36  this->isonsurface = false;
37  this->isonbase = false;
38 
39  //this->parameters: we still can't point to it, it may not even exist. Configure will handle this.
40  this->parameters = NULL;
41 
42  /*initialize pointers:*/
43  this->nodes = NULL;
44  this->vertices = NULL;
45  this->material = NULL;
46 
47  /*Only allocate pointer*/
48  this->element_type_list=xNew<int>(nummodels);
49 
50  /*surface and base*/
51  this->isonsurface = true;
52  this->isonbase = true;
53  }
54 /*}}}*/
55 Seg::~Seg(){/*{{{*/
56  this->parameters=NULL;
57 }
58 /*}}}*/
59 Object* Seg::copy(){/*{{{*/
60 
61  int i;
62  Seg* seg=NULL;
63 
64  seg=new Seg();
65 
66  seg->iscollapsed=this->iscollapsed;
67  seg->collapsed_ids[0]=this->collapsed_ids[0];
68  seg->collapsed_ids[1]=this->collapsed_ids[1];
69 
70  //deal with TriaRef mother class
71  int nanalyses = this->numanalyses;
72  if(nanalyses > 0){
73  seg->element_type_list=xNew<int>(nanalyses);
74  for(i=0;i<nanalyses;i++){
75  if (this->element_type_list[i]) seg->element_type_list[i]=this->element_type_list[i];
76  else seg->element_type_list[i] = 0;
77  }
78  }
79  else seg->element_type_list = NULL;
80  seg->element_type=this->element_type;
81  seg->numanalyses=nanalyses;
82 
83  //deal with ElementHook mother class
84  if (this->hnodes){
85  seg->hnodes=xNew<Hook*>(seg->numanalyses);
86  for(i=0;i<seg->numanalyses;i++){
87  if (this->hnodes[i]) seg->hnodes[i] = (Hook*)(this->hnodes[i]->copy());
88  else seg->hnodes[i] = NULL;
89  }
90  }
91  else seg->hnodes = NULL;
92 
93  seg->hvertices = (Hook*)this->hvertices->copy();
94  seg->hmaterial = (Hook*)this->hmaterial->copy();
95  seg->hneighbors = NULL;
96 
97  /*deal with Element fields: */
98  seg->id = this->id;
99  seg->sid = this->sid;
100  seg->lid = this->lid;
101  seg->isonbase = this->isonbase;
102  seg->isonsurface = this->isonsurface;
103 
104  /*point parameters: */
105  seg->parameters=this->parameters;
106 
107  /*recover objects: */
108  if (this->nodes){
109  unsigned int num_nodes = 3;
110  seg->nodes = xNew<Node*>(num_nodes); //we cannot rely on an analysis_counter to tell us which analysis_type we are running, so we just copy the nodes.
111  for(i=0;i<num_nodes;i++) if(this->nodes[i]) seg->nodes[i]=this->nodes[i]; else seg->nodes[i] = NULL;
112  }
113  else seg->nodes = NULL;
114 
115  seg->vertices = (Vertex**)this->hvertices->deliverp();
116  seg->material = (Material*)this->hmaterial->delivers();
117 
118  return seg;
119 
120 }
121 /*}}}*/
122 void Seg::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
123 
125  MARSHALLING(this->iscollapsed);
126  MARSHALLING(this->isonsurface);
127  MARSHALLING(this->isonbase);
128  MARSHALLING(this->collapsed_ids[0]);
129  MARSHALLING(this->collapsed_ids[1]);
130 
131  /*Call parent classes: */
132  ElementHook::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
133  Element::MarshallElement(pmarshalled_data,pmarshalled_data_size,marshall_direction,this->numanalyses);
134  SegRef::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
135 
136  vertices = (Vertex**)this->hvertices->deliverp();
137  material = (Material*)this->hmaterial->delivers();
138 
139 }
140 /*}}}*/
141 
143 
144  IssmDouble xyz_list[NUMVERTICES][3];
145  IssmDouble x1,y1,x2,y2;
146 
147  /*Get xyz list: */
149  x1=xyz_list[0][0]; y1=xyz_list[0][1];
150  x2=xyz_list[1][0]; y2=xyz_list[1][1];
151 
152  return sqrt((x2-x1)*(x2-x1) + (y2-y1)*(y2-y1));
153 }
154 /*}}}*/
155 int Seg::FiniteElement(void){/*{{{*/
156  return this->element_type;
157 }
158 /*}}}*/
159 void Seg::GetIcefrontCoordinates(IssmDouble** pxyz_front,IssmDouble* xyz_list,int levelsetenum){/*{{{*/
160 
161  /* Intermediaries */
162  int nrfrontnodes,index;
163  IssmDouble levelset[NUMVERTICES];
164 
165  /*Recover parameters and values*/
166  Element::GetInputListOnVertices(&levelset[0],levelsetenum);
167 
168  /* Get nodes where there is no ice */
169  nrfrontnodes=0;
170  for(int i=0;i<NUMVERTICES;i++){
171  if(levelset[i]>=0.){
172  index=i;
173  nrfrontnodes++;
174  }
175  }
176 
177  _assert_(nrfrontnodes==1);
178 
179  IssmDouble* xyz_front = xNew<IssmDouble>(3);
180 
181  /* Return nodes */
182  for(int dir=0;dir<3;dir++){
183  xyz_front[dir]=xyz_list[3*index+dir];
184  }
185 
186  *pxyz_front=xyz_front;
187 }/*}}}*/
188 Input2* Seg::GetInput2(int inputenum){/*{{{*/
189 
190  if(this->iscollapsed){
191  TriaInput2* input = this->inputs2->GetTriaInput(inputenum);
192  if(!input) return input;
193 
194  /*Intermediaries*/
195  int numindices;
196  int indices[7];
197 
198  /*Check interpolation*/
199  int interpolation = input->GetInterpolation();
200  switch(interpolation){
201  case P0Enum:
202  numindices = 1;
203  indices[0] = this->lid;
204  input->Serve(numindices,&indices[0]);
205  break;
206  case P1Enum:
207  numindices = 2;
208  for(int i=0;i<numindices;i++) indices[i] = vertices[i]->lid;
209  input->Serve(numindices,&indices[0]);
210  break;
211  case P1DGEnum:
212  case P1bubbleEnum:
213  default:
214  input->ServeCollapsed(this->lid,this->collapsed_ids[0],this->collapsed_ids[1]);
215  break;
216  }
217  /*Flag as collapsed for later use*/
218  input->SetServeCollapsed(true);
219 
220  return input;
221  }
222  else{
223  SegInput2* input = this->inputs2->GetSegInput(inputenum);
224  if(!input) return input;
225 
226  /*Intermediaries*/
227  int numindices;
228  int indices[7];
229 
230  /*Check interpolation*/
231  int interpolation = input->GetInterpolation();
232  switch(interpolation){
233  case P0Enum:
234  numindices = 1;
235  indices[0] = this->lid;
236  input->Serve(numindices,&indices[0]);
237  break;
238  case P1Enum:
239  numindices = 3;
240  for(int i=0;i<3;i++) indices[i] = vertices[i]->lid;
241  input->Serve(numindices,&indices[0]);
242  break;
243  case P1DGEnum:
244  numindices = 3;
245  input->Serve(this->lid,numindices);
246  break;
247  default:
248  input->Serve(this->lid,this->GetNumberOfNodes(interpolation));
249  }
250 
251  return input;
252  }
253 }/*}}}*/
254 Input2* Seg::GetInput2(int inputenum,IssmDouble time){/*{{{*/
255  _error_("not implemented yet");
256 }/*}}}*/
258  /*Computeportion of the element that is grounded*/
259 
260  bool mainlyfloating = true;
261  const IssmPDouble epsilon = 1.e-15;
262  IssmDouble phi;
264 
265  /*Recover parameters and values*/
267 
268  /*Be sure that values are not zero*/
269  if(gl[0]==0.) gl[0]=gl[0]+epsilon;
270  if(gl[1]==0.) gl[1]=gl[1]+epsilon;
271 
272  if(gl[0]>0 && gl[1]>0) phi=1; // All grounded
273  else if(gl[0]<0 && gl[1]<0) phi=0; // All floating
274  else if(gl[0]<0 && gl[1]>0){ //1 grounded
275  phi=1./(1.-gl[0]/gl[1]);
276  }
277  else if(gl[1]<0 && gl[0]>0){ //0 grounded
278  phi=1./(1.-gl[1]/gl[0]);
279  }
280 
281  if(phi>1 || phi<0) _error_("Error. Problem with portion of grounded element: value should be between 0 and 1");
282 
283  return phi;
284 }
285 /*}}}*/
286 int Seg::GetNumberOfNodes(void){/*{{{*/
287  return this->NumberofNodes(this->element_type);
288 }
289 /*}}}*/
290 int Seg::GetNumberOfVertices(void){/*{{{*/
291  return NUMVERTICES;
292 }
293 /*}}}*/
294 void Seg::GetVerticesCoordinates(IssmDouble** pxyz_list){/*{{{*/
295 
296  IssmDouble* xyz_list = xNew<IssmDouble>(NUMVERTICES*3);
298 
299  /*Assign output pointer*/
300  *pxyz_list = xyz_list;
301 
302 }/*}}}*/
303 void Seg::GetInputListOnVertices(IssmDouble* pvalue,Input2* input,IssmDouble default_value){/*{{{*/
304 
305  /*Checks in debugging mode*/
306  _assert_(pvalue);
307 
308  /* Start looping on the number of vertices: */
309  if(input){
310  GaussSeg gauss;
311  for(int iv=0;iv<NUMVERTICES;iv++){
312  gauss.GaussVertex(iv);
313  input->GetInputValue(&pvalue[iv],&gauss);
314  }
315  }
316  else{
317  for(int iv=0;iv<NUMVERTICES;iv++) pvalue[iv] = default_value;
318  }
319 }
320 /*}}}*/
321 void Seg::GetInputListOnNodes(IssmDouble* pvalue,Input2* input,IssmDouble default_value){/*{{{*/
322 
323  /*Checks in debugging mode*/
324  _assert_(pvalue);
325 
326  /*What type of finite element are we dealing with?*/
327  int fe = this->FiniteElement();
328  int numnodes = this->GetNumberOfNodes();
329 
330  /* Start looping on the number of vertices: */
331  if(input){
332  GaussSeg gauss;
333  for(int iv=0;iv<numnodes;iv++){
334  gauss.GaussNode(fe,iv);
335  input->GetInputValue(&pvalue[iv],&gauss);
336  }
337  }
338  else{
339  for(int iv=0;iv<numnodes;iv++) pvalue[iv] = default_value;
340  }
341 }
342 /*}}}*/
343 bool Seg::IsIcefront(void){/*{{{*/
344 
345  bool isicefront;
346  int i,nrice;
348 
349  /*Retrieve all inputs and parameters*/
351 
352  /* If only one vertex has ice, there is an ice front here */
353  isicefront=false;
354  if(IsIceInElement()){
355  nrice=0;
356  for(i=0;i<NUMVERTICES;i++)
357  if(ls[i]<0.) nrice++;
358  if(nrice==1) isicefront= true;
359  }
360  return isicefront;
361 }/*}}}*/
362 void Seg::JacobianDeterminant(IssmDouble* pJdet,IssmDouble* xyz_list,Gauss* gauss){/*{{{*/
363 
364  _assert_(gauss->Enum()==GaussSegEnum);
365  this->GetJacobianDeterminant(pJdet,xyz_list,(GaussSeg*)gauss);
366 
367 }
368 /*}}}*/
369 void Seg::JacobianDeterminantSurface(IssmDouble* pJdet,IssmDouble* xyz_list,Gauss* gauss){/*{{{*/
370 
371  *pJdet = 1.;
372 
373 }
374 /*}}}*/
375 Gauss* Seg::NewGauss(void){/*{{{*/
376  return new GaussSeg();
377 }
378 /*}}}*/
379 Gauss* Seg::NewGauss(int order){/*{{{*/
380  return new GaussSeg(order);
381 }
382 /*}}}*/
383 Gauss* Seg::NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order){/*{{{*/
384 
385  /*Output*/
386  Gauss* gauss = NULL;
387 
388  if(xyz_list_front[0] == xyz_list[0]){
389  gauss = new GaussSeg(-1.);
390  }
391  else if(xyz_list_front[0] == xyz_list[3*1+0]){
392  gauss = new GaussSeg(+1.);
393  }
394  else{
395  _error_("front is not located on element edge");
396  }
397 
398  return gauss;
399 }
400 /*}}}*/
401 void Seg::NodalFunctions(IssmDouble* basis, Gauss* gauss){/*{{{*/
402 
403  _assert_(gauss->Enum()==GaussSegEnum);
404  this->GetNodalFunctions(basis,(GaussSeg*)gauss,this->element_type);
405 
406 }
407 /*}}}*/
408 void Seg::NodalFunctionsDerivatives(IssmDouble* dbasis,IssmDouble* xyz_list,Gauss* gauss){/*{{{*/
409 
410  _assert_(gauss->Enum()==GaussSegEnum);
411  this->GetNodalFunctionsDerivatives(dbasis,xyz_list,(GaussSeg*)gauss,this->element_type);
412 
413 }
414 /*}}}*/
415 void Seg::NodalFunctionsP1(IssmDouble* basis, Gauss* gauss){/*{{{*/
416 
417  _assert_(gauss->Enum()==GaussSegEnum);
418  this->GetNodalFunctions(basis,(GaussSeg*)gauss,P1Enum);
419 
420 }
421 /*}}}*/
422 void Seg::NodalFunctionsP2(IssmDouble* basis, Gauss* gauss){/*{{{*/
423 
424  _assert_(gauss->Enum()==GaussSegEnum);
425  this->GetNodalFunctions(basis,(GaussSeg*)gauss,P2Enum);
426 
427 }
428 /*}}}*/
429 void Seg::NormalSection(IssmDouble* normal,IssmDouble* xyz_list_front){/*{{{*/
430 
431  IssmDouble* xyz_list = xNew<IssmDouble>(NUMVERTICES*3);
433 
434  if(xyz_list_front[0]>xyz_list[0])
435  normal[0]= + 1.;
436  else
437  normal[0]= - 1.;
438 
439  xDelete<IssmDouble>(xyz_list);
440 }
441 /*}}}*/
442 int Seg::ObjectEnum(void){/*{{{*/
443 
444  return SegEnum;
445 
446 }
447 /*}}}*/
Element::lid
int lid
Definition: Element.h:46
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
Seg::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: Seg.cpp:122
IssmDouble
double IssmDouble
Definition: types.h:37
TriaInput2::SetServeCollapsed
void SetServeCollapsed(bool)
Definition: TriaInput2.cpp:250
Seg::NormalSection
void NormalSection(IssmDouble *normal, IssmDouble *xyz_list)
Definition: Seg.cpp:429
Seg::Seg
Seg()
Definition: Seg.h:34
MaskOceanLevelsetEnum
@ MaskOceanLevelsetEnum
Definition: EnumDefinitions.h:640
Hook::deliverp
Object ** deliverp(void)
Definition: Hook.cpp:187
MaskIceLevelsetEnum
@ MaskIceLevelsetEnum
Definition: EnumDefinitions.h:641
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
Seg::collapsed_ids
int collapsed_ids[2]
Definition: Seg.h:31
Seg::iscollapsed
int iscollapsed
Definition: Seg.h:30
P0Enum
@ P0Enum
Definition: EnumDefinitions.h:661
TriaInput2::Serve
void Serve(int numindices, int *indices)
Definition: TriaInput2.cpp:202
Seg::NodalFunctionsP2
void NodalFunctionsP2(IssmDouble *basis, Gauss *gauss)
Definition: Seg.cpp:422
P1DGEnum
@ P1DGEnum
Definition: EnumDefinitions.h:1215
Element::vertices
Vertex ** vertices
Definition: Element.h:49
Material
Definition: Material.h:21
SegRef::GetNodalFunctionsDerivatives
void GetNodalFunctionsDerivatives(IssmDouble *dbasis, IssmDouble *xyz_list, GaussSeg *gauss, int finiteelement)
Definition: SegRef.cpp:138
Seg::NodalFunctionsDerivatives
void NodalFunctionsDerivatives(IssmDouble *dbasis, IssmDouble *xyz_list, Gauss *gauss)
Definition: Seg.cpp:408
SegEnum
@ SegEnum
Definition: EnumDefinitions.h:1268
Element::isonbase
bool isonbase
Definition: Element.h:53
SegInput2
Definition: SegInput2.h:8
ElementHook
Definition: ElementHook.h:11
Seg::GetGroundedPortion
IssmDouble GetGroundedPortion(IssmDouble *xyz_list)
Definition: Seg.cpp:257
SegRef::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: SegRef.h:26
ElementHook::hmaterial
Hook * hmaterial
Definition: ElementHook.h:17
Element::nodes
Node ** nodes
Definition: Element.h:48
P1Enum
@ P1Enum
Definition: EnumDefinitions.h:662
SegInput2::Serve
void Serve(int numindices, int *indices)
Definition: SegInput2.cpp:197
Seg::copy
Object * copy()
Definition: Seg.cpp:59
TriaInput2::ServeCollapsed
void ServeCollapsed(int row, int id0, int in1)
Definition: TriaInput2.cpp:234
Object
Definition: Object.h:13
Seg::NodalFunctions
void NodalFunctions(IssmDouble *basis, Gauss *gauss)
Definition: Seg.cpp:401
Hook::delivers
Object * delivers(void)
Definition: Hook.cpp:191
Element::inputs2
Inputs2 * inputs2
Definition: Element.h:47
Element::id
int id
Definition: Element.h:44
Element::sid
int sid
Definition: Element.h:45
Seg::CharacteristicLength
IssmDouble CharacteristicLength(void)
Definition: Seg.cpp:142
GaussSeg::GaussVertex
void GaussVertex(int iv)
Definition: GaussSeg.cpp:152
TriaInput2
Definition: TriaInput2.h:8
Hook
Definition: Hook.h:16
Seg::NodalFunctionsP1
void NodalFunctionsP1(IssmDouble *basis, Gauss *gauss)
Definition: Seg.cpp:415
Element::element_type_list
int * element_type_list
Definition: Element.h:55
Seg::GetNumberOfNodes
int GetNumberOfNodes(void)
Definition: Seg.cpp:286
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
SegRef::GetJacobianDeterminant
void GetJacobianDeterminant(IssmDouble *Jdet, IssmDouble *xyz_list, GaussSeg *gauss)
Definition: SegRef.cpp:93
Gauss::Enum
virtual int Enum(void)=0
SegInput2::GetInterpolation
int GetInterpolation()
Definition: SegInput2.cpp:227
Seg::GetIcefrontCoordinates
void GetIcefrontCoordinates(IssmDouble **pxyz_front, IssmDouble *xyz_list, int levelsetenum)
Definition: Seg.cpp:159
TriaInput2::GetInterpolation
int GetInterpolation()
Definition: TriaInput2.cpp:253
Hook::copy
Object * copy(void)
Definition: Hook.cpp:61
SegRef::NumberofNodes
int NumberofNodes(int finiteelement)
Definition: SegRef.cpp:191
P1bubbleEnum
@ P1bubbleEnum
Definition: EnumDefinitions.h:1218
ElementHook::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: ElementHook.cpp:67
Seg::IsIcefront
bool IsIcefront(void)
Definition: Seg.cpp:343
Input2
Definition: Input2.h:18
Seg
Definition: Seg.h:27
Seg::GetInputListOnVertices
void GetInputListOnVertices(IssmDouble *pvalue, Input2 *input, IssmDouble default_value)
Definition: Seg.cpp:303
Seg::ObjectEnum
int ObjectEnum()
Definition: Seg.cpp:442
Inputs2::GetSegInput
SegInput2 * GetSegInput(int enum_type)
Definition: Inputs2.cpp:305
NUMVERTICES
#define NUMVERTICES
Definition: Seg.cpp:21
Element::IsIceInElement
bool IsIceInElement()
Definition: Element.cpp:2021
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
ElementHook::hvertices
Hook * hvertices
Definition: ElementHook.h:16
Inputs2::GetTriaInput
TriaInput2 * GetTriaInput(int enum_type)
Definition: Inputs2.cpp:318
Element::parameters
Parameters * parameters
Definition: Element.h:51
GaussSegEnum
@ GaussSegEnum
Definition: EnumDefinitions.h:1079
Seg::JacobianDeterminant
void JacobianDeterminant(IssmDouble *Jdet, IssmDouble *xyz_list, Gauss *gauss)
Definition: Seg.cpp:362
Seg::FiniteElement
int FiniteElement(void)
Definition: Seg.cpp:155
ElementHook::hneighbors
Hook * hneighbors
Definition: ElementHook.h:18
Seg::GetVerticesCoordinates
void GetVerticesCoordinates(IssmDouble **pxyz_list)
Definition: Seg.cpp:294
Seg::GetInput2
Input2 * GetInput2(int enumtype)
Definition: Seg.cpp:188
Seg::JacobianDeterminantSurface
void JacobianDeterminantSurface(IssmDouble *pJdet, IssmDouble *xyz_list, Gauss *gauss)
Definition: Seg.cpp:369
P2Enum
@ P2Enum
Definition: EnumDefinitions.h:1223
Seg::GetInputListOnNodes
void GetInputListOnNodes(IssmDouble *pvalue, Input2 *input, IssmDouble default_value)
Definition: Seg.cpp:321
ElementHook::hnodes
Hook ** hnodes
Definition: ElementHook.h:15
Seg::NewGauss
Gauss * NewGauss(void)
Definition: Seg.cpp:375
Element::MarshallElement
void MarshallElement(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction, int numanalyses)
Definition: Element.cpp:2222
Input2::GetInputValue
virtual void GetInputValue(IssmDouble *pvalue, Gauss *gauss)
Definition: Input2.h:38
Vertex
Definition: Vertex.h:19
IoModel
Definition: IoModel.h:48
GaussSeg::GaussNode
void GaussNode(int finitelement, int iv)
Definition: GaussSeg.cpp:133
IssmPDouble
IssmDouble IssmPDouble
Definition: types.h:38
Element::GetInputListOnVertices
void GetInputListOnVertices(IssmDouble *pvalue, int enumtype)
Definition: Element.cpp:1131
SegRef::GetNodalFunctions
void GetNodalFunctions(IssmDouble *basis, GaussSeg *gauss, int finiteelement)
Definition: SegRef.cpp:115
Seg::~Seg
~Seg()
Definition: Seg.cpp:55
GaussSeg
Definition: GaussSeg.h:12
Element::isonsurface
bool isonsurface
Definition: Element.h:52
Element::element_type
int element_type
Definition: Element.h:56
Gauss
Definition: Gauss.h:8
Element::material
Material * material
Definition: Element.h:50
Seg::GetNumberOfVertices
int GetNumberOfVertices(void)
Definition: Seg.cpp:290
ElementHook::numanalyses
int numanalyses
Definition: ElementHook.h:14