Ice Sheet System Model  4.18
Code documentation
Functions
Node.cpp File Reference
#include "./classes.h"
#include "shared/shared.h"
#include "modules/ModelProcessorx/ModelProcessorx.h"
#include "../analyses/analyses.h"

Go to the source code of this file.

Functions

int * GetGlobalDofList (Node **nodes, int numnodes, int setenum, int approximation)
 
int * GetLocalDofList (Node **nodes, int numnodes, int setenum, int approximation)
 
int GetNumberOfDofs (Node **nodes, int numnodes, int setenum, int approximation)
 

Function Documentation

◆ GetGlobalDofList()

int* GetGlobalDofList ( Node **  nodes,
int  numnodes,
int  setenum,
int  approximation 
)

Definition at line 1035 of file Node.cpp.

1035  {/*{{{*/
1036 
1037  int i,numdof,count;
1038  int* ndof_list=NULL;
1039  int *doflist = NULL;
1040 
1041  if(numnodes){
1042 
1043  /*Allocate:*/
1044  ndof_list=xNew<int>(numnodes);
1045 
1046  /*First, figure out size of doflist: */
1047  numdof=0;
1048  for(i=0;i<numnodes;i++){
1049  ndof_list[i]=nodes[i]->GetNumberOfDofs(approximation,setenum);
1050  numdof+=ndof_list[i];
1051  }
1052 
1053  if(numdof){
1054  /*Allocate: */
1055  doflist=xNew<int>(numdof);
1056 
1057  /*Populate: */
1058  count=0;
1059  for(i=0;i<numnodes;i++){
1060  nodes[i]->GetDofList(&doflist[count],approximation,setenum);
1061  count+=ndof_list[i];
1062  }
1063  }
1064  else doflist=NULL;
1065  }
1066  /*Free ressources:*/
1067  xDelete<int>(ndof_list);
1068 
1069  return doflist;
1070 }

◆ GetLocalDofList()

int* GetLocalDofList ( Node **  nodes,
int  numnodes,
int  setenum,
int  approximation 
)

Definition at line 1072 of file Node.cpp.

1072  { /*{{{*/
1073 
1074  int i,j,count,numdof,numgdof;
1075  int* ndof_list=NULL;
1076  int* ngdof_list_cumulative=NULL;
1077  int *doflist = NULL;
1078 
1079  if(numnodes){
1080  /*allocate: */
1081  ndof_list=xNew<int>(numnodes);
1082  ngdof_list_cumulative=xNew<int>(numnodes);
1083 
1084  /*Get number of dofs per node, and total for this given set*/
1085  numdof=0;
1086  numgdof=0;
1087  for(i=0;i<numnodes;i++){
1088 
1089  /*Cumulative list= number of dofs before node i*/
1090  ngdof_list_cumulative[i]=numgdof;
1091 
1092  /*Number of dofs for node i for given set and for the g set*/
1093  ndof_list[i]=nodes[i]->GetNumberOfDofs(approximation,setenum);
1094  numgdof +=nodes[i]->GetNumberOfDofs(approximation,GsetEnum);
1095  numdof +=ndof_list[i];
1096  }
1097 
1098  if(numdof){
1099  /*Allocate: */
1100  doflist=xNew<int>(numdof);
1101 
1102  /*Populate: */
1103  count=0;
1104  for(i=0;i<numnodes;i++){
1105  nodes[i]->GetLocalDofList(&doflist[count],approximation,setenum);
1106  count+=ndof_list[i];
1107  }
1108 
1109  /*We now have something like: [0 1 0 2 1 2]. Offset by gsize, to get something like: [0 1 2 4 6 7]:*/
1110  count=0;
1111  for(i=0;i<numnodes;i++){
1112  for(j=0;j<ndof_list[i];j++){
1113  doflist[count+j]+=ngdof_list_cumulative[i];
1114  }
1115  count+=ndof_list[i];
1116  }
1117  }
1118  else doflist=NULL;
1119  }
1120 
1121  /*Free ressources:*/
1122  xDelete<int>(ndof_list);
1123  xDelete<int>(ngdof_list_cumulative);
1124 
1125  /*CLean-up and return*/
1126  return doflist;
1127 }

◆ GetNumberOfDofs()

int GetNumberOfDofs ( Node **  nodes,
int  numnodes,
int  setenum,
int  approximation 
)

Definition at line 1129 of file Node.cpp.

1129  {/*{{{*/
1130 
1131  /*output: */
1132  int numberofdofs=0;
1133 
1134  for(int i=0;i<numnodes;i++){
1135  numberofdofs+=nodes[i]->GetNumberOfDofs(approximation,setenum);
1136  }
1137 
1138  return numberofdofs;
1139 }
Node::GetLocalDofList
void GetLocalDofList(int *poutdoflist, int approximation_enum, int setenum)
Definition: Node.cpp:518
GsetEnum
@ GsetEnum
Definition: EnumDefinitions.h:1093
Node::GetDofList
void GetDofList(int *poutdoflist, int approximation_enum, int setenum)
Definition: Node.cpp:392
Node::GetNumberOfDofs
int GetNumberOfDofs(int approximation_enum, int setenum)
Definition: Node.cpp:741