Changeset 24095
- Timestamp:
- 07/15/19 17:50:28 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/shared/Elements/PddSurfaceMassBalance.cpp
r23400 r24095 135 135 snowfac=pddsnowfac0; 136 136 icefac=pddicefac0; 137 if (pddsnowfac> =0) {137 if (pddsnowfac>0) { 138 138 if (pddsnowfac<1.65) { 139 139 _printf0_("WARNING: Pdd snow factor input, " << pddsnowfac << ", results in a negative value. It will be ignored. \n"); … … 143 143 } 144 144 } 145 if (pddicefac> =0) {145 if (pddicefac>0) { 146 146 if (pddicefac>17.22) { 147 _printf0_("WARNING: Pdd ice factor input, " << pdd snowfac << ", 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"); 148 148 } 149 149 else{ … … 158 158 } 159 159 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; 162 163 } 163 164 else{
Note:
See TracChangeset
for help on using the changeset viewer.