Ice Sheet System Model  4.18
Code documentation
TransientArrayParam.cpp
Go to the documentation of this file.
1 
5 /*header files: */
6 /*{{{*/
7 #ifdef HAVE_CONFIG_H
8  #include <config.h>
9 #else
10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
11 #endif
12 
13 #include "../classes.h"
14 #include "../../shared/shared.h"
15 /*}}}*/
16 
17 /*TransientArrayParam constructors and destructor*/
19  return;
20 }
21 /*}}}*/
22 TransientArrayParam::TransientArrayParam(int in_enum_type,IssmDouble* in_values,IssmDouble* in_time,bool interpolation_on,int in_N,int in_M){/*{{{*/
23 
24  _assert_(in_values && in_time);
25 
26  this->enum_type=in_enum_type;
27  this->M=in_M; //Number of rows
28  this->N=in_N; //Number of timesteps
29  this->interpolation=interpolation_on;
30 
31  this->values=xNew<IssmDouble>(M*N);
32  xMemCpy<IssmDouble>(values,in_values,M*N);
33 
34  this->timesteps=xNew<IssmDouble>(N);
35  xMemCpy<IssmDouble>(timesteps,in_time,N);
36 }
37 /*}}}*/
39  xDelete<IssmDouble>(values);
40  xDelete<IssmDouble>(timesteps);
41 }/*}}}*/
42 
43 /*Object virtual functions definitions:*/
45 
46  return new TransientArrayParam(this->enum_type,this->values,this->timesteps,this->interpolation,this->M,this->N);
47 
48 }
49 /*}}}*/
51 
52  _printf_("TransientArrayParam:\n");
53  _printf_(" enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n");
54  _printf_(" number of time steps: " << this->N << "\n");
55  _printf_(" number of rows: " << this->M << "\n");
56  for(int i=0;i<this->N;i++){
57  _printf_(" time: " << this->timesteps[i] << "\n");
58  for(int k=0;k<this->M;k++){
59  _printf_(" values: " << this->values[k*N+i] << "\n");
60  }
61  _printf_("\n");
62  }
63 }
64 /*}}}*/
65 void TransientArrayParam::Echo(void){/*{{{*/
66 
67  _printf_("TransientArrayParam:\n");
68  _printf_(" enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n");
69  _printf_(" size: " << this->M << " by " << this->N << "\n");
70 
71 }
72 /*}}}*/
73 int TransientArrayParam::Id(void){ return -1; }/*{{{*/
74 /*}}}*/
75 void TransientArrayParam::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
76 
78 
81  MARSHALLING(M);
82  MARSHALLING(N);
83  if(marshall_direction==MARSHALLING_BACKWARD){
84  values = xNew<IssmDouble>(M*N);
85  timesteps = xNew<IssmDouble>(N);
86  }
89 
90 }/*}}}*/
92 
94 
95 }/*}}}*/
96 
97 /*TransientArrayParam virtual functions definitions: */
99 
100  IssmDouble output;
101  bool found;
102  _assert_(row>=0 && row<this->M);
103 
104  /*Ok, we have the time and row, go through the timesteps, and figure out which interval we
105  *fall within. Then interpolate the values on this interval: */
106  if(time<this->timesteps[0]){
107  /*get values for the first time: */
108  output=this->values[row*this->N];
109  found=true;
110  }
111  else if(time>this->timesteps[this->N-1]){
112  /*get values for the last time: */
113  output=this->values[(row+1)*this->N-1];
114  found=true;
115  }
116  else{
117  /*Find which interval we fall within: */
118  for(int i=0;i<this->N;i++){
119  if(time==this->timesteps[i]){
120  /*We are right on one step time: */
121  output = this->values[row*this->N+i];
122  found=true;
123  break; //we are done with the time interpolation.
124  }
125  else{
126  if(this->timesteps[i]<time && time<this->timesteps[i+1]){
127  /*ok, we have the interval [i:i+1]. Interpolate linearly for now: */
128  IssmDouble deltat = this->timesteps[i+1]-this->timesteps[i];
129  IssmDouble alpha = (time-this->timesteps[i])/deltat;
130  if(interpolation==true) output=(1.0-alpha)*this->values[row*this->N+i] + alpha*this->values[row*this->N+i+1];
131  else output=this->values[row*this->N+i];
132  found=true;
133  break;
134  }
135  else continue; //keep looking on the next interval
136  }
137  }
138  }
139  if(!found)_error_("did not find time interval on which to interpolate values");
140  *pdouble=output;
141 }
142 /*}}}*/
TransientArrayParam::GetParameterValue
void GetParameterValue(bool *pbool)
Definition: TransientArrayParam.h:45
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
IssmDouble
double IssmDouble
Definition: types.h:37
Param
Definition: Param.h:21
TransientArrayParam::interpolation
bool interpolation
Definition: TransientArrayParam.h:26
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
TransientArrayParam::TransientArrayParam
TransientArrayParam()
Definition: TransientArrayParam.cpp:18
TransientArrayParam::DeepEcho
void DeepEcho()
Definition: TransientArrayParam.cpp:50
TransientArrayParam::Id
int Id()
Definition: TransientArrayParam.cpp:73
TransientArrayParamEnum
@ TransientArrayParamEnum
Definition: EnumDefinitions.h:1313
MARSHALLING_ARRAY
#define MARSHALLING_ARRAY(FIELD, TYPE, SIZE)
Definition: Marshalling.h:45
EnumToStringx
const char * EnumToStringx(int enum_in)
Definition: EnumToStringx.cpp:15
TransientArrayParam::enum_type
int enum_type
Definition: TransientArrayParam.h:23
alpha
IssmDouble alpha(IssmDouble x, IssmDouble y, IssmDouble z, int testid)
Definition: fsanalyticals.cpp:221
TransientArrayParam::N
int N
Definition: TransientArrayParam.h:24
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
TransientArrayParam::Echo
void Echo()
Definition: TransientArrayParam.cpp:65
TransientArrayParam::values
IssmDouble * values
Definition: TransientArrayParam.h:27
MARSHALLING_BACKWARD
@ MARSHALLING_BACKWARD
Definition: Marshalling.h:10
TransientArrayParam::ObjectEnum
int ObjectEnum()
Definition: TransientArrayParam.cpp:91
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
TransientArrayParam::copy
Param * copy()
Definition: TransientArrayParam.cpp:44
TransientArrayParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: TransientArrayParam.cpp:75
TransientArrayParam::~TransientArrayParam
~TransientArrayParam()
Definition: TransientArrayParam.cpp:38
TransientArrayParam::timesteps
IssmDouble * timesteps
Definition: TransientArrayParam.h:28
TransientArrayParam::M
int M
Definition: TransientArrayParam.h:25