Ignore:
Timestamp:
01/13/15 08:37:22 (10 years ago)
Author:
bdef
Message:

CHG:Corection ine Epl thickness and effective pressure computation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/analyses/HydrologyDCEfficientAnalysis.cpp

    r18981 r19003  
    591591                               
    592592                                /*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]))));
    594594                                if(EPL_N<0.0)EPL_N=0.0;
    595595                                /*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]);
    597597                               
    598598                                /*And proceed to the real thing*/
     
    712712                                        vec_mask->SetValue(basalelement->nodes[i]->Sid(),0.,INS_VAL);
    713713                                        epl_thickness[i]=init_thick;
    714                                         //If no more active nodes in the element probably colapse it two
    715714                                }
    716715                                else{
Note: See TracChangeset for help on using the changeset viewer.