8 #include "../Numerics/numerics.h"
16 IssmDouble monthlytemperaturestmp[12],monthlyprectmp[12];
19 for (
int imonth = 0; imonth<12; imonth++){
20 tdiffh = TdiffTime*( TemperaturesLgm[imonth] - TemperaturesPresentday[imonth] );
21 monthlytemperaturestmp[imonth] = tdiffh + TemperaturesPresentday[imonth] ;
23 monthlyprectmp[imonth] =
min(1.5, PrecipitationsPresentday[imonth] * pow(PrecipitationsLgm[imonth],PfacTime));
26 *(monthlytemperaturesout+imonth) = monthlytemperaturestmp[imonth];
27 *(monthlyprecout+imonth) = monthlyprectmp[imonth];