Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Private Attributes
TriaInput2 Class Reference

#include <TriaInput2.h>

Inheritance diagram for TriaInput2:
ElementInput2 TriaRef Input2 Object

Public Member Functions

 TriaInput2 ()
 
 TriaInput2 (int nbe_in, int nbv_in, int interp_in)
 
 ~TriaInput2 ()
 
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 ()
 
TriaInput2GetTriaInput ()
 
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)
 
void ServeCollapsed (int row, int id0, int in1)
 
void SetServeCollapsed (bool)
 
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 SegInput2GetSegInput ()
 
virtual PentaInput2GetPentaInput ()
 
- Public Member Functions inherited from Object
virtual ~Object ()
 
- Public Member Functions inherited from TriaRef
 TriaRef ()
 
 ~TriaRef ()
 
void GetInputDerivativeValue (IssmDouble *pp, IssmDouble *plist, IssmDouble *xyz_list, Gauss *gauss, int finiteelement)
 
void GetInputValue (IssmDouble *pp, IssmDouble *plist, Gauss *gauss, int finiteelement)
 
void GetJacobian (IssmDouble *J, IssmDouble *xyz_list, Gauss *gauss)
 
void GetJacobianDeterminant (IssmDouble *Jdet, IssmDouble *xyz_list, Gauss *gauss)
 
void GetJacobianDeterminant3D (IssmDouble *Jdet, IssmDouble *xyz_list, Gauss *gauss)
 
void GetJacobianInvert (IssmDouble *Jinv, IssmDouble *xyz_list, Gauss *gauss)
 
void GetNodalFunctions (IssmDouble *basis, Gauss *gauss, int finiteelement)
 
void GetNodalFunctionsDerivatives (IssmDouble *dbasis, IssmDouble *xyz_list, Gauss *gauss, int finiteelement)
 
void GetNodalFunctionsDerivativesReference (IssmDouble *dbasis, Gauss *gauss, int finiteelement)
 
void GetSegmentJacobianDeterminant (IssmDouble *Jdet, IssmDouble *xyz_list, Gauss *gauss)
 
void GetSegmentNodalFunctions (IssmDouble *basis, Gauss *gauss, int index1, int index2, int finiteelement)
 
void GetSegmentNodalFunctionsDerivatives (IssmDouble *dbasis, IssmDouble *xyz_list_tria, Gauss *gauss, int index1, int index2, int finiteelement)
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
void NodeOnEdgeIndices (int *pnumindices, int **pindices, int index, int finiteelement)
 
int NumberofNodes (int finiteelement)
 
int PressureInterpolation (int fe_stokes)
 
int TensorInterpolation (int fe_stokes)
 
int VelocityInterpolation (int fe_stokes)
 

Private Attributes

int isserved_collapsed
 
int collapsed_ids [2]
 

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 TriaInput2.h.

Constructor & Destructor Documentation

◆ TriaInput2() [1/2]

TriaInput2::TriaInput2 ( void  )

Definition at line 16 of file TriaInput2.cpp.

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

◆ TriaInput2() [2/2]

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

Definition at line 28 of file TriaInput2.cpp.

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

◆ ~TriaInput2()

TriaInput2::~TriaInput2 ( )

Definition at line 42 of file TriaInput2.cpp.

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

Member Function Documentation

◆ copy()

Input2 * TriaInput2::copy ( void  )
virtual

Implements ElementInput2.

Definition at line 72 of file TriaInput2.cpp.

72  {/*{{{*/
73 
75 
76  xMemCpy<IssmDouble>(output->values,this->values,this->M*this->N);
77  xMemCpy<IssmDouble>(output->element_values,this->element_values,TriaRef::NumberofNodes(this->interpolation));
78 
79  return output;
80 }

◆ DeepEcho()

void TriaInput2::DeepEcho ( void  )
virtual

Implements ElementInput2.

Definition at line 82 of file TriaInput2.cpp.

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

◆ Echo()

void TriaInput2::Echo ( void  )
virtual

Implements ElementInput2.

Definition at line 97 of file TriaInput2.cpp.

