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

#include <SegInput2.h>

Inheritance diagram for SegInput2:
ElementInput2 SegRef Input2 Object

Public Member Functions

 SegInput2 ()
 
 SegInput2 (int nbe_in, int nbv_in, int interp_in)
 
 ~SegInput2 ()
 
Input2copy ()
 
void DeepEcho ()
 
void Echo ()
 
int Id ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
int ObjectEnum ()
 
void SetInput (int interp_in, int row, IssmDouble value_in)
 
void SetInput (int interp_in, int numinds, int *rows, IssmDouble *values_in)
 
void SetInput (int interp_in, int row, int numinds, IssmDouble *values_in)
 
int GetInterpolation ()
 
void GetInputDerivativeValue (IssmDouble *derivativevalues, IssmDouble *xyz_list, Gauss *gauss)
 
void GetInputAverage (IssmDouble *pvalue)
 
IssmDouble GetInputMin ()
 
IssmDouble GetInputMax ()
 
IssmDouble GetInputMaxAbs ()
 
SegInput2GetSegInput ()
 
void GetInputValue (IssmDouble *pvalue, Gauss *gauss)
 
void Scale (IssmDouble scalar)
 
void Pow (IssmDouble scalar)
 
void AXPY (Input2 *xinput, IssmDouble scalar)
 
void PointWiseMult (Input2 *xinput)
 
void Serve (int numindices, int *indices)
 
void Serve (int row, int numindices)
 
int GetResultArraySize (void)
 
int GetResultInterpolation (void)
 
int GetResultNumberOfNodes (void)
 
void Reset (int interp_in)
 
- Public Member Functions inherited from ElementInput2
 ElementInput2 ()
 
 ~ElementInput2 ()
 
int GetInputInterpolationType ()
 
- Public Member Functions inherited from Input2
int InstanceEnum ()
 
void ChangeEnum (int newenumtype)
 
virtual ~Input2 ()
 
virtual void Configure (Parameters *parameters)
 
virtual TriaInput2GetTriaInput ()
 
virtual PentaInput2GetPentaInput ()
 
- Public Member Functions inherited from Object
virtual ~Object ()
 
- Public Member Functions inherited from SegRef
 SegRef ()
 
 ~SegRef ()
 
void GetInputDerivativeValue (IssmDouble *p, IssmDouble *plist, IssmDouble *xyz_list, GaussSeg *gauss, int finiteelement)
 
void GetInputValue (IssmDouble *p, IssmDouble *plist, GaussSeg *gauss, int finiteelement)
 
void GetJacobian (IssmDouble *J, IssmDouble *xyz_list, GaussSeg *gauss)
 
void GetJacobianDeterminant (IssmDouble *Jdet, IssmDouble *xyz_list, GaussSeg *gauss)
 
void GetJacobianInvert (IssmDouble *Jinv, IssmDouble *xyz_list, GaussSeg *gauss)
 
void GetNodalFunctions (IssmDouble *basis, GaussSeg *gauss, int finiteelement)
 
void GetNodalFunctionsDerivatives (IssmDouble *dbasis, IssmDouble *xyz_list, GaussSeg *gauss, int finiteelement)
 
void GetNodalFunctionsDerivativesReference (IssmDouble *dbasis, GaussSeg *gauss, int finiteelement)
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
int NumberofNodes (int finiteelement)
 

Additional Inherited Members

- Data Fields inherited from ElementInput2
IssmDoubleelement_values
 
- Protected Attributes inherited from ElementInput2
int numberofelements_local
 
int numberofvertices_local
 
int interpolation
 
int M
 
int N
 
bool isserved
 
IssmDoublevalues
 

Detailed Description

Definition at line 8 of file SegInput2.h.

Constructor & Destructor Documentation

◆ SegInput2() [1/2]

SegInput2::SegInput2 ( void  )

Definition at line 16 of file SegInput2.cpp.

16  {/*{{{*/
17 
18  this->numberofelements_local = -1;
19  this->numberofvertices_local = -1;
20  this->isserved = false;
21  this->M = -1;
22  this->N = -1;
23  this->values = NULL;
24  this->element_values = NULL;
25 
26 }/*}}}*/

