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