Ice Sheet System Model  4.18
Code documentation
TransientInput2.cpp
Go to the documentation of this file.
1 
4 /*Headers*/
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 "./TransientInput2.h"
12 #include "./TriaInput2.h"
13 #include "./PentaInput2.h"
14 #include "../../shared/shared.h"
15 #include "../Params/Parameters.h"
16 
17 /*TransientInput2 constructors and destructor*/
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 }
30 /*}}}*/
31 TransientInput2::TransientInput2(int in_enum_type,int nbe,int nbv,IssmDouble* timesin,int N){/*{{{*/
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 }
56 /*}}}*/
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 }
67 /*}}}*/
68 
69 /*Object virtual functions definitions:*/
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 }/*}}}*/
89 void TransientInput2::DeepEcho(void){/*{{{*/
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 }
103 /*}}}*/
105  this->parameters=params;
106 }
107 /*}}}*/
108 void TransientInput2::Echo(void){/*{{{*/
109  this->DeepEcho();
110 }
111 /*}}}*/
112 int TransientInput2::Id(void){ return -1; }/*{{{*/
113 /*}}}*/
114 void TransientInput2::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
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 }
129 /*}}}*/
131 
132  return TransientInput2Enum;
133 
134 }
135 /*}}}*/
136 
137 /*Intermediary*/
138 void TransientInput2::AddTriaTimeInput(IssmDouble time,int numindices,int* indices,IssmDouble* values_in,int interp_in){/*{{{*/
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 }
179 /*}}}*/
180 void TransientInput2::AddPentaTimeInput(IssmDouble time,int numindices,int* indices,IssmDouble* values_in,int interp_in){/*{{{*/
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 }
221 /*}}}*/
222 void TransientInput2::AddTriaTimeInput(int step,int numindices,int* indices,IssmDouble* values_in,int interp_in){/*{{{*/
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 }
239 /*}}}*/
240 void TransientInput2::AddPentaTimeInput(int step,int numindices,int* indices,IssmDouble* values_in,int interp_in){/*{{{*/
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 }
257 /*}}}*/
258 void TransientInput2::GetAllTimes(IssmDouble** ptimesteps,int* pnumtimesteps){/*{{{*/
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 }
269 /*}}}*/
271 
272  IssmDouble time;
273  this->parameters->FindParam(&time,TimeEnum);
274  return this->GetTriaInput(time);
275 
276 }
277 /*}}}*/
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 }
291 /*}}}*/
292 TriaInput2* TransientInput2::GetTriaInput(IssmDouble start_time, IssmDouble end_time, int averaging_method){/*{{{*/
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 }
305 /*}}}*/
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 }
320 /*}}}*/
322 
323  IssmDouble time;
324  this->parameters->FindParam(&time,TimeEnum);
325  return this->GetPentaInput(time);
326 }
327 /*}}}*/
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 }
341 /*}}}*/
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 }
356 /*}}}*/
357 PentaInput2* TransientInput2::GetPentaInput(IssmDouble start_time, IssmDouble end_time, int averaging_method){/*{{{*/
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 }
370 /*}}}*/
371 
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 }/*}}}*/
439 void TransientInput2::SetAverageAsCurrentTimeInput(IssmDouble start_time,IssmDouble end_time, int averaging_method){/*{{{*/
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 }/*}}}*/
540  if(offset<0) offset=0;
541  _assert_(offset<this->numtimesteps);
542  return this->timesteps[offset];
543 }
544 /*}}}*/
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 }
556 /*}}}*/
TransientInput2::GetAllTimes
void GetAllTimes(IssmDouble **ptimesteps, int *pnumtimesteps)
Definition: TransientInput2.cpp:258
TransientInput2::Id
int Id()
Definition: TransientInput2.cpp:112
TransientInput2Enum
@ TransientInput2Enum
Definition: EnumDefinitions.h:1315
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
IssmDouble
double IssmDouble
Definition: types.h:37
TransientInput2::GetTimeInputOffset
int GetTimeInputOffset(IssmDouble time)
Definition: TransientInput2.cpp:545
TransientInput2::Configure
void Configure(Parameters *params)
Definition: TransientInput2.cpp:104
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
Input2::PointWiseMult
virtual void PointWiseMult(Input2 *xinput)
Definition: Input2.h:46
Parameters
Declaration of Parameters class.
Definition: Parameters.h:18
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
TriaInput2.h
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
TransientInput2::GetTimeByOffset
IssmDouble GetTimeByOffset(int offset)
Definition: TransientInput2.cpp:539
xDelete
void xDelete(T **&aT_pp)
Definition: MemOps.h:97
PentaInput2.h
TransientInput2::Echo
void Echo()
Definition: TransientInput2.cpp:108
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
TransientInput2::copy
Input2 * copy()
Definition: TransientInput2.cpp:70
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
TransientInput2.h
: header file for transientinput object
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::~TransientInput2
~TransientInput2()
Definition: TransientInput2.cpp:57
TransientInput2::SetCurrentTimeInput
void SetCurrentTimeInput(IssmDouble time)
Definition: TransientInput2.cpp:372
TransientInput2::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: TransientInput2.cpp:114
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