97  {/*{{{*/
98  _printf_("TriaInput2 Echo:\n");
99  _printf_(" interpolation: "<<EnumToStringx(this->interpolation)<<"\n");
100  _printf_(" Size: "<<M<<"x"<<N<<"\n");
101  _printf_(" isserved: "<<(isserved?"true":"false") << "\n");
102  _printf_(" isserved_collapsed: "<<isserved_collapsed << "\n");
103  if(isserved){
104  _printf_(" current values: ");
105  _printf_("[ ");
106  for(int i=0;i<TriaRef::NumberofNodes(this->interpolation);i++) _printf_(" "<<this->element_values[i]);
107  _printf_("] ("<<EnumToStringx(this->interpolation)<<")\n");
108  }
109 }

◆ Id()

int TriaInput2::Id ( void  )
virtual

Implements ElementInput2.

Definition at line 111 of file TriaInput2.cpp.

111  {/*{{{*/
112  return -1;
113 }/*}}}*/

◆ Marshall()

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

Implements ElementInput2.

Definition at line 114 of file TriaInput2.cpp.

114  { /*{{{*/
115 
119  MARSHALLING(this->interpolation);
120  MARSHALLING(this->M);
121  MARSHALLING(this->N);
122  this->isserved = false;
123  this->isserved_collapsed = 0;
124  if(this->M*this->N){
125  MARSHALLING_DYNAMIC(this->values,IssmDouble,this->M*this->N);
126  }
127  else this->values = NULL;
128 
129  if(marshall_direction == MARSHALLING_BACKWARD){
130  this->element_values = xNewZeroInit<IssmDouble>(TriaRef::NumberofNodes(this->interpolation));
131  }
132 
133 }

◆ ObjectEnum()

int TriaInput2::ObjectEnum ( void  )
virtual

Implements ElementInput2.

Definition at line 135 of file TriaInput2.cpp.

135  {/*{{{*/
136  return TriaInput2Enum;
137 }

◆ SetInput() [1/3]

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

Implements ElementInput2.

Definition at line 141 of file TriaInput2.cpp.

141  {/*{{{*/
142 
143  _assert_(this);
144  _assert_(row>=0);
145  _assert_(row<this->M);
146  _assert_(this->N==1);
147 
148  this->values[row] = value_in;
149  this->isserved = false;
150 }

◆ SetInput() [2/3]

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

Implements ElementInput2.

Definition at line 152 of file TriaInput2.cpp.

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

◆ SetInput() [3/3]

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

Implements ElementInput2.

Definition at line 188 of file TriaInput2.cpp.

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

◆ GetInterpolation()

int TriaInput2::GetInterpolation ( )
virtual

Implements ElementInput2.

Definition at line 253 of file TriaInput2.cpp.

253  {/*{{{*/
254  return this->interpolation;
255 }/*}}}*/

◆ GetInputDerivativeValue()

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

Implements ElementInput2.

Definition at line 309 of file TriaInput2.cpp.

309  {/*{{{*/
310  _assert_(this);
311  _assert_(this->isserved);
312 
313  if(this->isserved_collapsed){
314  _assert_(gauss->Enum()==GaussSegEnum);
315  if(this->interpolation==P0Enum){
316  derivativevalues[0] = 0.;
317  }
318  else{
319  SegRef temp;
320  temp.GetInputDerivativeValue(derivativevalues,this->element_values,xyz_list,(GaussSeg*)gauss,P1Enum);
321  }
322  }
323  else{
324  _assert_(gauss->Enum()==GaussTriaEnum);
325  TriaRef::GetInputDerivativeValue(derivativevalues,this->element_values,xyz_list,(GaussTria*)gauss,this->interpolation);
326  }
327 }/*}}}*/

◆ GetInputAverage()

void TriaInput2::GetInputAverage ( IssmDouble pvalue)
virtual

Reimplemented from Input2.

Definition at line 256 of file TriaInput2.cpp.

