Ice Sheet System Model  4.18
Code documentation
Elements.cpp
Go to the documentation of this file.
1 /*
2  * \file Elements.cpp
3  * \brief: Implementation of Elements class, derived from DataSet class
4  */
5 
6 /*Headers: {{{*/
7 #ifdef HAVE_CONFIG_H
8  #include <config.h>
9 #else
10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
11 #endif
12 
13 #include "./Element.h"
14 #include "./Elements.h"
15 #include "../Params/Parameters.h"
16 #include "../ExternalResults/Results.h"
17 #include "../ExternalResults/GenericExternalResult.h"
18 #include "../../toolkits/toolkits.h"
19 #include "../../shared/shared.h"
20 
21 using namespace std;
22 /*}}}*/
23 
24 /*Object constructors and destructor*/
26  enum_type=MeshElementsEnum;
27  return;
28 }
29 /*}}}*/
31  return;
32 }
33 /*}}}*/
34 
35 /*Object management*/
36 void Elements::Configure(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters,Inputs2* inputs2){/*{{{*/
37 
38  vector<Object*>::iterator object;
39 
40  for(object=objects.begin() ; object < objects.end(); object++ ){
41  Element* element=xDynamicCast<Element*>((*object));
42  element->Configure(elements,loads,nodes,vertices,materials,parameters,inputs2);
43  }
44 
45 }/*}}}*/
46 int Elements::MaxNumNodes(void){/*{{{*/
47 
48  int max=0;
49  int allmax;
50  int numnodes=0;
51 
52  /*Now go through all elements, and get how many nodes they own, unless they are clone nodes: */
53  for(int i=0;i<this->Size();i++){
54 
55  Element* element=xDynamicCast<Element*>(this->GetObjectByOffset(i));
56  numnodes=element->GetNumberOfNodes();
57  if(numnodes>max)max=numnodes;
58  }
59 
60  /*Grab max of all cpus: */
62  max=allmax;
63 
64  return max;
65 }
66 /*}}}*/
67 int Elements::NumberOfElements(void){/*{{{*/
68 
69  int local_nelem;
70  int numberofelements;
71 
72  local_nelem=this->Size();
73  ISSM_MPI_Allreduce((void*)&local_nelem,(void*)&numberofelements,1,ISSM_MPI_INT,ISSM_MPI_SUM,IssmComm::GetComm());
74 
75  return numberofelements;
76 }
77 /*}}}*/
78 void Elements::ResetHooks(){/*{{{*/
79 
80  vector<Object*>::iterator object;
81  Element* element=NULL;
82 
83  for ( object=objects.begin() ; object < objects.end(); object++ ){
84 
85  element=xDynamicCast<Element*>((*object));
86  element->ResetHooks();
87 
88  }
89 
90 }
91 /*}}}*/
92 void Elements::SetCurrentConfiguration(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters){/*{{{*/
93 
94  vector<Object*>::iterator object;
95  Element* element=NULL;
96 
97  for ( object=objects.begin() ; object < objects.end(); object++ ){
98 
99  element=xDynamicCast<Element*>((*object));
100  element->SetCurrentConfiguration(elements,loads,nodes,materials,parameters);
101 
102  }
103 
104 }
105 /*}}}*/
Vertices
Declaration of Vertices class.
Definition: Vertices.h:15
Elements::Configure
void Configure(Elements *elements, Loads *loads, Nodes *nodes, Vertices *vertices, Materials *materials, Parameters *parameters, Inputs2 *inputs2)
Definition: Elements.cpp:36
Nodes
Declaration of Nodes class.
Definition: Nodes.h:19
Element::GetNumberOfNodes
virtual int GetNumberOfNodes(void)=0
ISSM_MPI_Allreduce
int ISSM_MPI_Allreduce(void *sendbuf, void *recvbuf, int count, ISSM_MPI_Datatype datatype, ISSM_MPI_Op op, ISSM_MPI_Comm comm)
Definition: issmmpi.cpp:116
MeshElementsEnum
@ MeshElementsEnum
Definition: EnumDefinitions.h:1183
Parameters
Declaration of Parameters class.
Definition: Parameters.h:18
ISSM_MPI_SUM
#define ISSM_MPI_SUM
Definition: issmmpi.h:134
IssmComm::GetComm
static ISSM_MPI_Comm GetComm(void)
Definition: IssmComm.cpp:30
Elements
Declaration of Elements class.
Definition: Elements.h:17
ISSM_MPI_MAX
#define ISSM_MPI_MAX
Definition: issmmpi.h:131
Elements::~Elements
~Elements()
Definition: Elements.cpp:30
Elements::MaxNumNodes
int MaxNumNodes(void)
Definition: Elements.cpp:46
Element
Definition: Element.h:41
Elements.h
Element.h
abstract class for Element object This class is a place holder for the Tria and the Penta elements....
ISSM_MPI_INT
#define ISSM_MPI_INT
Definition: issmmpi.h:127
Materials
Declaration of Materials class.
Definition: Materials.h:16
Element::ResetHooks
virtual void ResetHooks()=0
Inputs2
Declaration of Inputs class.
Definition: Inputs2.h:23
Elements::ResetHooks
void ResetHooks()
Definition: Elements.cpp:78
Loads
Declaration of Loads class.
Definition: Loads.h:16
Elements::SetCurrentConfiguration
void SetCurrentConfiguration(Elements *elements, Loads *loads, Nodes *nodes, Vertices *vertices, Materials *materials, Parameters *parameters)
Definition: Elements.cpp:92
Element::SetCurrentConfiguration
virtual void SetCurrentConfiguration(Elements *elements, Loads *loads, Nodes *nodes, Materials *materials, Parameters *parameters)=0
Elements::NumberOfElements
int NumberOfElements(void)
Definition: Elements.cpp:67
max
IssmDouble max(IssmDouble a, IssmDouble b)
Definition: extrema.cpp:24
Elements::Elements
Elements()
Definition: Elements.cpp:25
Element::Configure
virtual void Configure(Elements *elements, Loads *loads, Nodes *nodes, Vertices *vertices, Materials *materials, Parameters *parameters, Inputs2 *inputs2in)=0