Changeset 19003


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

CHG:Corection ine Epl thickness and effective pressure computation

Location:
issm/trunk-jpl/src/c/analyses
Files:
2 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{
  • issm/trunk-jpl/src/c/analyses/HydrologyDCInefficientAnalysis.cpp

    r18975 r19003  
    466466                                residual[i] = 0.;
    467467                        }
    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]));
    469470                }
    470471                xDelete<IssmDouble>(thickness);
Note: See TracChangeset for help on using the changeset viewer.