Ice Sheet System Model  4.18
Code documentation
ComputeMungsmTemperaturePrecipitation.cpp
Go to the documentation of this file.
1 /* file: ComputeMungsmTemperaturePrecipitation.cpp
2  Compute the temperature and precipitation at time t from
3  the data at present day and lgm.
4  The interpolation is done from some factors extracted from the MUNGSM
5  */
6 
7 #include "./elements.h"
8 #include "../Numerics/numerics.h"
9 #include <cmath>
10 
12  IssmDouble* PrecipitationsLgm, IssmDouble* PrecipitationsPresentday,
13  IssmDouble* TemperaturesLgm, IssmDouble* TemperaturesPresentday,
14  IssmDouble* monthlytemperaturesout, IssmDouble* monthlyprecout){
15 
16  IssmDouble monthlytemperaturestmp[12],monthlyprectmp[12];
17  IssmDouble tdiffh;
18 
19  for (int imonth = 0; imonth<12; imonth++){
20  tdiffh = TdiffTime*( TemperaturesLgm[imonth] - TemperaturesPresentday[imonth] );
21  monthlytemperaturestmp[imonth] = tdiffh + TemperaturesPresentday[imonth] ;
22 
23  monthlyprectmp[imonth] =min(1.5, PrecipitationsPresentday[imonth] * pow(PrecipitationsLgm[imonth],PfacTime)); // [m/yr]
24 
25  /*Assign output pointer*/
26  *(monthlytemperaturesout+imonth) = monthlytemperaturestmp[imonth];
27  *(monthlyprecout+imonth) = monthlyprectmp[imonth];
28  }
29  // printf(" tempera %f\n",monthlytemperaturestmp[1]);
30 }
IssmDouble
double IssmDouble
Definition: types.h:37
ComputeMungsmTemperaturePrecipitation
void ComputeMungsmTemperaturePrecipitation(IssmDouble TdiffTime, IssmDouble PfacTime, IssmDouble *PrecipitationsLgm, IssmDouble *PrecipitationsPresentday, IssmDouble *TemperaturesLgm, IssmDouble *TemperaturesPresentday, IssmDouble *monthlytemperaturesout, IssmDouble *monthlyprecout)
Definition: ComputeMungsmTemperaturePrecipitation.cpp:11
elements.h
prototypes for elements.h
min
IssmDouble min(IssmDouble a, IssmDouble b)
Definition: extrema.cpp:14