Ice Sheet System Model  4.18
Code documentation
SegInput2.cpp
Go to the documentation of this file.
1 
5 #ifdef HAVE_CONFIG_H
6  #include <config.h>
7 #else
8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
9 #endif
10 
11 #include "../classes.h"
12 #include "../../shared/shared.h"
13 #include "./SegInput2.h"
14 
15 /*SegInput2 constructors and destructor*/
16 SegInput2::SegInput2(void){/*{{{*/
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 }/*}}}*/
27 SegInput2::SegInput2(int nbe_in,int nbv_in,int interp_in){/*{{{*/
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 }/*}}}*/
41  if(this->element_values) xDelete<IssmDouble>(this->element_values);
42  if(this->values) xDelete<IssmDouble>(this->values);
43 }
44 /*}}}*/
45 void SegInput2::Reset(int interp_in){/*{{{*/
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 }/*}}}*/
68 
69 /*Object virtual functions definitions:*/
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 }
79 /*}}}*/
80 void SegInput2::DeepEcho(void){/*{{{*/
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 }
93 /*}}}*/
94 void SegInput2::Echo(void){/*{{{*/
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 }
106 /*}}}*/
107 int SegInput2::Id(void){/*{{{*/
108  return -1;
109 }/*}}}*/
110 void SegInput2::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
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 }
129 /*}}}*/
130 int SegInput2::ObjectEnum(void){/*{{{*/
131  return SegInput2Enum;
132 }
133 /*}}}*/
134 
135 /*SegInput2 management*/
136 void SegInput2::SetInput(int interp_in,int row,IssmDouble value_in){/*{{{*/
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 }
146 /*}}}*/
147 void SegInput2::SetInput(int interp_in,int numindices,int* indices,IssmDouble* values_in){/*{{{*/
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 }
182 /*}}}*/
183 void SegInput2::SetInput(int interp_in,int row,int numindices,IssmDouble* values_in){/*{{{*/
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 }
196 /*}}}*/
197 void SegInput2::Serve(int numindices,int* indices){/*{{{*/
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 }
212 /*}}}*/
213 void SegInput2::Serve(int row,int numindices){/*{{{*/
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 } /*}}}*/
228  return this->interpolation;
229 }/*}}}*/
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 }/*}}}*/
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 }/*}}}*/
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 }/*}}}*/
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 }/*}}}*/
279 void SegInput2::GetInputDerivativeValue(IssmDouble* derivativevalues, IssmDouble* xyz_list, Gauss* gauss){/*{{{*/
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 }/*}}}*/
285 void SegInput2::GetInputValue(IssmDouble* pvalue,Gauss* gauss){/*{{{*/
286  _assert_(this);
287  _assert_(this->isserved);
288  _assert_(gauss->Enum()==GaussSegEnum);
289  SegRef::GetInputValue(pvalue,this->element_values,(GaussSeg*)gauss,this->interpolation);
290 }/*}}}*/
292  return 1;
293 }
294 /*}}}*/
296  if(this->interpolation==P0Enum || this->interpolation==P0DGEnum){
297  return P0Enum;
298  }
299  return P1Enum;
300 }/*}}}*/
302  return this->N;
303 }
304 /*}}}*/
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 }
310 /*}}}*/
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 }
316 /*}}}*/
317 void SegInput2::AXPY(Input2* xinput,IssmDouble alpha){/*{{{*/
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 }
328 /*}}}*/
329 void SegInput2::PointWiseMult(Input2* xinput){/*{{{*/
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 }
343 /*}}}*/
344 
345 /*Object functions*/
SegInput2::Echo
void Echo()
Definition: SegInput2.cpp:94
_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
SegInput2::GetInputMin
IssmDouble GetInputMin()
Definition: SegInput2.cpp:243
SegInput2::GetInputDerivativeValue
void GetInputDerivativeValue(IssmDouble *derivativevalues, IssmDouble *xyz_list, Gauss *gauss)
Definition: SegInput2.cpp:279
SegInput2::SetInput
void SetInput(int interp_in, int row, IssmDouble value_in)
Definition: SegInput2.cpp:136
ElementInput2::interpolation
int interpolation
Definition: ElementInput2.h:12
SegInput2::GetResultNumberOfNodes
int GetResultNumberOfNodes(void)
Definition: SegInput2.cpp:301
SegInput2
Definition: SegInput2.h:8
SegInput2::SegInput2
SegInput2()
Definition: SegInput2.cpp:16
SegInput2::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: SegInput2.cpp:110
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
SegInput2::Serve
void Serve(int numindices, int *indices)
Definition: SegInput2.cpp:197
SegInput2::AXPY
void AXPY(Input2 *xinput, IssmDouble scalar)
Definition: SegInput2.cpp:317
SegInput2::PointWiseMult
void PointWiseMult(Input2 *xinput)
Definition: SegInput2.cpp:329
EnumToStringx
const char * EnumToStringx(int enum_in)
Definition: EnumToStringx.cpp:15
SegInput2::~SegInput2
~SegInput2()
Definition: SegInput2.cpp:40
alpha
IssmDouble alpha(IssmDouble x, IssmDouble y, IssmDouble z, int testid)
Definition: fsanalyticals.cpp:221
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
SegInput2::Pow
void Pow(IssmDouble scalar)
Definition: SegInput2.cpp:311
ElementInput2::values
IssmDouble * values
Definition: ElementInput2.h:15
SegInput2::GetResultArraySize
int GetResultArraySize(void)
Definition: SegInput2.cpp:291
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
Input2
Definition: Input2.h:18
SegInput2::Scale
void Scale(IssmDouble scalar)
Definition: SegInput2.cpp:305
MARSHALLING_BACKWARD
@ MARSHALLING_BACKWARD
Definition: Marshalling.h:10
SegInput2::copy
Input2 * copy()
Definition: SegInput2.cpp:70
SegInput2::ObjectEnum
int ObjectEnum()
Definition: SegInput2.cpp:130
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
printarray
void printarray(IssmPDouble *array, int lines, int cols=1)
Definition: PrintArrays.cpp:6
SegInput2.h
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
SegInput2::GetInputMaxAbs
IssmDouble GetInputMaxAbs()
Definition: SegInput2.cpp:267
SegInput2::DeepEcho
void DeepEcho()
Definition: SegInput2.cpp:80
SegInput2::Id
int Id()
Definition: SegInput2.cpp:107
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
SegInput2::GetInputValue
void GetInputValue(IssmDouble *pvalue, Gauss *gauss)
Definition: SegInput2.cpp:285
GaussSeg
Definition: GaussSeg.h:12
ElementInput2::isserved
bool isserved
Definition: ElementInput2.h:14
SegInput2::GetResultInterpolation
int GetResultInterpolation(void)
Definition: SegInput2.cpp:295
Gauss
Definition: Gauss.h:8
SegInput2::GetInputAverage
void GetInputAverage(IssmDouble *pvalue)
Definition: SegInput2.cpp:230
SegInput2::GetInputMax
IssmDouble GetInputMax()
Definition: SegInput2.cpp:255