◆ SegInput2() [2/2]

SegInput2::SegInput2 ( int  nbe_in,
int  nbv_in,
int  interp_in 
)

Definition at line 27 of file SegInput2.cpp.

27  {/*{{{*/
28 
29  _assert_(nbe_in>0);
30  _assert_(nbe_in<1e11);
31  _assert_(nbv_in>0);
32  _assert_(nbv_in<1e11);
33  this->numberofelements_local = nbe_in;
34  this->numberofvertices_local = nbv_in;
35  this->isserved = false;
36 
37  /*Reset takes care of the rest*/
38  this->Reset(interp_in);
39 }/*}}}*/

◆ ~SegInput2()

SegInput2::~SegInput2 ( )

Definition at line 40 of file SegInput2.cpp.

40  {/*{{{*/
41  if(this->element_values) xDelete<IssmDouble>(this->element_values);
42  if(this->values) xDelete<IssmDouble>(this->values);
43 }

Member Function Documentation

◆ copy()

Input2 * SegInput2::copy ( void  )
virtual

Implements ElementInput2.

Definition at line 70 of file SegInput2.cpp.

70  {/*{{{*/
71 
73 
74  xMemCpy<IssmDouble>(output->values,this->values,this->M*this->N);
75  xMemCpy<IssmDouble>(output->element_values,this->element_values,SegRef::NumberofNodes(this->interpolation));
76 
77  return output;
78 }

◆ DeepEcho()

void SegInput2::DeepEcho ( void  )
virtual

Implements ElementInput2.

Definition at line 80 of file SegInput2.cpp.

80  {/*{{{*/
81  _printf_("SegInput2 Echo:\n");
82  _printf_(" interpolation: "<<EnumToStringx(this->interpolation)<<"\n");
83  _printf_(" Size: "<<M<<"x"<<N<<"\n");
84  _printf_(" isserved: "<<(isserved?"true":"false") << "\n");
85  if(isserved){
86  _printf_(" current values: ");
87  for(int i=0;i<3;i++) _printf_(" "<<this->element_values[i]);
88  _printf_("] ("<<EnumToStringx(this->interpolation)<<")\n");
89  }
90  printarray(this->values,this->M,this->N);
91  //_printf_(setw(15)<<" SegInput2 "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" "<<(value?"true":"false") << "\n");
92 }

◆ Echo()

void SegInput2::Echo ( void  )
virtual

Implements ElementInput2.

Definition at line 94 of file SegInput2.cpp.

94  {/*{{{*/
95  _printf_("SegInput2 Echo:\n");
96  _printf_(" interpolation: "<<EnumToStringx(this->interpolation)<<"\n");
97  _printf_(" Size: "<<M<<"x"<<N<<"\n");
98  _printf_(" isserved: "<<(isserved?"true":"false") << "\n");
99  if(isserved){
100  _printf_(" current values: ");
101  _printf_("[ ");
102  for(int i=0;i<3;i++) _printf_(" "<<this->element_values[i]);
103  _printf_("] ("<<EnumToStringx(this->interpolation)<<")\n");
104  }
105 }

◆ Id()

int SegInput2::Id ( void  )
virtual

Implements ElementInput2.

Definition at line 107 of file SegInput2.cpp.

107  {/*{{{*/
108  return -1;
109 }/*}}}*/

◆ Marshall()

void SegInput2::Marshall ( char **  pmarshalled_data,
int *  pmarshalled_data_size,
int  marshall_direction 
)
virtual

Implements ElementInput2.

Definition at line 110 of file SegInput2.cpp.

110  { /*{{{*/
111 
115  MARSHALLING(this->interpolation);
116  MARSHALLING(this->M);
117  MARSHALLING(this->N);
118  this->isserved = false;
119  if(this->M*this->N){
120  MARSHALLING_DYNAMIC(this->values,IssmDouble,this->M*this->N);
121  }
122  else this->values = NULL;
123 
124  if(marshall_direction == MARSHALLING_BACKWARD){
125  this->element_values = xNewZeroInit<IssmDouble>(SegRef::NumberofNodes(this->interpolation));
126  }
127 
128 }

