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

#include <ArrayInput2.h>

Inheritance diagram for ArrayInput2:
Input2 Object

Public Member Functions

 ArrayInput2 ()
 
 ArrayInput2 (int nbe_in)
 
 ~ArrayInput2 ()
 
Input2copy ()
 
void DeepEcho ()
 
void Echo ()
 
int Id ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
int ObjectEnum ()
 
void SetInput (int row, int numinds, IssmDouble *values_in)
 
void GetArray (int row, IssmDouble **pvalues, int *pN)
 
void GetArrayPtr (int row, IssmDouble **pvalues, int *pN)
 
- 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 void GetInputDerivativeValue (IssmDouble *derivativevalues, IssmDouble *xyz_list, Gauss *gauss)
 
virtual void GetInputValue (IssmDouble *pvalue, Gauss *gauss)
 
virtual int GetInputInterpolationType ()
 
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)
 
virtual int GetResultArraySize (void)
 
virtual int GetResultInterpolation (void)
 
virtual int GetResultNumberOfNodes (void)
 
- Public Member Functions inherited from Object
virtual ~Object ()
 

Private Attributes

int numberofelements_local
 
int * N
 
IssmDouble ** values
 

Detailed Description

Definition at line 7 of file ArrayInput2.h.

Constructor & Destructor Documentation

◆ ArrayInput2() [1/2]

ArrayInput2::ArrayInput2 ( void  )

Definition at line 16 of file ArrayInput2.cpp.

16  {/*{{{*/
17 
18  this->numberofelements_local = -1;
19  this->N = NULL;
20  this->values = NULL;
21 
22 }/*}}}*/

◆ ArrayInput2() [2/2]

ArrayInput2::ArrayInput2 ( int  nbe_in)

Definition at line 23 of file ArrayInput2.cpp.

23  {/*{{{*/
24 
25  _assert_(nbe_in>0);
26  _assert_(nbe_in<1e11);
27  this->numberofelements_local = nbe_in;
28  this->N = xNewZeroInit<int>(this->numberofelements_local);
29  this->values = xNewZeroInit<IssmDouble*>(this->numberofelements_local);
30 
31 }/*}}}*/

◆ ~ArrayInput2()

ArrayInput2::~ArrayInput2 ( )

Definition at line 32 of file ArrayInput2.cpp.

32  {/*{{{*/
33  if(this->values){
34  for(int i=0;i<this->numberofelements_local;i++) if(this->values[i]) xDelete<IssmDouble>(this->values[i]);
35  xDelete<IssmDouble>(this->values);
36  }
37  if(this->N) xDelete<int>(this->N);
38 }

Member Function Documentation

◆ copy()

Input2 * ArrayInput2::copy ( void  )
virtual

Implements Input2.

Definition at line 42 of file ArrayInput2.cpp.

42  {/*{{{*/
43 
44  ArrayInput2* output = new ArrayInput2(this->numberofelements_local);
45 
46  output->N = xNew<int>(this->numberofelements_local);
47  xMemCpy<int>(output->N,this->N,this->numberofelements_local);
48 
49  output->values = xNew<IssmDouble*>(this->numberofelements_local);
50  for(int i=0;i<this->numberofelements_local;i++){
51  if(this->values[i]){
52  _assert_(this->N[i]>0);
53  output->values[i] = xNew<IssmDouble>(this->N[i]);
54  xMemCpy<IssmDouble>(output->values[i],this->values[i],this->N[i]);
55  }
56  else{
57  output->values[i] = NULL;
58  }
59  }
60 
61  return output;
62 }

◆ DeepEcho()

void ArrayInput2::DeepEcho ( void  )
virtual

printf(" Size: "<<N<<"\n");

Implements Object.

Definition at line 64 of file ArrayInput2.cpp.

64  {/*{{{*/
65  _printf_("ArrayInput2 Echo:\n");
67  //printarray(this->values,this->M,this->N);
68  //_printf_(setw(15)<<" ArrayInput2 "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" "<<(value?"true":"false") << "\n");
69 }

◆ Echo()

void ArrayInput2::Echo ( void  )
virtual

