Ice Sheet System Model  4.18
Code documentation
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Functions
ComputeD18OTemperaturePrecipitationFromPD.cpp File Reference
#include "./elements.h"
#include "../Numerics/numerics.h"
#include <cmath>

Go to the source code of this file.

Functions

void ComputeD18OTemperaturePrecipitationFromPD (IssmDouble d018, IssmDouble dpermil, bool isTemperatureScaled, bool isPrecipScaled, IssmDouble f, IssmDouble *PrecipitationPresentday, IssmDouble *TemperaturePresentday, IssmDouble *PrecipitationReconstructed, IssmDouble *TemperatureReconstructed, IssmDouble *monthlytemperaturesout, IssmDouble *monthlyprecout)
 

Function Documentation

◆ 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 at line 10 of file ComputeD18OTemperaturePrecipitationFromPD.cpp.

13  {
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