◆ ObjectEnum()

int SegInput2::ObjectEnum ( void  )
virtual

Implements ElementInput2.

Definition at line 130 of file SegInput2.cpp.

130  {/*{{{*/
131  return SegInput2Enum;
132 }

◆ SetInput() [1/3]

void SegInput2::SetInput ( int  interp_in,
int  row,
IssmDouble  value_in 
)
virtual

Implements ElementInput2.

Definition at line 136 of file SegInput2.cpp.

136  {/*{{{*/
137 
138  _assert_(this);
139  _assert_(row>=0);
140  _assert_(row<this->M);
141  _assert_(this->N==1);
142 
143  this->values[row] = value_in;
144  this->isserved = false;
145 }

◆ SetInput() [2/3]

void SegInput2::SetInput ( int  interp_in,
int  numinds,
int *  rows,
IssmDouble values_in 
)
virtual

Implements ElementInput2.

Definition at line 147 of file SegInput2.cpp.

147  {/*{{{*/
148 
149  _assert_(this);
150  if(interp_in==P1Enum && this->interpolation==P1Enum){
151  _assert_(this->N==1);
152  for(int i=0;i<numindices;i++){
153  int row = indices[i];
154  _assert_(row>=0);
155  _assert_(row<this->M);
156  this->values[row] = values_in[i];
157  }
158  }
159  else if(interp_in==P0Enum && this->interpolation==P0Enum){
160  _assert_(this->N==1);
161  for(int i=0;i<numindices;i++){
162  int row = indices[i];
163  _assert_(row>=0);
164  _assert_(row<this->M);
165  this->values[row] = values_in[i];
166  }
167  }
168  else if(this->interpolation!=P1Enum && interp_in==P1Enum){
169  this->Reset(interp_in);
170  for(int i=0;i<numindices;i++){
171  int row = indices[i];
172  _assert_(row>=0);
173  _assert_(row<this->M);
174  this->values[row] = values_in[i];
175  }
176  }
177  else{
178  _error_("Cannot convert "<<EnumToStringx(this->interpolation)<<" to "<<EnumToStringx(interp_in));
179  }
180  this->isserved = false;
181 }

◆ SetInput() [3/3]

void SegInput2::SetInput ( int  interp_in,
int  row,
int  numinds,
IssmDouble values_in 
)
virtual

Implements ElementInput2.

Definition at line 183 of file SegInput2.cpp.

183  {/*{{{*/
184 
185  _assert_(this);
186  if(interp_in==this->interpolation){
187  _assert_(this->N==numindices);
188  }
189  else{
190  this->Reset(interp_in);
191  _assert_(this->N==numindices);
192  }
193  for(int i=0;i<numindices;i++) this->values[row*this->N+i] = values_in[i];
194  this->isserved = false;
195 }

◆ GetInterpolation()

int SegInput2::GetInterpolation ( )
virtual

Implements ElementInput2.

Definition at line 227 of file SegInput2.cpp.

227  {/*{{{*/
228  return this->interpolation;
229 }/*}}}*/

◆ GetInputDerivativeValue()

void SegInput2::GetInputDerivativeValue ( IssmDouble derivativevalues,
IssmDouble xyz_list,
Gauss gauss 
)
virtual

Implements ElementInput2.

Definition at line 279 of file SegInput2.cpp.

279  {/*{{{*/
280  _assert_(this);
281  _assert_(this->isserved);
282  _assert_(gauss->Enum()==GaussSegEnum);
283  SegRef::GetInputDerivativeValue(derivativevalues,this->element_values,xyz_list,(GaussSeg*)gauss,this->interpolation);
284 }/*}}}*/

◆ GetInputAverage()

void SegInput2::GetInputAverage ( IssmDouble pvalue)
virtual

Reimplemented from Input2.

Definition at line 230 of file SegInput2.cpp.

