Ice Sheet System Model  4.18
Code documentation
Functions
ComputeMungsmTemperaturePrecipitation.cpp File Reference
#include "./elements.h"
#include "../Numerics/numerics.h"
#include <cmath>

Go to the source code of this file.

Functions

void ComputeMungsmTemperaturePrecipitation (IssmDouble TdiffTime, IssmDouble PfacTime, IssmDouble *PrecipitationsLgm, IssmDouble *PrecipitationsPresentday, IssmDouble *TemperaturesLgm, IssmDouble *TemperaturesPresentday, IssmDouble *monthlytemperaturesout, IssmDouble *monthlyprecout)
 

Function Documentation

◆ ComputeMungsmTemperaturePrecipitation()

void ComputeMungsmTemperaturePrecipitation ( IssmDouble  TdiffTime,
IssmDouble  PfacTime,
IssmDouble PrecipitationsLgm,
IssmDouble PrecipitationsPresentday,
IssmDouble TemperaturesLgm,
IssmDouble TemperaturesPresentday,
IssmDouble monthlytemperaturesout,
IssmDouble monthlyprecout 
)

Definition at line 11 of file ComputeMungsmTemperaturePrecipitation.cpp.

14  {
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
min
IssmDouble min(IssmDouble a, IssmDouble b)
Definition: extrema.cpp:14