7 #include "../Numerics/numerics.h"
15 IssmDouble monthlytemperaturestmp[12],monthlyprectmp[12];
22 deltaTemp = dpermil * (d018+34.83);
24 for(
int imonth = 0; imonth<12; imonth++){
26 if(isTemperatureScaled)monthlytemperaturestmp[imonth] = TemperaturePresentday[imonth] + deltaTemp;
28 monthlytemperaturestmp[imonth] = TemperatureReconstructed[imonth];
29 deltaTemp=TemperatureReconstructed[imonth]-TemperaturePresentday[imonth];
32 if (isPrecipScaled)monthlyprectmp[imonth] = PrecipitationPresentday[imonth]*exp((f/dpermil)*deltaTemp);
33 else monthlyprectmp[imonth] = PrecipitationReconstructed[imonth];
36 *(monthlytemperaturesout+imonth) = monthlytemperaturestmp[imonth];
37 *(monthlyprecout+imonth) = monthlyprectmp[imonth];