256  {/*{{{*/
257  _assert_(this);
258  _assert_(this->isserved);
259 
260  int numnodes = this->NumberofNodes(this->interpolation);
261  if(this->isserved_collapsed) numnodes = 2;
262  IssmDouble numnodesd = reCast<int,IssmDouble>(numnodes);
263  IssmDouble value = 0.;
264 
265  for(int i=0;i<numnodes;i++) value+=this->element_values[i];
266  value = value/numnodesd;
267 
268  *pvalue=value;
269 }/*}}}*/

◆ GetInputMin()

IssmDouble TriaInput2::GetInputMin ( void  )
virtual

Reimplemented from Input2.

Definition at line 270 of file TriaInput2.cpp.

270  {/*{{{*/
271  _assert_(this);
272  _assert_(this->isserved);
273 
274  int numnodes = this->NumberofNodes(this->interpolation);
275  if(this->isserved_collapsed) numnodes = 2;
276  IssmDouble min=this->element_values[0];
277 
278  for(int i=1;i<numnodes;i++){
279  if(this->element_values[i]<min) min=this->element_values[i];
280  }
281  return min;
282 }/*}}}*/

◆ GetInputMax()

IssmDouble TriaInput2::GetInputMax ( void  )
virtual

Reimplemented from Input2.

Definition at line 283 of file TriaInput2.cpp.

283  {/*{{{*/
284  _assert_(this);
285  _assert_(this->isserved);
286 
287  int numnodes = this->NumberofNodes(this->interpolation);
288  if(this->isserved_collapsed) numnodes = 2;
289  IssmDouble max=this->element_values[0];
290 
291  for(int i=1;i<numnodes;i++){
292  if(this->element_values[i]>max) max=this->element_values[i];
293  }
294  return max;
295 }/*}}}*/

◆ GetInputMaxAbs()

IssmDouble TriaInput2::GetInputMaxAbs ( void  )
virtual

Reimplemented from Input2.

Definition at line 296 of file TriaInput2.cpp.

296  {/*{{{*/
297  _assert_(this);
298  _assert_(this->isserved);
299 
300  int numnodes = this->NumberofNodes(this->interpolation);
301  if(this->isserved_collapsed) numnodes = 2;
302  IssmDouble maxabs=fabs(this->element_values[0]);
303 
304  for(int i=1;i<numnodes;i++){
305  if(fabs(this->element_values[i])>maxabs) maxabs=fabs(this->element_values[i]);
306  }
307  return maxabs;
308 }/*}}}*/

◆ GetTriaInput()

TriaInput2* TriaInput2::GetTriaInput ( )
inlinevirtual

Reimplemented from Input2.

Definition at line 37 of file TriaInput2.h.

37 {return this;};

◆ GetInputValue()

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

Implements ElementInput2.

Definition at line 328 of file TriaInput2.cpp.

328  {/*{{{*/
329  _assert_(this);
330  _assert_(this->isserved);
331  if(this->isserved_collapsed){
332  _assert_(gauss->Enum()==GaussSegEnum);
333  if(this->interpolation==P0Enum){
334  *pvalue = this->element_values[0];
335  }
336  else{
337  SegRef temp;
338  temp.GetInputValue(pvalue,this->element_values,(GaussSeg*)gauss,P1Enum);
339  }
340  }
341  else{
342  _assert_(gauss->Enum()==GaussTriaEnum);
343  TriaRef::GetInputValue(pvalue,this->element_values,(GaussTria*)gauss,this->interpolation);
344  }
345 }/*}}}*/

◆ Scale()

void TriaInput2::Scale ( IssmDouble  scalar)
virtual

Reimplemented from Input2.

Definition at line 360 of file TriaInput2.cpp.

360  {/*{{{*/
361 
362  for(int i=0;i<this->M*this->N;i++) this->values[i] = alpha*this->values[i];
363  for(int i=0;i<TriaRef::NumberofNodes(this->interpolation);i++) this->element_values[i] = alpha*this->element_values[i];
364 }

◆ Pow()

void TriaInput2::Pow ( IssmDouble  scalar)
virtual

Reimplemented from Input2.

Definition at line 366 of file TriaInput2.cpp.

