Ice Sheet System Model  4.18
Code documentation
Public Member Functions
Elements Class Reference

Declaration of Elements class. More...

#include <Elements.h>

Inheritance diagram for Elements:
DataSet

Public Member Functions

 Elements ()
 
 ~Elements ()
 
void Configure (Elements *elements, Loads *loads, Nodes *nodes, Vertices *vertices, Materials *materials, Parameters *parameters, Inputs2 *inputs2)
 
int MaxNumNodes (void)
 
int NumberOfElements (void)
 
void SetCurrentConfiguration (Elements *elements, Loads *loads, Nodes *nodes, Vertices *vertices, Materials *materials, Parameters *parameters)
 
void ResetHooks ()
 
- Public Member Functions inherited from DataSet
 DataSet ()
 
 DataSet (int enum_type)
 
 ~DataSet ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
int GetEnum ()
 
int GetEnum (int offset)
 
void Echo ()
 
void DeepEcho ()
 
int AddObject (Object *object)
 
int DeleteObject (int id)
 
int Size ()
 
void clear ()
 
ObjectGetObjectByOffset (int offset)
 
ObjectGetObjectById (int *poffset, int eid)
 
void Presort ()
 
void Sort ()
 
DataSetCopy (void)
 
int DeleteObject (Object *object)
 

Additional Inherited Members

- Data Fields inherited from DataSet
std::vector< Object * > objects
 
int enum_type
 
int sorted
 
int presorted
 
int numsorted
 
int * sorted_ids
 
int * id_offsets
 

Detailed Description

Declaration of Elements class.

Declaration of Elements class. Elements are vector lists (Containers) of Element objects.

Definition at line 17 of file Elements.h.

Constructor & Destructor Documentation

◆ Elements()

Elements::Elements ( )

Definition at line 25 of file Elements.cpp.

25  {/*{{{*/
27  return;
28 }

◆ ~Elements()

Elements::~Elements ( )

Definition at line 30 of file Elements.cpp.

30  {/*{{{*/
31  return;
32 }

Member Function Documentation

◆ Configure()

void Elements::Configure ( Elements elements,
Loads loads,
Nodes nodes,
Vertices vertices,
Materials materials,
Parameters parameters,
Inputs2 inputs2 
)

Definition at line 36 of file Elements.cpp.

36  {/*{{{*/
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 }/*}}}*/

◆ MaxNumNodes()

int Elements::MaxNumNodes ( void  )

Definition at line 46 of file Elements.cpp.

46  {/*{{{*/
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 }

◆ NumberOfElements()

int Elements::NumberOfElements ( void  )

Definition at line 67 of file Elements.cpp.

67  {/*{{{*/
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 }

◆ SetCurrentConfiguration()

void Elements::SetCurrentConfiguration ( Elements elements,
Loads loads,
Nodes nodes,
Vertices vertices,
Materials materials,
Parameters parameters 
)

Definition at line 92 of file Elements.cpp.

92  {/*{{{*/
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 }

◆ ResetHooks()

void Elements::ResetHooks ( )

Definition at line 78 of file Elements.cpp.

78  {/*{{{*/
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 }

The documentation for this class was generated from the following files:
DataSet::Size
int Size()
Definition: DataSet.cpp:399
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
ISSM_MPI_SUM
#define ISSM_MPI_SUM
Definition: issmmpi.h:134
IssmComm::GetComm
static ISSM_MPI_Comm GetComm(void)
Definition: IssmComm.cpp:30
DataSet::objects
std::vector< Object * > objects
Definition: DataSet.h:19
ISSM_MPI_MAX
#define ISSM_MPI_MAX
Definition: issmmpi.h:131
Element
Definition: Element.h:41
ISSM_MPI_INT
#define ISSM_MPI_INT
Definition: issmmpi.h:127
Element::ResetHooks
virtual void ResetHooks()=0
DataSet::enum_type
int enum_type
Definition: DataSet.h:22
DataSet::GetObjectByOffset
Object * GetObjectByOffset(int offset)
Definition: DataSet.cpp:334
Element::SetCurrentConfiguration
virtual void SetCurrentConfiguration(Elements *elements, Loads *loads, Nodes *nodes, Materials *materials, Parameters *parameters)=0
max
IssmDouble max(IssmDouble a, IssmDouble b)
Definition: extrema.cpp:24
Element::Configure
virtual void Configure(Elements *elements, Loads *loads, Nodes *nodes, Vertices *vertices, Materials *materials, Parameters *parameters, Inputs2 *inputs2in)=0