Ice Sheet System Model  4.18
Code documentation
GaussSeg.cpp
Go to the documentation of this file.
1 
5 #include "./GaussSeg.h"
6 #include "../../shared/io/Print/Print.h"
7 #include "../../shared/Exceptions/exceptions.h"
8 #include "../../shared/MemOps/MemOps.h"
9 #include "../../shared/Enum/Enum.h"
10 #include "../../shared/Numerics/GaussPoints.h"
11 #include "../../shared/Numerics/constants.h"
12 
13 /*GaussSeg constructors and destructors:*/
15 
16  numgauss=-1;
17 
18  weights=NULL;
19  coords1=NULL;
20 
21  weight=UNDEF;
22  coord1=UNDEF;
23 }
24 /*}}}*/
25 GaussSeg::GaussSeg(int order){/*{{{*/
26 
27  IssmPDouble* pcoords1=NULL;
28  IssmPDouble* pweights=NULL;
29 
30  /*Get gauss points*/
31  this->numgauss = order;
32  GaussLegendreLinear(&pcoords1,&pweights,order);
33 
34  this->coords1=xNew<IssmDouble>(numgauss);
35  this->weights=xNew<IssmDouble>(numgauss);
36 
37  /*cast : */
38  for(int i=0;i<numgauss;i++){
39  this->coords1[i]=pcoords1[i];
40  this->weights[i]=pweights[i];
41  }
42 
43  /*Free ressources: */
44  xDelete<IssmPDouble>(pcoords1);
45  xDelete<IssmPDouble>(pweights);
46 
47  /*Initialize static fields as undefinite*/
48  weight=UNDEF;
49  coord1=UNDEF;
50 }
51 /*}}}*/
52 GaussSeg::GaussSeg(IssmDouble position){/*{{{*/
53 
54  /*Get gauss points*/
55  this->numgauss = 1;
56  this->coords1=xNew<IssmDouble>(numgauss);
57  this->weights=xNew<IssmDouble>(numgauss);
58 
59  /*cast : */
60  _assert_(position>=-1. && position<=+1.);
61  this->coords1[0]=position;
62  this->weights[0]=1.;
63 
64  /*Initialize static fields as undefinite*/
65  weight=UNDEF;
66  coord1=UNDEF;
67 }
68 /*}}}*/
70  xDelete<IssmDouble>(weights);
71  xDelete<IssmDouble>(coords1);
72 }
73 /*}}}*/
74 
75 /*Methods*/
76 int GaussSeg::begin(void){/*{{{*/
77 
78  /*Check that this has been initialized*/
79  _assert_(numgauss>0);
82 
83  /*return first gauss index*/
84  return 0;
85 }
86 /*}}}*/
87 void GaussSeg::Echo(void){/*{{{*/
88 
89  _printf_("GaussSeg:\n");
90  _printf_(" numgauss: " << numgauss << "\n");
91 
92  if (weights){
93  _printf_(" weights = [");
94  for(int i=0;i<numgauss;i++) _printf_(" " << weights[i] << "\n");
95  _printf_("]\n");
96  }
97  else _printf_("weights = NULL\n");
98  if (coords1){
99  _printf_(" coords1 = [");
100  for(int i=0;i<numgauss;i++) _printf_(" " << coords1[i] << "\n");
101  _printf_("]\n");
102  }
103  _printf_(" weight = " << weight << "\n");
104  _printf_(" coord1 = " << coord1 << "\n");
105 
106 }
107 /*}}}*/
108 int GaussSeg::end(void){/*{{{*/
109 
110  /*Check that this has been initialized*/
111  _assert_(numgauss>0);
112  _assert_(weights);
113  _assert_(coords1);
114 
115  /*return last gauss index +1*/
116  return numgauss;
117 }
118 /*}}}*/
119 int GaussSeg::Enum(void){/*{{{*/
120  return GaussSegEnum;
121 }
122 /*}}}*/
123 void GaussSeg::GaussPoint(int ig){/*{{{*/
124 
125  /*Check input in debugging mode*/
126  _assert_(ig>=0 && ig< numgauss);
127 
128  /*update static arrays*/
129  weight=weights[ig];
130  coord1=coords1[ig];
131 }
132 /*}}}*/
133 void GaussSeg::GaussNode(int finiteelement,int iv){/*{{{*/
134 
135  /*in debugging mode: check that the default constructor has been called*/
136  _assert_(numgauss==-1);
137 
138  /*update static arrays*/
139  switch(finiteelement){
140  case P1Enum: case P1DGEnum:
141  switch(iv){
142  case 0: coord1=-1.; break;
143  case 1: coord1=+1.; break;
144  default: _error_("node index should be in [0 1]");
145  }
146  break;
147  default: _error_("Finite element "<<EnumToStringx(finiteelement)<<" not supported");
148  }
149 
150 }
151 /*}}}*/
152 void GaussSeg::GaussVertex(int iv){/*{{{*/
153 
154  /*in debugging mode: check that the default constructor has been called*/
155  _assert_(numgauss==-1);
156 
157  /*update static arrays*/
158  switch(iv){
159  case 0: coord1=-1.; break;
160  case 1: coord1=+1.; break;
161  default: _error_("vertex index should be in [0 1]");
162  }
163 }
164 /*}}}*/
166 
167  _error_("not supported");
168 }
169 /*}}}*/
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
IssmDouble
double IssmDouble
Definition: types.h:37
GaussSeg::coord1
IssmDouble coord1
Definition: GaussSeg.h:20
GaussSeg::numgauss
int numgauss
Definition: GaussSeg.h:15
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
GaussSeg::end
int end(void)
Definition: GaussSeg.cpp:108
GaussSeg::coords1
IssmDouble * coords1
Definition: GaussSeg.h:17
P1DGEnum
@ P1DGEnum
Definition: EnumDefinitions.h:1215
GaussSeg::SynchronizeGaussBase
void SynchronizeGaussBase(Gauss *gauss)
Definition: GaussSeg.cpp:165
GaussSeg::Echo
void Echo(void)
Definition: GaussSeg.cpp:87
P1Enum
@ P1Enum
Definition: EnumDefinitions.h:662
GaussSeg.h
: header file for node object
GaussSeg::weights
IssmDouble * weights
Definition: GaussSeg.h:16
EnumToStringx
const char * EnumToStringx(int enum_in)
Definition: EnumToStringx.cpp:15
GaussSeg::GaussVertex
void GaussVertex(int iv)
Definition: GaussSeg.cpp:152
UNDEF
#define UNDEF
Definition: constants.h:8
GaussLegendreLinear
void GaussLegendreLinear(IssmPDouble **pxgaus, IssmPDouble **pxwgt, int ngaus)
Definition: GaussPoints.cpp:11
GaussSeg::begin
int begin(void)
Definition: GaussSeg.cpp:76
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
GaussSeg::GaussSeg
GaussSeg()
Definition: GaussSeg.cpp:14
GaussSegEnum
@ GaussSegEnum
Definition: EnumDefinitions.h:1079
GaussSeg::~GaussSeg
~GaussSeg()
Definition: GaussSeg.cpp:69
Gauss::weight
IssmDouble weight
Definition: Gauss.h:11
GaussSeg::GaussNode
void GaussNode(int finitelement, int iv)
Definition: GaussSeg.cpp:133
GaussSeg::Enum
int Enum(void)
Definition: GaussSeg.cpp:119
IssmPDouble
IssmDouble IssmPDouble
Definition: types.h:38
GaussSeg::GaussPoint
void GaussPoint(int ig)
Definition: GaussSeg.cpp:123
Gauss
Definition: Gauss.h:8