230  {/*{{{*/
231  _assert_(this);
232  _assert_(this->isserved);
233 
234  int numnodes = this->NumberofNodes(this->interpolation);
235  IssmDouble numnodesd = reCast<int,IssmDouble>(numnodes);
236  IssmDouble value = 0.;
237 
238  for(int i=0;i<numnodes;i++) value+=this->element_values[i];
239  value = value/numnodesd;
240 
241  *pvalue=value;
242 }/*}}}*/

◆ GetInputMin()

IssmDouble SegInput2::GetInputMin ( void  )
virtual

Reimplemented from Input2.

Definition at line 243 of file SegInput2.cpp.

243  {/*{{{*/
244  _assert_(this);
245  _assert_(this->isserved);
246 
247  int numnodes = this->NumberofNodes(this->interpolation);
248  IssmDouble min=this->element_values[0];
249 
250  for(int i=1;i<numnodes;i++){
251  if(this->element_values[i]<min) min=this->element_values[i];
252  }
253  return min;
254 }/*}}}*/

◆ GetInputMax()

IssmDouble SegInput2::GetInputMax ( void  )
virtual

Reimplemented from Input2.

Definition at line 255 of file SegInput2.cpp.

255  {/*{{{*/
256  _assert_(this);
257  _assert_(this->isserved);
258 
259  int numnodes = this->NumberofNodes(this->interpolation);
260  IssmDouble max=this->element_values[0];
261 
262  for(int i=1;i<numnodes;i++){
263  if(this->element_values[i]>max) max=this->element_values[i];
264  }
265  return max;
266 }/*}}}*/

◆ GetInputMaxAbs()

IssmDouble SegInput2::GetInputMaxAbs ( void  )
virtual

Reimplemented from Input2.

Definition at line 267 of file SegInput2.cpp.

267  {/*{{{*/
268  _assert_(this);
269  _assert_(this->isserved);
270 
271  int numnodes = this->NumberofNodes(this->interpolation);
272  IssmDouble maxabs=fabs(this->element_values[0]);
273 
274  for(int i=1;i<numnodes;i++){
275  if(fabs(this->element_values[i])>maxabs) maxabs=fabs(this->element_values[i]);
276  }
277  return maxabs;
278 }/*}}}*/

◆ GetSegInput()

SegInput2* SegInput2::GetSegInput ( )
inlinevirtual

Reimplemented from Input2.

Definition at line 34 of file SegInput2.h.

34 {return this;};

◆ GetInputValue()

void SegInput2::GetInputValue ( IssmDouble pvalue,
Gauss gauss 
)
virtual

Implements ElementInput2.

Definition at line 285 of file SegInput2.cpp.

285  {/*{{{*/
286  _assert_(this);
287  _assert_(this->isserved);
288  _assert_(gauss->Enum()==GaussSegEnum);
289  SegRef::GetInputValue(pvalue,this->element_values,(GaussSeg*)gauss,this->interpolation);
290 }/*}}}*/

◆ Scale()

void SegInput2::Scale ( IssmDouble  scalar)
virtual

Reimplemented from Input2.

Definition at line 305 of file SegInput2.cpp.

305  {/*{{{*/
306 
307  for(int i=0;i<this->M*this->N;i++) this->values[i] = alpha*this->values[i];
308  for(int i=0;i<SegRef::NumberofNodes(this->interpolation);i++) this->element_values[i] = alpha*this->element_values[i];
309 }

◆ Pow()

void SegInput2::Pow ( IssmDouble  scalar)
virtual

Reimplemented from Input2.

Definition at line 311 of file SegInput2.cpp.

311  {/*{{{*/
312 
313  for(int i=0;i<this->M*this->N;i++) this->values[i] = pow(this->values[i],alpha);
314  for(int i=0;i<SegRef::NumberofNodes(this->interpolation);i++) this->element_values[i] = pow(this->element_values[i],alpha);
315 }

◆ AXPY()

void SegInput2::AXPY ( Input2 xinput,
IssmDouble  scalar 
)
virtual

Reimplemented from Input2.

Definition at line 317 of file SegInput2.cpp.

317  {/*{{{*/
318 
319  /*xinput is of the same type, so cast it: */
320  if(xinput->ObjectEnum()!=SegInput2Enum) _error_("Operation not permitted because xinput is of type " << EnumToStringx(xinput->ObjectEnum()));
321  SegInput2* xseginput=xDynamicCast<SegInput2*>(xinput);
322  if(xseginput->GetInterpolation()!=this->interpolation) _error_("Operation not permitted because xinput is of type " << EnumToStringx(xinput->ObjectEnum()));
323 
324  /*Carry out the AXPY operation depending on type:*/
325  for(int i=0;i<this->M*this->N;i++) this->values[i] = alpha*xseginput->values[i] + this->values[i];
326  for(int i=0;i<SegRef::NumberofNodes(this->interpolation);i++) this->element_values[i] = alpha*xseginput->element_values[i] + this->element_values[i];
327 }

◆ PointWiseMult()

void SegInput2::PointWiseMult ( Input2 xinput)
virtual

Reimplemented from Input2.

Definition at line 329 of file SegInput2.cpp.

329  {/*{{{*/
330 
331  /*xinput is of the same type, so cast it: */
332  if(xinput->ObjectEnum()!=SegInput2Enum) _error_("Operation not permitted because xinput is of type " << EnumToStringx(xinput->ObjectEnum()));
333  SegInput2* xseginput=xDynamicCast<SegInput2*>(xinput);
334  if(xseginput->GetInterpolation()!=this->interpolation) _error_("Operation not permitted because xinput is of type " << EnumToStringx(xinput->ObjectEnum()));
335 
336  /* we need to check that the vector sizes are identical*/
337  if(xseginput->M!=this->M||xseginput->N!=this->N) _error_("Operation not permitted because the inputs have different sizes");
338 
339  /*Carry out the AXPY operation depending on type:*/
340  for(int i=0;i<this->M*this->N;i++) this->values[i] = xseginput->values[i] * this->values[i];
341  for(int i=0;i<SegRef::NumberofNodes(this->interpolation);i++) this->element_values[i] = xseginput->element_values[i] * this->element_values[i];
342 }

◆ Serve() [1/2]

void SegInput2::Serve ( int  numindices,
int *  indices 
)
virtual

Implements ElementInput2.

Definition at line 197 of file SegInput2.cpp.

197  {/*{{{*/
198 
199  _assert_(this);
200  _assert_(this->N==1);
201 
202  for(int i=0;i<numindices;i++){
203  int row = indices[i];
204  _assert_(row>=0);
205  _assert_(row<this->M);
206  this->element_values[i] = this->values[row];
207  }
208 
209  /*Set input as served*/
210  this->isserved = true;
211 }

◆ Serve() [2/2]

void SegInput2::Serve ( int  row,
int  numindices 
)
virtual

Implements ElementInput2.

Definition at line 213 of file SegInput2.cpp.

213  {/*{{{*/
214 
215  _assert_(this);
216  _assert_(this->N==numindices);
217  _assert_(row<this->M);
218  _assert_(row>=0);
219 
220  for(int i=0;i<numindices;i++){
221  this->element_values[i] = this->values[row*this->N+i];
222  }
223 
224  /*Set input as served*/
225  this->isserved = true;
226 } /*}}}*/

◆ GetResultArraySize()

int SegInput2::GetResultArraySize ( void  )
virtual

Implements ElementInput2.

Definition at line 291 of file SegInput2.cpp.

291  {/*{{{*/
292  return 1;
293 }

◆ GetResultInterpolation()

int SegInput2::GetResultInterpolation ( void  )
virtual

Implements ElementInput2.

Definition at line 295 of file SegInput2.cpp.

295  {/*{{{*/
296  if(this->interpolation==P0Enum || this->interpolation==P0DGEnum){
297  return P0Enum;
298  }
299  return P1Enum;
300 }/*}}}*/

◆ GetResultNumberOfNodes()

int SegInput2::GetResultNumberOfNodes ( void  )
virtual

Implements ElementInput2.

Definition at line 301 of file SegInput2.cpp.

301  {/*{{{*/
302  return this->N;
303 }

◆ Reset()

