Ice Sheet System Model  4.18
Code documentation
ComputeD18OTemperaturePrecipitationFromPD.cpp
Go to the documentation of this file.
1 /* file: ComputeTemperaturePrecipitationfrom018.cpp
2  Scale present day monthly precipitation and temperature fields
3  along the NGRIP oxygen isotope record.
4  */
5 
6 #include "./elements.h"
7 #include "../Numerics/numerics.h"
8 #include <cmath>
9 
10 void ComputeD18OTemperaturePrecipitationFromPD(IssmDouble d018,IssmDouble dpermil,bool isTemperatureScaled,
11  bool isPrecipScaled, IssmDouble f, IssmDouble* PrecipitationPresentday,IssmDouble* TemperaturePresentday,
12  IssmDouble* PrecipitationReconstructed,IssmDouble* TemperatureReconstructed, IssmDouble* monthlytemperaturesout,
13  IssmDouble* monthlyprecout){
14 
15  IssmDouble monthlytemperaturestmp[12],monthlyprectmp[12];
16  IssmDouble deltaTemp;
17 
18  /* Constants */
19  // dpermil = 2.4;/*degrees C per mil*/
20 
21  /*Create Delta Temp to be applied to monthly temps and used in precip scaling*/
22  deltaTemp = dpermil * (d018+34.83);
23 
24  for(int imonth = 0; imonth<12; imonth++){
25 
26  if(isTemperatureScaled)monthlytemperaturestmp[imonth] = TemperaturePresentday[imonth] + deltaTemp;
27  else{
28  monthlytemperaturestmp[imonth] = TemperatureReconstructed[imonth];
29  deltaTemp=TemperatureReconstructed[imonth]-TemperaturePresentday[imonth];
30  }
31 
32  if (isPrecipScaled)monthlyprectmp[imonth] = PrecipitationPresentday[imonth]*exp((f/dpermil)*deltaTemp);
33  else monthlyprectmp[imonth] = PrecipitationReconstructed[imonth];
34 
35  /*Assign output pointer*/
36  *(monthlytemperaturesout+imonth) = monthlytemperaturestmp[imonth];
37  *(monthlyprecout+imonth) = monthlyprectmp[imonth];
38  }
39 }
IssmDouble
double IssmDouble
Definition: types.h:37
elements.h
prototypes for elements.h
ComputeD18OTemperaturePrecipitationFromPD
void ComputeD18OTemperaturePrecipitationFromPD(IssmDouble d018, IssmDouble dpermil, bool isTemperatureScaled, bool isPrecipScaled, IssmDouble f, IssmDouble *PrecipitationPresentday, IssmDouble *TemperaturePresentday, IssmDouble *PrecipitationReconstructed, IssmDouble *TemperatureReconstructed, IssmDouble *monthlytemperaturesout, IssmDouble *monthlyprecout)
Definition: ComputeD18OTemperaturePrecipitationFromPD.cpp:10