Changeset 19006


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

BUG:fixing epl thickness computation

File:
1 edited

Legend:

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

    r19003 r19006  
    591591                               
    592592                                /*Compute first the effective pressure in the EPL*/
    593                                 EPL_N=gravity*((rho_ice*ice_thickness[i])-(rho_water*min(0.0,(eplhead[i]-bed[i]))));
     593                                EPL_N=gravity*((rho_ice*ice_thickness[i])-(rho_water*max(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*/
     
    598598                                /*And proceed to the real thing*/
    599599                                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);
    600602                               
    601603                                /*Take care of otherthikening*/
Note: See TracChangeset for help on using the changeset viewer.