Changeset 19003
- Timestamp:
- 01/13/15 08:37:22 (10 years ago)
- Location:
- issm/trunk-jpl/src/c/analyses
- Files:
-
- 2 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{ -
issm/trunk-jpl/src/c/analyses/HydrologyDCInefficientAnalysis.cpp
r18975 r19003 466 466 residual[i] = 0.; 467 467 } 468 pressure[i]=(rho_ice*g*thickness[i])-(rho_freshwater*g*(min(h_max,values[i])-base[i])); 468 //adding base in min to take into account heads under bed wich don't change N 469 pressure[i]=(rho_ice*g*thickness[i])-(rho_freshwater*g*(min(h_max,values[i],base[i])-base[i])); 469 470 } 470 471 xDelete<IssmDouble>(thickness);
Note:
See TracChangeset
for help on using the changeset viewer.