- Timestamp:
- 01/13/15 08:37:22 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/HydrologyDCEfficientAnalysis.cpp
r18981 r19003 591 591 592 592 /*Compute first the effective pressure in the EPL*/ 593 EPL_N=gravity*((rho_ice*ice_thickness[i])-(rho_water* (eplhead[i]-bed[i])));593 EPL_N=gravity*((rho_ice*ice_thickness[i])-(rho_water*min(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*/ 596 EPLgrad2 = (epl_slopeX[i] +epl_slopeY[i])*(epl_slopeX[i]+epl_slopeY[i]);596 EPLgrad2 = (epl_slopeX[i]*epl_slopeX[i])+(epl_slopeY[i]*epl_slopeY[i]); 597 597 598 598 /*And proceed to the real thing*/ … … 712 712 vec_mask->SetValue(basalelement->nodes[i]->Sid(),0.,INS_VAL); 713 713 epl_thickness[i]=init_thick; 714 //If no more active nodes in the element probably colapse it two715 714 } 716 715 else{
Note:
See TracChangeset
for help on using the changeset viewer.