Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Data Fields | Private Attributes
GaussSeg Class Reference

#include <GaussSeg.h>

Inheritance diagram for GaussSeg:
Gauss

Public Member Functions

 GaussSeg ()
 
 GaussSeg (int order)
 
 GaussSeg (IssmDouble position)
 
 ~GaussSeg ()
 
int begin (void)
 
void Echo (void)
 
int end (void)
 
int Enum (void)
 
void GaussPoint (int ig)
 
void GaussNode (int finitelement, int iv)
 
void GaussVertex (int iv)
 
void SynchronizeGaussBase (Gauss *gauss)
 
- Public Member Functions inherited from Gauss
virtual ~Gauss ()
 

Data Fields

IssmDouble coord1
 
- Data Fields inherited from Gauss
IssmDouble weight
 

Private Attributes

int numgauss
 
IssmDoubleweights
 
IssmDoublecoords1
 

Detailed Description

Definition at line 12 of file GaussSeg.h.

Constructor & Destructor Documentation

◆ GaussSeg() [1/3]

GaussSeg::GaussSeg ( )

Definition at line 14 of file GaussSeg.cpp.

14  {/*{{{*/
15 
16  numgauss=-1;
17 
18  weights=NULL;
19  coords1=NULL;
20 
21  weight=UNDEF;
22  coord1=UNDEF;
23 }

◆ GaussSeg() [2/3]

GaussSeg::GaussSeg ( int  order)

Definition at line 25 of file GaussSeg.cpp.

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

◆ GaussSeg() [3/3]

GaussSeg::GaussSeg ( IssmDouble  position)

Definition at line 52 of file GaussSeg.cpp.

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

◆ ~GaussSeg()

GaussSeg::~GaussSeg ( )

Definition at line 69 of file GaussSeg.cpp.

69  {/*{{{*/
70  xDelete<IssmDouble>(weights);
71  xDelete<IssmDouble>(coords1);
72 }

Member Function Documentation

◆ begin()

int GaussSeg::begin ( void  )
virtual

Implements Gauss.

Definition at line 76 of file GaussSeg.cpp.

76  {/*{{{*/
77 
78  /*Check that this has been initialized*/
79  _assert_(numgauss>0);
82 
83  /*return first gauss index*/
84  return 0;
85 }

◆ Echo()

void GaussSeg::Echo ( void  )
virtual

Implements Gauss.

Definition at line 87 of file GaussSeg.cpp.

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

◆ end()

int GaussSeg::end ( void  )
virtual

Implements Gauss.

Definition at line 108 of file GaussSeg.cpp.

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

◆ Enum()

int GaussSeg::Enum ( void  )
virtual

Implements Gauss.

Definition at line 119 of file GaussSeg.cpp.

119  {/*{{{*/
120  return GaussSegEnum;
121 }

◆ GaussPoint()

void GaussSeg::GaussPoint ( int  ig)
virtual

Implements Gauss.

Definition at line 123 of file GaussSeg.cpp.

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

◆ GaussNode()

void GaussSeg::GaussNode ( int  finitelement,
int  iv 
)
virtual

Implements Gauss.

Definition at line 133 of file GaussSeg.cpp.

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

◆ GaussVertex()

void GaussSeg::GaussVertex ( int  iv)
virtual

Implements Gauss.

Definition at line 152 of file GaussSeg.cpp.

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

◆ SynchronizeGaussBase()

void GaussSeg::SynchronizeGaussBase ( Gauss gauss)
virtual

Implements Gauss.

Definition at line 165 of file GaussSeg.cpp.

165  {/*{{{*/
166 
167  _error_("not supported");
168 }

Field Documentation

◆ numgauss

int GaussSeg::numgauss
private

Definition at line 15 of file GaussSeg.h.

◆ weights

IssmDouble* GaussSeg::weights
private

Definition at line 16 of file GaussSeg.h.

◆ coords1

IssmDouble* GaussSeg::coords1
private

Definition at line 17 of file GaussSeg.h.

◆ coord1

IssmDouble GaussSeg::coord1

Definition at line 20 of file GaussSeg.h.


The documentation for this class was generated from the following files:
_assert_
#define _assert_(ignore)
Definition: exceptions.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::coords1
IssmDouble * coords1
Definition: GaussSeg.h:17
P1DGEnum
@ P1DGEnum
Definition: EnumDefinitions.h:1215
P1Enum
@ P1Enum
Definition: EnumDefinitions.h:662
GaussSeg::weights
IssmDouble * weights
Definition: GaussSeg.h:16
EnumToStringx
const char * EnumToStringx(int enum_in)
Definition: EnumToStringx.cpp:15
UNDEF
#define UNDEF
Definition: constants.h:8
GaussLegendreLinear
void GaussLegendreLinear(IssmPDouble **pxgaus, IssmPDouble **pxwgt, int ngaus)
Definition: GaussPoints.cpp:11
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
GaussSegEnum
@ GaussSegEnum
Definition: EnumDefinitions.h:1079
Gauss::weight
IssmDouble weight
Definition: Gauss.h:11
IssmPDouble
IssmDouble IssmPDouble
Definition: types.h:38