Changeset 24095


Ignore:
Timestamp:
07/15/19 17:50:28 (6 years ago)
Author:
schlegel
Message:

CHG: revert to older pdd scaling for ice

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/shared/Elements/PddSurfaceMassBalance.cpp

    r23400 r24095  
    135135  snowfac=pddsnowfac0;
    136136  icefac=pddicefac0;
    137   if (pddsnowfac>=0) {
     137  if (pddsnowfac>0) {
    138138          if (pddsnowfac<1.65) {
    139139                  _printf0_("WARNING: Pdd snow factor input, " << pddsnowfac << ", results in a negative value. It will be ignored. \n");
     
    143143          }
    144144  }
    145   if (pddicefac>=0) {
     145  if (pddicefac>0) {
    146146          if (pddicefac>17.22) {
    147                   _printf0_("WARNING: Pdd ice factor input, " << pddsnowfac << ", results in a negative value. It will be ignored. \n");
     147                  _printf0_("WARNING: Pdd ice factor input, " << pddicefac << ", results in a negative value. It will be ignored. \n");
    148148          }
    149149          else{
     
    158158  }
    159159  else if(Tsum< 10){
    160     snwmf = (0.15*(Tsum+1) + (2.65+snowfac-pddsnowfac0))*0.001;
    161     smf = (((icefac-pddicefac0)/(Tsum+1))*pow((10.-Tsum),3) + pddicefac0)*0.001;
     160          snwmf = (0.15*(Tsum+1) + (2.65+snowfac-pddsnowfac0))*0.001;
     161          smf = (((17.22-icefac)/(pow(11,3)))*pow((10.-Tsum),3) + pddicefac0)*0.001;
     162          //JC,smf = (((icefac-pddicefac0)/(Tsum+1))*pow((10.-Tsum),3) + pddicefac0)*0.001;
    162163  }
    163164  else{
Note: See TracChangeset for help on using the changeset viewer.