Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Data Fields | Protected Attributes
ElementInput2 Class Referenceabstract

#include <ElementInput2.h>

Inheritance diagram for ElementInput2:
Input2 Object PentaInput2 SegInput2 TriaInput2

Public Member Functions

 ElementInput2 ()
 
 ~ElementInput2 ()
 
int GetInputInterpolationType ()
 
virtual Input2copy ()=0
 
virtual void DeepEcho ()=0
 
virtual void Echo ()=0
 
virtual int Id ()=0
 
virtual void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)=0
 
virtual int ObjectEnum ()=0
 
virtual void SetInput (int interp_in, int row, IssmDouble value_in)=0
 
virtual void SetInput (int interp_in, int numinds, int *rows, IssmDouble *values_in)=0
 
virtual void SetInput (int interp_in, int row, int numinds, IssmDouble *values_in)=0
 
virtual int GetInterpolation ()=0
 
virtual void GetInputDerivativeValue (IssmDouble *derivativevalues, IssmDouble *xyz_list, Gauss *gauss)=0
 
virtual void GetInputValue (IssmDouble *pvalue, Gauss *gauss)=0
 
virtual void Serve (int numindices, int *indices)=0
 
virtual void Serve (int row, int numindices)=0
 
virtual int GetResultArraySize (void)=0
 
virtual int GetResultInterpolation (void)=0
 
virtual int GetResultNumberOfNodes (void)=0
 
- Public Member Functions inherited from Input2
int InstanceEnum ()
 
void ChangeEnum (int newenumtype)
 
virtual ~Input2 ()
 
virtual void Configure (Parameters *parameters)
 
virtual void GetInputAverage (IssmDouble *pvalue)
 
virtual IssmDouble GetInputMax (void)
 
virtual IssmDouble GetInputMaxAbs (void)
 
virtual IssmDouble GetInputMin (void)
 
virtual SegInput2GetSegInput ()
 
virtual TriaInput2GetTriaInput ()
 
virtual PentaInput2GetPentaInput ()
 
virtual void AXPY (Input2 *xinput, IssmDouble scalar)
 
virtual void PointWiseMult (Input2 *xinput)
 
virtual void Pow (IssmDouble scale_factor)
 
virtual void Scale (IssmDouble scale_factor)
 
- Public Member Functions inherited from Object
virtual ~Object ()
 

Data Fields

IssmDoubleelement_values
 

Protected Attributes

int numberofelements_local
 
int numberofvertices_local
 
int interpolation
 
int M
 
int N
 
bool isserved
 
IssmDoublevalues
 

Detailed Description

Definition at line 7 of file ElementInput2.h.

Constructor & Destructor Documentation

◆ ElementInput2()

ElementInput2::ElementInput2 ( )

Definition at line 16 of file ElementInput2.cpp.

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

◆ ~ElementInput2()

ElementInput2::~ElementInput2 ( )

Definition at line 25 of file ElementInput2.cpp.

25  {/*{{{*/
26  if(this->element_values) xDelete<IssmDouble>(this->element_values);
27  if(this->values) xDelete<IssmDouble>(this->values);
28 }

Member Function Documentation

◆ GetInputInterpolationType()

int ElementInput2::GetInputInterpolationType ( void  )
virtual

Reimplemented from Input2.

Definition at line 32 of file ElementInput2.cpp.

32  {/*{{{*/
33 
34  return this->interpolation;
35 
36 }/*}}}*/

◆ copy()

virtual Input2* ElementInput2::copy ( )
pure virtual

Implements Input2.

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ DeepEcho()

virtual void ElementInput2::DeepEcho ( )
pure virtual

Implements Object.

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ Echo()

virtual void ElementInput2::Echo ( )
pure virtual

Implements Object.

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ Id()

virtual int ElementInput2::Id ( )
pure virtual

Implements Object.

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ Marshall()

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

Implements Object.

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ ObjectEnum()

virtual int ElementInput2::ObjectEnum ( )
pure virtual

Implements Object.

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ SetInput() [1/3]

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

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ SetInput() [2/3]

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

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ SetInput() [3/3]

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

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ GetInterpolation()

virtual int ElementInput2::GetInterpolation ( )
pure virtual

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ GetInputDerivativeValue()

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

Reimplemented from Input2.

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ GetInputValue()

virtual void ElementInput2::GetInputValue ( IssmDouble pvalue,
Gauss gauss 
)
pure virtual

Reimplemented from Input2.

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ Serve() [1/2]

virtual void ElementInput2::Serve ( int  numindices,
int *  indices 
)
pure virtual

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ Serve() [2/2]

virtual void ElementInput2::Serve ( int  row,
int  numindices 
)
pure virtual

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ GetResultArraySize()

virtual int ElementInput2::GetResultArraySize ( void  )
pure virtual

Reimplemented from Input2.

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ GetResultInterpolation()

virtual int ElementInput2::GetResultInterpolation ( void  )
pure virtual

Reimplemented from Input2.

Implemented in TriaInput2, SegInput2, and PentaInput2.

◆ GetResultNumberOfNodes()

virtual int ElementInput2::GetResultNumberOfNodes ( void  )
pure virtual

Reimplemented from Input2.

Implemented in TriaInput2, SegInput2, and PentaInput2.

Field Documentation

◆ numberofelements_local

int ElementInput2::numberofelements_local
protected

Definition at line 10 of file ElementInput2.h.

◆ numberofvertices_local

int ElementInput2::numberofvertices_local
protected

Definition at line 11 of file ElementInput2.h.

◆ interpolation

int ElementInput2::interpolation
protected

Definition at line 12 of file ElementInput2.h.

◆ M

int ElementInput2::M
protected

Definition at line 13 of file ElementInput2.h.

◆ N

int ElementInput2::N
protected

Definition at line 13 of file ElementInput2.h.

◆ isserved

bool ElementInput2::isserved
protected

Definition at line 14 of file ElementInput2.h.

◆ values

IssmDouble* ElementInput2::values
protected

Definition at line 15 of file ElementInput2.h.

◆ element_values

IssmDouble* ElementInput2::element_values

Definition at line 18 of file ElementInput2.h.


The documentation for this class was generated from the following files:
ElementInput2::interpolation
int interpolation
Definition: ElementInput2.h:12
ElementInput2::values
IssmDouble * values
Definition: ElementInput2.h:15
ElementInput2::N
int N
Definition: ElementInput2.h:13
ElementInput2::element_values
IssmDouble * element_values
Definition: ElementInput2.h:18
ElementInput2::M
int M
Definition: ElementInput2.h:13
ElementInput2::isserved
bool isserved
Definition: ElementInput2.h:14