void SegInput2::Reset ( int  interp_in)

Definition at line 45 of file SegInput2.cpp.

45  {/*{{{*/
46 
47  /*Clean up*/
48  if(this->values) xDelete<IssmDouble>(this->values);
49  if(this->element_values) xDelete<IssmDouble>(this->element_values);
50 
51  /*Set interpolation*/
52  this->interpolation = interp_in;
53 
54  /*Create Sizes*/
55  if(this->interpolation==P1Enum){
56  this->M = this->numberofvertices_local;
57  this->N = 1;
58  }
59  else{
60  this->M = this->numberofelements_local;
61  this->N = SegRef::NumberofNodes(interp_in);
62  }
63 
64  /*Allocate Pointers*/
65  this->values = xNewZeroInit<IssmDouble>(this->M*this->N);
66  this->element_values = xNewZeroInit<IssmDouble>(SegRef::NumberofNodes(interp_in));
67 }/*}}}*/

The documentation for this class was generated from the following files:
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
IssmDouble
double IssmDouble
Definition: types.h:37
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
SegRef::GetInputValue
void GetInputValue(IssmDouble *p, IssmDouble *plist, GaussSeg *gauss, int finiteelement)
Definition: SegRef.cpp:61
P0Enum
@ P0Enum
Definition: EnumDefinitions.h:661
ElementInput2::interpolation
int interpolation
Definition: ElementInput2.h:12
SegInput2
Definition: SegInput2.h:8
SegInput2::SegInput2
SegInput2()
Definition: SegInput2.cpp:16
ElementInput2::numberofelements_local
int numberofelements_local
Definition: ElementInput2.h:10
P0DGEnum
@ P0DGEnum
Definition: EnumDefinitions.h:1214
MARSHALLING_DYNAMIC
#define MARSHALLING_DYNAMIC(FIELD, TYPE, SIZE)
Definition: Marshalling.h:61
P1Enum
@ P1Enum
Definition: EnumDefinitions.h:662
EnumToStringx
const char * EnumToStringx(int enum_in)
Definition: EnumToStringx.cpp:15
alpha
IssmDouble alpha(IssmDouble x, IssmDouble y, IssmDouble z, int testid)
Definition: fsanalyticals.cpp:221
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
ElementInput2::values
IssmDouble * values
Definition: ElementInput2.h:15
Gauss::Enum
virtual int Enum(void)=0
SegInput2::GetInterpolation
int GetInterpolation()
Definition: SegInput2.cpp:227
SegRef::GetInputDerivativeValue
void GetInputDerivativeValue(IssmDouble *p, IssmDouble *plist, IssmDouble *xyz_list, GaussSeg *gauss, int finiteelement)
Definition: SegRef.cpp:31
SegRef::NumberofNodes
int NumberofNodes(int finiteelement)
Definition: SegRef.cpp:191
Object::ObjectEnum
virtual int ObjectEnum()=0
MARSHALLING_BACKWARD
@ MARSHALLING_BACKWARD
Definition: Marshalling.h:10
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
printarray
void printarray(IssmPDouble *array, int lines, int cols=1)
Definition: PrintArrays.cpp:6
GaussSegEnum
@ GaussSegEnum
Definition: EnumDefinitions.h:1079
min
IssmDouble min(IssmDouble a, IssmDouble b)
Definition: extrema.cpp:14
ElementInput2::N
int N
Definition: ElementInput2.h:13
ElementInput2::element_values
IssmDouble * element_values
Definition: ElementInput2.h:18
ElementInput2::numberofvertices_local
int numberofvertices_local
Definition: ElementInput2.h:11
SegInput2Enum
@ SegInput2Enum
Definition: EnumDefinitions.h:1123
ElementInput2::M
int M
Definition: ElementInput2.h:13
max
IssmDouble max(IssmDouble a, IssmDouble b)
Definition: extrema.cpp:24
SegInput2::Reset
void Reset(int interp_in)
Definition: SegInput2.cpp:45
GaussSeg
Definition: GaussSeg.h:12
ElementInput2::isserved
bool isserved
Definition: ElementInput2.h:14