Implements Object.

Definition at line 71 of file ArrayInput2.cpp.

71  {/*{{{*/
72  this->DeepEcho();
73 }

◆ Id()

int ArrayInput2::Id ( void  )
virtual

Implements Object.

Definition at line 75 of file ArrayInput2.cpp.

75  {/*{{{*/
76  return -1;
77 }/*}}}*/

◆ Marshall()

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

Implements Object.

Definition at line 78 of file ArrayInput2.cpp.

78  { /*{{{*/
79 
82  if(this->numberofelements_local){
84  for(int i=0;i<this->numberofelements_local;i++){
85  if(this->values[i]){
86  MARSHALLING_DYNAMIC(this->values[i],IssmDouble,this->N[i]);
87  }
88  }
89  }
90  else{
91  this->N = NULL;
92  this->values = NULL;
93  }
94 
95 }

◆ ObjectEnum()

int ArrayInput2::ObjectEnum ( void  )
virtual

Implements Object.

Definition at line 97 of file ArrayInput2.cpp.

97  {/*{{{*/
98  return ArrayInput2Enum;
99 }

◆ SetInput()

void ArrayInput2::SetInput ( int  row,
int  numinds,
IssmDouble values_in 
)

Definition at line 103 of file ArrayInput2.cpp.

103  {/*{{{*/
104 
105  _assert_(this);
106  _assert_(row>=0 && row<this->numberofelements_local);
107 
108  if(this->N[row] != numindices){
109  if(this->values[row]) xDelete<IssmDouble>(this->values[row]);
110  this->values[row] = xNew<IssmDouble>(numindices);
111  }
112 
113  IssmDouble *el_values = this->values[row];
114  for(int i=0;i<numindices;i++) el_values[i] = values_in[i];
115 
116  this->N[row] = numindices;
117 }

◆ GetArray()

void ArrayInput2::GetArray ( int  row,
IssmDouble **  pvalues,
int *  pN 
)

Definition at line 119 of file ArrayInput2.cpp.

119  {/*{{{*/
120 
121  _assert_(this);
122  _assert_(row>=0 && row<this->numberofelements_local);
123  if(pvalues){
124  IssmDouble* outvalues = xNew<IssmDouble>(this->N[row]);
125  xMemCpy<IssmDouble>(outvalues,this->values[row],this->N[row]);
126  *pvalues = outvalues;
127  }
128  if(pN){
129  *pN = this->N[row];
130  }
131 }

◆ GetArrayPtr()

void ArrayInput2::GetArrayPtr ( int  row,
IssmDouble **  pvalues,
int *  pN 
)

Definition at line 133 of file ArrayInput2.cpp.

133  {/*{{{*/
134 
135  _assert_(this);
136  _assert_(row>=0 && row<this->numberofelements_local);
137  if(pvalues){
138  *pvalues = this->values[row];
139  }
140  if(pN){
141  *pN = this->N[row];
142  }
143 }

Field Documentation

◆ numberofelements_local

int ArrayInput2::numberofelements_local
private

Definition at line 10 of file ArrayInput2.h.

◆ N

int* ArrayInput2::N
private

Definition at line 11 of file ArrayInput2.h.

◆ values

IssmDouble** ArrayInput2::values
private

Definition at line 12 of file ArrayInput2.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
ArrayInput2::values
IssmDouble ** values
Definition: ArrayInput2.h:12
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
ArrayInput2::N
int * N
Definition: ArrayInput2.h:11
MARSHALLING_DYNAMIC
#define MARSHALLING_DYNAMIC(FIELD, TYPE, SIZE)
Definition: Marshalling.h:61
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
ArrayInput2
Definition: ArrayInput2.h:7
ArrayInput2::numberofelements_local
int numberofelements_local
Definition: ArrayInput2.h:10
ArrayInput2Enum
@ ArrayInput2Enum
Definition: EnumDefinitions.h:1041
ArrayInput2::ArrayInput2
ArrayInput2()
Definition: ArrayInput2.cpp:16
ArrayInput2::DeepEcho
void DeepEcho()
Definition: ArrayInput2.cpp:64