366  {/*{{{*/
367 
368  for(int i=0;i<this->M*this->N;i++) this->values[i] = pow(this->values[i],alpha);
369  for(int i=0;i<TriaRef::NumberofNodes(this->interpolation);i++) this->element_values[i] = pow(this->element_values[i],alpha);
370 }

◆ AXPY()

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

Reimplemented from Input2.

Definition at line 372 of file TriaInput2.cpp.

372  {/*{{{*/
373 
374  /*xinput is of the same type, so cast it: */
375  if(xinput->ObjectEnum()!=TriaInput2Enum) _error_("Operation not permitted because xinput is of type " << EnumToStringx(xinput->ObjectEnum()));
376  TriaInput2* xtriainput=xDynamicCast<TriaInput2*>(xinput);
377  if(xtriainput->GetInterpolation()!=this->interpolation) _error_("Operation not permitted because xinput is of type " << EnumToStringx(xinput->ObjectEnum()));
378 
379  /*Carry out the AXPY operation depending on type:*/
380  for(int i=0;i<this->M*this->N;i++) this->values[i] = alpha*xtriainput->values[i] + this->values[i];
381  for(int i=0;i<TriaRef::NumberofNodes(this->interpolation);i++) this->element_values[i] = alpha*xtriainput->element_values[i] + this->element_values[i];
382 }

◆ PointWiseMult()

void TriaInput2::PointWiseMult ( Input2 xinput)
virtual

Reimplemented from Input2.

Definition at line 384 of file TriaInput2.cpp.

384  {/*{{{*/
385 
386  /*xinput is of the same type, so cast it: */
387  if(xinput->ObjectEnum()!=TriaInput2Enum) _error_("Operation not permitted because xinput is of type " << EnumToStringx(xinput->ObjectEnum()));
388  TriaInput2* xtriainput=xDynamicCast<TriaInput2*>(xinput);
389  if(xtriainput->GetInterpolation()!=this->interpolation) _error_("Operation not permitted because xinput is of type " << EnumToStringx(xinput->ObjectEnum()));
390 
391  /* we need to check that the vector sizes are identical*/
392  if(xtriainput->M!=this->M||xtriainput->N!=this->N) _error_("Operation not permitted because the inputs have different sizes");
393 
394  /*Carry out the AXPY operation depending on type:*/
395  for(int i=0;i<this->M*this->N;i++) this->values[i] = xtriainput->values[i] * this->values[i];
396  for(int i=0;i<TriaRef::NumberofNodes(this->interpolation);i++) this->element_values[i] = xtriainput->element_values[i] * this->element_values[i];
397 }

◆ Serve() [1/2]

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

Implements ElementInput2.

Definition at line 202 of file TriaInput2.cpp.

202  {/*{{{*/
203 
204  _assert_(this);
205  _assert_(this->N==1);
206 
207  for(int i=0;i<numindices;i++){
208  int row = indices[i];
209  _assert_(row>=0);
210  _assert_(row<this->M);
211  this->element_values[i] = this->values[row];
212  }
213 
214  /*Set input as served*/
215  this->isserved = true;
216  this->isserved_collapsed = 0;
217 }

◆ Serve() [2/2]

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

Implements ElementInput2.

Definition at line 219 of file TriaInput2.cpp.

219  {/*{{{*/
220 
221  _assert_(this);
222  _assert_(this->N==numindices);
223  _assert_(row<this->M);
224  _assert_(row>=0);
225 
226  for(int i=0;i<numindices;i++){
227  this->element_values[i] = this->values[row*this->N+i];
228  }
229 
230  /*Set input as served*/
231  this->isserved = true;
232  this->isserved_collapsed = 0;
233 } /*}}}*/

◆ ServeCollapsed()

void TriaInput2::ServeCollapsed ( int  row,
int  id0,
int  in1 
)

Definition at line 234 of file TriaInput2.cpp.

