Changeset 18584
- Timestamp:
- 10/07/14 09:03:24 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/c/modules/SurfaceMassBalancex/SurfaceMassBalancex.cpp ¶
r18521 r18584 31 31 break; 32 32 case SMBgradientsEnum: 33 if(VerboseSolution())_printf _(" call smb gradients module\n");33 if(VerboseSolution())_printf0_(" call smb gradients module\n"); 34 34 SmbGradientsx(femmodel); 35 35 break; 36 36 case SMBhenningEnum: 37 if(VerboseSolution())_printf _(" call smb Henning module\n");37 if(VerboseSolution())_printf0_(" call smb Henning module\n"); 38 38 SmbHenningx(femmodel); 39 39 break; 40 40 case SMBcomponentsEnum: 41 if(VerboseSolution())_printf _(" call smb Components module\n");41 if(VerboseSolution())_printf0_(" call smb Components module\n"); 42 42 SmbComponentsx(femmodel); 43 43 break; 44 44 case SMBmeltcomponentsEnum: 45 if(VerboseSolution())_printf _(" call smb Melt Components module\n");45 if(VerboseSolution())_printf0_(" call smb Melt Components module\n"); 46 46 SmbMeltComponentsx(femmodel); 47 47 break; … … 263 263 } 264 264 265 /* Compute smb including anomaly, 266 correct for number of seconds in a year [s/yr]*/ 267 smb = smb + anomaly*yts; 268 265 /* Compute smb including anomaly, 266 correct for number of seconds in a year [s/yr]*/ 267 smb = smb/yts + anomaly; 268 269 269 270 /*Update array accordingly*/ 270 271 smblist[v] = smb;
Note:
See TracChangeset
for help on using the changeset viewer.