#include <ArrayInput2.h>
|
| ArrayInput2 () |
|
| ArrayInput2 (int nbe_in) |
|
| ~ArrayInput2 () |
|
Input2 * | copy () |
|
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) |
|
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 SegInput2 * | GetSegInput () |
|
virtual TriaInput2 * | GetTriaInput () |
|
virtual PentaInput2 * | GetPentaInput () |
|
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) |
|
virtual | ~Object () |
|
Definition at line 7 of file ArrayInput2.h.
◆ ArrayInput2() [1/2]
ArrayInput2::ArrayInput2 |
( |
void |
| ) |
|
◆ ArrayInput2() [2/2]
ArrayInput2::ArrayInput2 |
( |
int |
nbe_in | ) |
|
◆ ~ArrayInput2()
ArrayInput2::~ArrayInput2 |
( |
| ) |
|
◆ copy()
Input2 * ArrayInput2::copy |
( |
void |
| ) |
|
|
virtual |
Implements Input2.
Definition at line 42 of file ArrayInput2.cpp.
47 xMemCpy<int>(output->
N,this->N,this->numberofelements_local);
53 output->
values[i] = xNew<IssmDouble>(this->
N[i]);
54 xMemCpy<IssmDouble>(output->
values[i],this->values[i],this->N[i]);
◆ DeepEcho()
void ArrayInput2::DeepEcho |
( |
void |
| ) |
|
|
virtual |
◆ Echo()
void ArrayInput2::Echo |
( |
void |
| ) |
|
|
virtual |
◆ Id()
int ArrayInput2::Id |
( |
void |
| ) |
|
|
virtual |
◆ Marshall()
void ArrayInput2::Marshall |
( |
char ** |
pmarshalled_data, |
|
|
int * |
pmarshalled_data_size, |
|
|
int |
marshall_direction |
|
) |
| |
|
virtual |
◆ ObjectEnum()
int ArrayInput2::ObjectEnum |
( |
void |
| ) |
|
|
virtual |
◆ SetInput()
void ArrayInput2::SetInput |
( |
int |
row, |
|
|
int |
numinds, |
|
|
IssmDouble * |
values_in |
|
) |
| |
Definition at line 103 of file ArrayInput2.cpp.
108 if(this->
N[row] != numindices){
109 if(this->
values[row]) xDelete<IssmDouble>(this->
values[row]);
110 this->
values[row] = xNew<IssmDouble>(numindices);
114 for(
int i=0;i<numindices;i++) el_values[i] = values_in[i];
116 this->
N[row] = numindices;
◆ GetArray()
void ArrayInput2::GetArray |
( |
int |
row, |
|
|
IssmDouble ** |
pvalues, |
|
|
int * |
pN |
|
) |
| |
Definition at line 119 of file ArrayInput2.cpp.
124 IssmDouble* outvalues = xNew<IssmDouble>(this->
N[row]);
125 xMemCpy<IssmDouble>(outvalues,this->
values[row],this->
N[row]);
126 *pvalues = outvalues;
◆ GetArrayPtr()
void ArrayInput2::GetArrayPtr |
( |
int |
row, |
|
|
IssmDouble ** |
pvalues, |
|
|
int * |
pN |
|
) |
| |
◆ numberofelements_local
int ArrayInput2::numberofelements_local |
|
private |
◆ values
The documentation for this class was generated from the following files: