Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Data Fields | Private Attributes
TransientInput2 Class Reference

#include <TransientInput2.h>

Inheritance diagram for TransientInput2:
Input2 Object

Public Member Functions

 TransientInput2 ()
 
 TransientInput2 (int in_enum_type, int nbe, int nbv, IssmDouble *times, int N)
 
 ~TransientInput2 ()
 
void AddTimeInput (Input2 *input, IssmDouble time)
 
void AddTriaTimeInput (IssmDouble time, int numindices, int *indices, IssmDouble *values_in, int interp_in)
 
void AddPentaTimeInput (IssmDouble time, int numindices, int *indices, IssmDouble *values_in, int interp_in)
 
void AddTriaTimeInput (int step, int numindices, int *indices, IssmDouble *values_in, int interp_in)
 
void AddPentaTimeInput (int step, int numindices, int *indices, IssmDouble *values_in, int interp_in)
 
Input2copy ()
 
void Configure (Parameters *params)
 
void DeepEcho ()
 
void Echo ()
 
int Id ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
int ObjectEnum ()
 
void GetAllTimes (IssmDouble **ptimesteps, int *pnumtimesteps)
 
TriaInput2GetTriaInput ()
 
TriaInput2GetTriaInput (IssmDouble time)
 
TriaInput2GetTriaInput (IssmDouble start_time, IssmDouble end_time, int averaging_method)
 
TriaInput2GetTriaInput (int offset)
 
PentaInput2GetPentaInput ()
 
PentaInput2GetPentaInput (IssmDouble time)
 
PentaInput2GetPentaInput (int offset)
 
PentaInput2GetPentaInput (IssmDouble start_time, IssmDouble end_time, int averaging_method)
 
Input2GetTimeInput (IssmDouble time)
 
IssmDouble GetTimeByOffset (int offset)
 
int GetTimeInputOffset (IssmDouble time)
 
void SetCurrentTimeInput (IssmDouble time)
 
void SetAverageAsCurrentTimeInput (IssmDouble start_time, IssmDouble end_time, int averaging_method)
 
- Public Member Functions inherited from Input2
int InstanceEnum ()
 
void ChangeEnum (int newenumtype)
 
virtual ~Input2 ()
 
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 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 ()
 

Data Fields

int enum_type
 
int numtimesteps
 
Input2 ** inputs
 
IssmDoubletimesteps
 
Parametersparameters
 
IssmDouble current_step
 
Input2current_input
 

Private Attributes

int numberofelements_local
 
int numberofvertices_local
 

Detailed Description

Definition at line 13 of file TransientInput2.h.

Constructor & Destructor Documentation

◆ TransientInput2() [1/2]

TransientInput2::TransientInput2 ( )

Definition at line 18 of file TransientInput2.cpp.

18  {/*{{{*/
19 
21  inputs=NULL;
22  this->numtimesteps=0;
23  this->parameters=NULL;
24  this->timesteps=NULL;
25 
26  this->current_input=NULL;
27  this->current_step=-1;
28 
29 }

◆ TransientInput2() [2/2]

TransientInput2::TransientInput2 ( int  in_enum_type,
int  nbe,
int  nbv,
IssmDouble times,
int  N 
)

Definition at line 31 of file TransientInput2.cpp.

31  {/*{{{*/
32 
33  /*Set Enum*/
34  this->enum_type=in_enum_type;
35  this->numberofelements_local = nbe;
36  this->numberofvertices_local = nbv;
37 
38  /*Allocate values and timesteps, and copy: */
39  _assert_(N>=0 && N<1e6);
40  this->numtimesteps=N;
41  if(N>0){
42  this->timesteps=xNew<IssmDouble>(N);
43  xMemCpy(this->timesteps,timesin,N);
44 
45  this->inputs = xNew<Input2*>(N);
46  for(int i=0;i<N;i++) this->inputs[i] = NULL;
47  }
48  else{
49  this->timesteps=0;
50  this->inputs =0;
51  }
52  this->parameters = NULL;
53  this->current_input=NULL;
54  this->current_step=-1;
55 }

◆ ~TransientInput2()

TransientInput2::~TransientInput2 ( )

Definition at line 57 of file TransientInput2.cpp.

57  {/*{{{*/
58 
59  for(int i=0;i<this->numtimesteps;i++){
60  delete this->inputs[i];
61  }
62  xDelete<Input2*>(this->inputs);
63  xDelete<IssmDouble>(this->timesteps);
64 
65  if(this->current_input) delete this->current_input;
66 }

Member Function Documentation

◆ AddTimeInput()

void TransientInput2::AddTimeInput ( Input2 input,
IssmDouble  time 
)

◆ AddTriaTimeInput() [1/2]

void TransientInput2::AddTriaTimeInput ( IssmDouble  time,
int  numindices,
int *  indices,
IssmDouble values_in,
int  interp_in 
)

Definition at line 138 of file TransientInput2.cpp.

138  {/*{{{*/
139 
140  /*Check whether this is the last time step that we have*/
141  if(this->numtimesteps){
142  if(fabs(this->timesteps[this->numtimesteps-1]-time)<1.0e-5){
143  this->AddTriaTimeInput(this->numtimesteps-1,numindices,indices,values_in,interp_in);
144  return;
145  }
146  }
147 
148  /*This is a new time step! we need to add it to the list*/
149  if(this->numtimesteps>0 && time<this->timesteps[this->numtimesteps-1]) _error_("timestep values must increase sequentially");
150 
151  IssmDouble *old_timesteps = NULL;
152  Input2 **old_inputs = NULL;
153  if (this->numtimesteps > 0){
154  old_timesteps=xNew<IssmDouble>(this->numtimesteps);
155  xMemCpy(old_timesteps,this->timesteps,this->numtimesteps);
156  xDelete<IssmDouble>(this->timesteps);
157  old_inputs=xNew<Input2*>(this->numtimesteps);
158  xMemCpy(old_inputs,this->inputs,this->numtimesteps);
159  xDelete<Input2*>(this->inputs);
160  }
161 
162  this->numtimesteps=this->numtimesteps+1;
163  this->timesteps=xNew<IssmDouble>(this->numtimesteps);
164  this->inputs = xNew<Input2*>(this->numtimesteps);
165 
166  if (this->numtimesteps > 1){
167  xMemCpy(this->inputs,old_inputs,this->numtimesteps-1);
168  xMemCpy(this->timesteps,old_timesteps,this->numtimesteps-1);
169  xDelete(old_timesteps);
170  xDelete<Input2*>(old_inputs);
171  }
172 
173  /*go ahead and plug: */
174  this->timesteps[this->numtimesteps-1] = time;
175  this->inputs[this->numtimesteps-1] = NULL;
176  this->AddTriaTimeInput(this->numtimesteps-1,numindices,indices,values_in,interp_in);
177 
178 }

◆ AddPentaTimeInput() [1/2]

void TransientInput2::AddPentaTimeInput ( IssmDouble  time,
int  numindices,
int *  indices,
IssmDouble values_in,
int  interp_in 
)

Definition at line 180 of file TransientInput2.cpp.

180  {/*{{{*/
181 
182  /*Check whether this is the last time step that we have*/
183  if(this->numtimesteps){
184  if(fabs(this->timesteps[this->numtimesteps-1]-time)<1.0e-5){
185  this->AddPentaTimeInput(this->numtimesteps-1,numindices,indices,values_in,interp_in);
186  return;
187  }
188  }
189 
190  /*This is a new time step! we need to add it to the list*/
191  if(this->numtimesteps>0 && time<this->timesteps[this->numtimesteps-1]) _error_("timestep values must increase sequentially");
192 
193  IssmDouble *old_timesteps = NULL;
194  Input2 **old_inputs = NULL;
195  if (this->numtimesteps > 0){
196  old_timesteps=xNew<IssmDouble>(this->numtimesteps);
197  xMemCpy(old_timesteps,this->timesteps,this->numtimesteps);
198  xDelete<IssmDouble>(this->timesteps);
199  old_inputs=xNew<Input2*>(this->numtimesteps);
200  xMemCpy(old_inputs,this->inputs,this->numtimesteps);
201  xDelete<Input2*>(this->inputs);
202  }
203 
204  this->numtimesteps=this->numtimesteps+1;
205  this->timesteps=xNew<IssmDouble>(this->numtimesteps);
206  this->inputs = xNew<Input2*>(this->numtimesteps);
207 
208  if (this->numtimesteps > 1){
209  xMemCpy(this->inputs,old_inputs,this->numtimesteps-1);
210  xMemCpy(this->timesteps,old_timesteps,this->numtimesteps-1);
211  xDelete(old_timesteps);
212  xDelete<Input2*>(old_inputs);
213  }
214 
215  /*go ahead and plug: */
216  this->timesteps[this->numtimesteps-1] = time;
217  this->inputs[this->numtimesteps-1] = NULL;
218  this->AddPentaTimeInput(this->numtimesteps-1,numindices,indices,values_in,interp_in);
219 
220 }

◆ AddTriaTimeInput() [2/2]

void TransientInput2::AddTriaTimeInput ( int  step,
int  numindices,
int *  indices,
IssmDouble values_in,
int  interp_in 
)

Definition at line 222 of file TransientInput2.cpp.

222  {/*{{{*/
223 
224  _assert_(step>=0 && step<this->numtimesteps);
225 
226  /*Create it if necessary*/
227  if(this->inputs[step]){
228  if(this->inputs[step]->ObjectEnum()!=TriaInput2Enum) _error_("cannot add Element values to a "<<EnumToStringx(this->inputs[step]->ObjectEnum()));
229  }
230  else{
231  this->inputs[step] = new TriaInput2(this->numberofelements_local,this->numberofvertices_local,interp_in);
232  }
233 
234  /*Set input*/
235  TriaInput2* input = xDynamicCast<TriaInput2*>(this->inputs[step]);
236  input->SetInput(interp_in,numindices,indices,values_in);
237 
238 }

◆ AddPentaTimeInput() [2/2]

void TransientInput2::AddPentaTimeInput ( int  step,
int  numindices,
int *  indices,
IssmDouble values_in,
int  interp_in 
)

Definition at line 240 of file TransientInput2.cpp.

240  {/*{{{*/
241 
242  _assert_(step>=0 && step<this->numtimesteps);
243 
244  /*Create it if necessary*/
245  if(this->inputs[step]){
246  if(this->inputs[step]->ObjectEnum()!=PentaInput2Enum) _error_("cannot add Element values to a "<<EnumToStringx(this->inputs[step]->ObjectEnum()));
247  }
248  else{
249  this->inputs[step] = new PentaInput2(this->numberofelements_local,this->numberofvertices_local,interp_in);
250  }
251 
252  /*Set input*/
253  PentaInput2* input = xDynamicCast<PentaInput2*>(this->inputs[step]);
254  input->SetInput(interp_in,numindices,indices,values_in);
255 
256 }

◆ copy()

Input2 * TransientInput2::copy ( void  )
virtual

Implements Input2.

Definition at line 70 of file TransientInput2.cpp.

70  {/*{{{*/
71 
72  TransientInput2* output=NULL;
73 
74  output = new TransientInput2();
75  output->enum_type=this->enum_type;
76  output->numtimesteps=this->numtimesteps;
77  if(this->numtimesteps>0){
78  output->timesteps=xNew<IssmDouble>(this->numtimesteps);
79  xMemCpy(output->timesteps,this->timesteps,this->numtimesteps);
80  output->inputs = xNew<Input2*>(this->numtimesteps);
81  for(int i=0;i<this->numtimesteps;i++){
82  output->inputs[i] = this->inputs[i]->copy();
83  }
84  }
85  output->parameters=this->parameters;
86 
87  return output;
88 }/*}}}*/

◆ Configure()

void TransientInput2::Configure ( Parameters params)
virtual

Reimplemented from Input2.

Definition at line 104 of file TransientInput2.cpp.

104  {/*{{{*/
105  this->parameters=params;
106 }

◆ DeepEcho()

void TransientInput2::DeepEcho ( void  )
virtual

Implements Object.

Definition at line 89 of file TransientInput2.cpp.

89  {/*{{{*/
90 
91  int i;
92 
93  _printf_("TransientInput2:\n");
94  _printf_(" enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n");
95  _printf_(" numtimesteps: " << this->numtimesteps << "\n");
96  _printf_("---inputs: \n");
97  for(i=0;i<this->numtimesteps;i++){
98  _printf_(" time: " << this->timesteps[i]<<" ");
99  if(this->inputs[i]) this->inputs[i]->Echo();
100  else _printf_(" NOT SET! \n");
101  }
102 }

◆ Echo()

void TransientInput2::Echo ( void  )
virtual

Implements Object.

Definition at line 108 of file TransientInput2.cpp.

108  {/*{{{*/
109  this->DeepEcho();
110 }

◆ Id()

int TransientInput2::Id ( void  )
virtual

Implements Object.

Definition at line 112 of file TransientInput2.cpp.

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

◆ Marshall()

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

Implements Object.

Definition at line 114 of file TransientInput2.cpp.

114  { /*{{{*/
115 
116  if (marshall_direction == MARSHALLING_BACKWARD){
117  _error_("not implmented");
118  //inputs = new Inputs();
119  }
120 
122 
126  //inputs->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
127  _error_("not implemented");
128 }

◆ ObjectEnum()

int TransientInput2::ObjectEnum ( void  )
virtual

Implements Object.

Definition at line 130 of file TransientInput2.cpp.

130  {/*{{{*/
131 
132  return TransientInput2Enum;
133 
134 }

◆ GetAllTimes()

void TransientInput2::GetAllTimes ( IssmDouble **  ptimesteps,
int *  pnumtimesteps 
)

Definition at line 258 of file TransientInput2.cpp.

258  {/*{{{*/
259 
260  if(ptimesteps){
261  *ptimesteps=xNew<IssmDouble>(this->numtimesteps);
262  xMemCpy(*ptimesteps,this->timesteps,this->numtimesteps);
263  }
264  if(pnumtimesteps){
265  *pnumtimesteps = this->numtimesteps;
266  }
267 
268 }

◆ GetTriaInput() [1/4]

TriaInput2 * TransientInput2::GetTriaInput ( )
virtual

Reimplemented from Input2.

Definition at line 270 of file TransientInput2.cpp.

270  {/*{{{*/
271 
272  IssmDouble time;
273  this->parameters->FindParam(&time,TimeEnum);
274  return this->GetTriaInput(time);
275 
276 }

◆ GetTriaInput() [2/4]

TriaInput2 * TransientInput2::GetTriaInput ( IssmDouble  time)

Definition at line 278 of file TransientInput2.cpp.

278  {/*{{{*/
279 
280  /*Set current time input*/
281  this->SetCurrentTimeInput(time);
282  _assert_(this->current_input);
283 
284  /*Cast and return*/
286  _error_("Cannot return a TriaInput2");
287  }
288  return xDynamicCast<TriaInput2*>(this->current_input);
289 
290 }

◆ GetTriaInput() [3/4]

TriaInput2 * TransientInput2::GetTriaInput ( IssmDouble  start_time,
IssmDouble  end_time,
int  averaging_method 
)

Definition at line 292 of file TransientInput2.cpp.

292  {/*{{{*/
293 
294  /*Set current time input*/
295  this->SetAverageAsCurrentTimeInput(start_time,end_time,averaging_method);
296  _assert_(this->current_input);
297 
298  /*Cast and return*/
300  _error_("Cannot return a TriaInput2");
301  }
302  return xDynamicCast<TriaInput2*>(this->current_input);
303 
304 }

◆ GetTriaInput() [4/4]

TriaInput2 * TransientInput2::GetTriaInput ( int  offset)

Definition at line 306 of file TransientInput2.cpp.

306  {/*{{{*/
307 
308  /*Check offset*/
309  if(offset<0 || offset>this->numtimesteps-1){
310  _error_("Cannot return input for offset "<<offset);
311  }
312  Input2* input = this->inputs[offset];
313 
314  /*Cast and return*/
315  _assert_(input);
316  if(input->ObjectEnum()!=TriaInput2Enum) _error_("Cannot return a TriaInput2");
317  return xDynamicCast<TriaInput2*>(input);
318 
319 }

◆ GetPentaInput() [1/4]

PentaInput2 * TransientInput2::GetPentaInput ( )
virtual

Reimplemented from Input2.

Definition at line 321 of file TransientInput2.cpp.

321  {/*{{{*/
322 
323  IssmDouble time;
324  this->parameters->FindParam(&time,TimeEnum);
325  return this->GetPentaInput(time);
326 }

◆ GetPentaInput() [2/4]

PentaInput2 * TransientInput2::GetPentaInput ( IssmDouble  time)

Definition at line 328 of file TransientInput2.cpp.

328  {/*{{{*/
329 
330  /*Set current time input*/
331  this->SetCurrentTimeInput(time);
332  _assert_(this->current_input);
333 
334  /*Cast and return*/
336  _error_("Cannot return a PentaInput2");
337  }
338  return xDynamicCast<PentaInput2*>(this->current_input);
339 
340 }

◆ GetPentaInput() [3/4]

PentaInput2 * TransientInput2::GetPentaInput ( int  offset)

Definition at line 342 of file TransientInput2.cpp.

342  {/*{{{*/
343 
344 
345  /*Check offset*/
346  if(offset<0 || offset>this->numtimesteps-1){
347  _error_("Cannot return input for offset "<<offset);
348  }
349  Input2* input = this->inputs[offset];
350 
351  /*Cast and return*/
352  if(input->ObjectEnum()!=PentaInput2Enum) _error_("Cannot return a PentaInput2");
353  return xDynamicCast<PentaInput2*>(input);
354 
355 }

◆ GetPentaInput() [4/4]

PentaInput2 * TransientInput2::GetPentaInput ( IssmDouble  start_time,
IssmDouble  end_time,
int  averaging_method 
)

Definition at line 357 of file TransientInput2.cpp.

357  {/*{{{*/
358 
359  /*Set current time input*/
360  this->SetAverageAsCurrentTimeInput(start_time,end_time,averaging_method);
361  _assert_(this->current_input);
362 
363  /*Cast and return*/
365  _error_("Cannot return a PentaInput2");
366  }
367  return xDynamicCast<PentaInput2*>(this->current_input);
368 
369 }

◆ GetTimeInput()

Input2* TransientInput2::GetTimeInput ( IssmDouble  time)
inline

Definition at line 58 of file TransientInput2.h.

58 {_error_("This should not happen!");};

◆ GetTimeByOffset()

IssmDouble TransientInput2::GetTimeByOffset ( int  offset)

Definition at line 539 of file TransientInput2.cpp.

539  {/*{{{*/
540  if(offset<0) offset=0;
541  _assert_(offset<this->numtimesteps);
542  return this->timesteps[offset];
543 }

◆ GetTimeInputOffset()

int TransientInput2::GetTimeInputOffset ( IssmDouble  time)

Definition at line 545 of file TransientInput2.cpp.

545  {/*{{{*/
546 
547  int offset;
548 
549  /*go through the timesteps, and figure out which interval we
550  * *fall within. Then interpolate the values on this interval: */
551  int found=binary_search(&offset,time,this->timesteps,this->numtimesteps);
552  if(!found) _error_("Input not found (is TransientInput sorted ?)");
553 
554  return offset;
555 }

◆ SetCurrentTimeInput()

void TransientInput2::SetCurrentTimeInput ( IssmDouble  time)

Definition at line 372 of file TransientInput2.cpp.

372  {/*{{{*/
373 
374  /*First, recover current time from parameters: */
375  bool linear_interp;
376  this->parameters->FindParam(&linear_interp,TimesteppingInterpForcingsEnum);
377 
378  /*Figure step out*/
379  int offset;
380  if(!binary_search(&offset,time,this->timesteps,this->numtimesteps)){
381  _error_("Input not found (is TransientInput sorted ?)");
382  }
383 
384  if (offset==-1){
385 
386  /*get values for the first time: */
387  _assert_(time<this->timesteps[0]);
388 
389  /*If already processed return*/
390  if(this->current_step==0.) return;
391 
392  /*Prepare input*/
393  if(this->current_input) delete this->current_input;
394  this->current_step = 0.;
395  this->current_input = this->inputs[0]->copy();
396 
397  }
398  else if(offset==(this->numtimesteps-1) || !linear_interp){
399 
400  /*get values for the last time: */
401  _assert_(time>=this->timesteps[offset]);
402 
403  /*If already processed return*/
404  if(this->current_step==reCast<IssmDouble>(offset)) return;
405 
406  /*Prepare input*/
407  if(this->current_input) delete this->current_input;
408  this->current_step = reCast<IssmDouble>(offset);
409  this->current_input = this->inputs[offset]->copy();
410  }
411  else {
412 
413  /*Interpolate */
414  _assert_(time>=this->timesteps[offset] && time<this->timesteps[offset+1]);
415 
416  /*get values between two times [offset:offset+1[, Interpolate linearly*/
417  IssmDouble deltat=this->timesteps[offset+1]-this->timesteps[offset];
418  IssmDouble this_step = reCast<IssmDouble>(offset) + (time - this->timesteps[offset])/deltat;
419 
420  /*If already processed return*/
421  if(fabs(this->current_step-this_step)<1.e-5) return;
422  // if(this->current_step>this_step-1.e-5 && this->current_step<this_step+1.e-5) return;
423 
424  /*Prepare input*/
425  if(this->current_input) delete this->current_input;
426  this->current_step = this_step;
427  IssmDouble alpha2=(time-this->timesteps[offset])/deltat;
428  IssmDouble alpha1=(1.0-alpha2);
429 
430  Input2* input1=this->inputs[offset];
431  Input2* input2=this->inputs[offset+1];
432 
433  this->current_input = input1->copy();
434  this->current_input->Scale(alpha1);
435  this->current_input->AXPY(input2,alpha2);
436  }
437 
438 }/*}}}*/

◆ SetAverageAsCurrentTimeInput()

void TransientInput2::SetAverageAsCurrentTimeInput ( IssmDouble  start_time,
IssmDouble  end_time,
int  averaging_method 
)

Definition at line 439 of file TransientInput2.cpp.

439  {/*{{{*/
440 
441  IssmDouble dt,durinv;
442  IssmDouble dtsum=0;
443  IssmDouble timespan,mid_step;
444  int found,start_offset,end_offset,input_offset;
445 
446  /*go through the timesteps, and grab offset for start and end*/
447  found=binary_search(&start_offset,start_time,this->timesteps,this->numtimesteps);
448  if(!found) _error_("Input not found (is TransientInput sorted ?)");
449  found=binary_search(&end_offset,end_time,this->timesteps,this->numtimesteps);
450  if(!found) _error_("Input not found (is TransientInput sorted ?)");
451 
452  if(start_offset==-1){
453  timespan=this->timesteps[end_offset]-start_time;
454  }
455  else{
456  timespan=this->timesteps[end_offset]-this->timesteps[start_offset];
457  }
458  mid_step=reCast<IssmDouble>(start_offset)+0.5*timespan;
459 
460  /*If already processed return, we set step in the middle of the interval*/
461  if(fabs(this->current_step-mid_step)<1.e-5) return;
462  /*If not processed set current_step*/
463  if(this->current_input) delete this->current_input;
464  this->current_step = mid_step;
465 
466  int offset=start_offset;
467  while(offset < end_offset){
468  if(offset==start_offset){
469  dt=this->timesteps[offset+1]-start_time;
470  _assert_(dt>0.);
471  if(offset==end_offset-1){
472  dt=end_time-start_time;
473  _assert_(dt>0.);
474  }
475  }
476  else if(offset==end_offset-1){
477  dt=end_time-this->timesteps[offset];
478  _assert_(dt>0.);
479  }
480  else{
481  dt=this->timesteps[offset+1]-this->timesteps[offset];
482  _assert_(dt>0.);
483  }
484  Input2* stepinput=this->inputs[offset+1];
485 
486  switch(averaging_method){
487  case 0: /*Arithmetic mean*/
488  if(offset==start_offset){
489  this->current_input=stepinput->copy();
490  this->current_input->Scale(dt);
491  }
492  else{
493  this->current_input->AXPY(stepinput,dt);
494  }
495  break;
496  case 1: /*Geometric mean*/
497  if(offset==start_offset){
498  this->current_input = stepinput->copy();
499  this->current_input->Scale(dt);
500  }
501  else{
502  stepinput->Scale(dt);
503  this->current_input->PointWiseMult(stepinput);
504  }
505  break;
506  case 2: /*Harmonic mean*/
507  if(offset==start_offset){
508  this->current_input = stepinput->copy();
509  this->current_input->Pow(-1);
510  this->current_input->Scale(dt);
511  }
512  else{
513  stepinput->Pow(-1);
514  this->current_input->AXPY(stepinput,dt);
515  }
516  default:
517  _error_("averaging method is not recognised");
518  }
519  dtsum+=dt;
520  offset+=1;
521  }
522  _assert_(dtsum>0);
523  durinv=1./dtsum;
524  /*Integration done, now normalize*/
525  switch(averaging_method){
526  case 0: //Arithmetic mean
527  this->current_input->Scale(durinv);
528  break;
529  case 1: /*Geometric mean*/
530  this->current_input->Pow(durinv);
531  break;
532  case 2: /*Harmonic mean*/
533  this->current_input->Scale(durinv);
534  this->current_input->Pow(-1);
535  default:
536  _error_("averaging method is not recognised");
537  }
538 }/*}}}*/

Field Documentation

◆ numberofelements_local

int TransientInput2::numberofelements_local
private

Definition at line 16 of file TransientInput2.h.

◆ numberofvertices_local

int TransientInput2::numberofvertices_local
private

Definition at line 17 of file TransientInput2.h.

◆ enum_type

int TransientInput2::enum_type

Definition at line 20 of file TransientInput2.h.

◆ numtimesteps

int TransientInput2::numtimesteps

Definition at line 21 of file TransientInput2.h.

◆ inputs

Input2** TransientInput2::inputs

Definition at line 22 of file TransientInput2.h.

◆ timesteps

IssmDouble* TransientInput2::timesteps

Definition at line 23 of file TransientInput2.h.

◆ parameters

Parameters* TransientInput2::parameters

Definition at line 24 of file TransientInput2.h.

◆ current_step

IssmDouble TransientInput2::current_step

Definition at line 26 of file TransientInput2.h.

◆ current_input

Input2* TransientInput2::current_input

Definition at line 27 of file TransientInput2.h.


The documentation for this class was generated from the following files:
TransientInput2Enum
@ TransientInput2Enum
Definition: EnumDefinitions.h:1315
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
IssmDouble
double IssmDouble
Definition: types.h:37
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
Input2::PointWiseMult
virtual void PointWiseMult(Input2 *xinput)
Definition: Input2.h:46
TimeEnum
@ TimeEnum
Definition: EnumDefinitions.h:427
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
PentaInput2::SetInput
void SetInput(int interp_in, int row, IssmDouble value_in)
Definition: PentaInput2.cpp:154
TransientInput2
Definition: TransientInput2.h:13
TransientInput2::numberofvertices_local
int numberofvertices_local
Definition: TransientInput2.h:17
TransientInput2::numtimesteps
int numtimesteps
Definition: TransientInput2.h:21
TransientInput2::parameters
Parameters * parameters
Definition: TransientInput2.h:24
Input2::copy
virtual Input2 * copy()=0
TransientInput2::current_step
IssmDouble current_step
Definition: TransientInput2.h:26
TransientInput2::TransientInput2
TransientInput2()
Definition: TransientInput2.cpp:18
MARSHALLING_DYNAMIC
#define MARSHALLING_DYNAMIC(FIELD, TYPE, SIZE)
Definition: Marshalling.h:61
TransientInput2::enum_type
int enum_type
Definition: TransientInput2.h:20
TransientInput2::inputs
Input2 ** inputs
Definition: TransientInput2.h:22
TriaInput2Enum
@ TriaInput2Enum
Definition: EnumDefinitions.h:1124
Input2::Pow
virtual void Pow(IssmDouble scale_factor)
Definition: Input2.h:47
xDelete
void xDelete(T **&aT_pp)
Definition: MemOps.h:97
EnumToStringx
const char * EnumToStringx(int enum_in)
Definition: EnumToStringx.cpp:15
TriaInput2
Definition: TriaInput2.h:8
UNDEF
#define UNDEF
Definition: constants.h:8
TransientInput2::timesteps
IssmDouble * timesteps
Definition: TransientInput2.h:23
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
TransientInput2::SetAverageAsCurrentTimeInput
void SetAverageAsCurrentTimeInput(IssmDouble start_time, IssmDouble end_time, int averaging_method)
Definition: TransientInput2.cpp:439
PentaInput2
Definition: PentaInput2.h:8
TransientInput2::numberofelements_local
int numberofelements_local
Definition: TransientInput2.h:16
Input2::AXPY
virtual void AXPY(Input2 *xinput, IssmDouble scalar)
Definition: Input2.h:45
TransientInput2::GetPentaInput
PentaInput2 * GetPentaInput()
Definition: TransientInput2.cpp:321
TransientInput2::AddPentaTimeInput
void AddPentaTimeInput(IssmDouble time, int numindices, int *indices, IssmDouble *values_in, int interp_in)
Definition: TransientInput2.cpp:180
Object::ObjectEnum
virtual int ObjectEnum()=0
Input2
Definition: Input2.h:18
MARSHALLING_BACKWARD
@ MARSHALLING_BACKWARD
Definition: Marshalling.h:10
TransientInput2::ObjectEnum
int ObjectEnum()
Definition: TransientInput2.cpp:130
TransientInput2::DeepEcho
void DeepEcho()
Definition: TransientInput2.cpp:89
TimesteppingInterpForcingsEnum
@ TimesteppingInterpForcingsEnum
Definition: EnumDefinitions.h:431
PentaInput2Enum
@ PentaInput2Enum
Definition: EnumDefinitions.h:1125
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
TriaInput2::SetInput
void SetInput(int interp_in, int row, IssmDouble value_in)
Definition: TriaInput2.cpp:141
Parameters::FindParam
void FindParam(bool *pinteger, int enum_type)
Definition: Parameters.cpp:262
TransientInput2::current_input
Input2 * current_input
Definition: TransientInput2.h:27
Object::Echo
virtual void Echo()=0
xMemCpy
T * xMemCpy(T *dest, const T *src, unsigned int size)
Definition: MemOps.h:152
binary_search
int binary_search(int *poffset, int target, int *sorted_integers, int num_integers)
Definition: binary_search.cpp:14
TransientInput2::GetTriaInput
TriaInput2 * GetTriaInput()
Definition: TransientInput2.cpp:270
TransientInput2::SetCurrentTimeInput
void SetCurrentTimeInput(IssmDouble time)
Definition: TransientInput2.cpp:372
Input2::Scale
virtual void Scale(IssmDouble scale_factor)
Definition: Input2.h:48
TransientInput2::AddTriaTimeInput
void AddTriaTimeInput(IssmDouble time, int numindices, int *indices, IssmDouble *values_in, int interp_in)
Definition: TransientInput2.cpp:138