234  {/*{{{*/
235 
236  _assert_(this);
237  _assert_(this->N>=3);
238  _assert_(row<this->M);
239  _assert_(row>=0);
240  _assert_(id1>=0 && id1<3);
241  _assert_(id2>=0 && id2<3);
242 
243  this->element_values[0] = this->values[row*this->N+id1];
244  this->element_values[1] = this->values[row*this->N+id2];
245 
246  /*Set input as served*/
247  this->isserved = true;
248  this->isserved_collapsed = 1;
249 }/*}}}*/

◆ SetServeCollapsed()

void TriaInput2::SetServeCollapsed ( bool  status)

Definition at line 250 of file TriaInput2.cpp.

250  {/*{{{*/
251  this->isserved_collapsed = 1;
252 }/*}}}*/

◆ GetResultArraySize()

int TriaInput2::GetResultArraySize ( void  )
virtual

Implements ElementInput2.

Definition at line 346 of file TriaInput2.cpp.

346  {/*{{{*/
347  return 1;
348 }

◆ GetResultInterpolation()

int TriaInput2::GetResultInterpolation ( void  )
virtual

Implements ElementInput2.

Definition at line 350 of file TriaInput2.cpp.

350  {/*{{{*/
351  if(this->interpolation==P0Enum || this->interpolation==P0DGEnum){
352  return P0Enum;
353  }
354  return P1Enum;
355 }/*}}}*/

◆ GetResultNumberOfNodes()

int TriaInput2::GetResultNumberOfNodes ( void  )
virtual

Implements ElementInput2.

Definition at line 356 of file TriaInput2.cpp.

356  {/*{{{*/
357  return this->N;
358 }

◆ Reset()

void TriaInput2::Reset ( int  interp_in)

Definition at line 47 of file TriaInput2.cpp.

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

Field Documentation

◆ isserved_collapsed

int TriaInput2::isserved_collapsed
private

Definition at line 11 of file TriaInput2.h.

◆ collapsed_ids

int TriaInput2::collapsed_ids[2]
private

Definition at line 12 of file TriaInput2.h.


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
Definition: SegRef.h:12
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
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
GaussTria
Definition: GaussTria.h:12
TriaInput2Enum
@ TriaInput2Enum
Definition: EnumDefinitions.h:1124
EnumToStringx
const char * EnumToStringx(int enum_in)
Definition: EnumToStringx.cpp:15
TriaInput2
Definition: TriaInput2.h:8
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
TriaInput2::GetInterpolation
int GetInterpolation()
Definition: TriaInput2.cpp:253
TriaRef::GetInputDerivativeValue
void GetInputDerivativeValue(IssmDouble *pp, IssmDouble *plist, IssmDouble *xyz_list, Gauss *gauss, int finiteelement)
Definition: TriaRef.cpp:34
SegRef::GetInputDerivativeValue
void GetInputDerivativeValue(IssmDouble *p, IssmDouble *plist, IssmDouble *xyz_list, GaussSeg *gauss, int finiteelement)
Definition: SegRef.cpp:31
TriaInput2::isserved_collapsed
int isserved_collapsed
Definition: TriaInput2.h:11
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
TriaRef::GetInputValue
void GetInputValue(IssmDouble *pp, IssmDouble *plist, Gauss *gauss, int finiteelement)
Definition: TriaRef.cpp:68
GaussTriaEnum
@ GaussTriaEnum
Definition: EnumDefinitions.h:1081
TriaRef::NumberofNodes
int NumberofNodes(int finiteelement)
Definition: TriaRef.cpp:463
ElementInput2::element_values
IssmDouble * element_values
Definition: ElementInput2.h:18
ElementInput2::numberofvertices_local
int numberofvertices_local
Definition: ElementInput2.h:11
TriaInput2::Reset
void Reset(int interp_in)
Definition: TriaInput2.cpp:47
ElementInput2::M
int M
Definition: ElementInput2.h:13
max
IssmDouble max(IssmDouble a, IssmDouble b)
Definition: extrema.cpp:24
GaussSeg
Definition: GaussSeg.h:12
ElementInput2::isserved
bool isserved
Definition: ElementInput2.h:14
TriaInput2::TriaInput2
TriaInput2()
Definition: TriaInput2.cpp:16