Changeset 19006
- Timestamp:
- 01/13/15 14:46:37 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/HydrologyDCEfficientAnalysis.cpp
r19003 r19006 591 591 592 592 /*Compute first the effective pressure in the EPL*/ 593 EPL_N=gravity*((rho_ice*ice_thickness[i])-(rho_water*m in(0.0,(eplhead[i]-bed[i]))));593 EPL_N=gravity*((rho_ice*ice_thickness[i])-(rho_water*max(0.0,(eplhead[i]-bed[i])))); 594 594 if(EPL_N<0.0)EPL_N=0.0; 595 595 /*Get then the square of the gradient of EPL heads*/ … … 598 598 /*And proceed to the real thing*/ 599 599 thickness[i] = old_thickness[i]*(1+((rho_water*gravity*dt)/(rho_ice*latentheat))*epl_conductivity*EPLgrad2-2.0*(A*dt/(pow(n,n)))*(pow(EPL_N,n))); 600 601 printf("old: %e, new: %e, grad: %e \n",old_thickness[i],thickness[i],EPLgrad2); 600 602 601 603 /*Take care of otherthikening*/
Note:
See TracChangeset
for help on using the changeset viewer.