Changeset 21500
- Timestamp:
- 01/24/17 01:23:24 (8 years ago)
- Location:
- issm/trunk-jpl/src/c/analyses
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/HydrologyDCEfficientAnalysis.cpp
r21489 r21500 573 573 EPLgrad2 = (epl_slopeX[i]*epl_slopeX[i])+(epl_slopeY[i]*epl_slopeY[i]); 574 574 /*And proceed to the real thing*/ 575 thickness[i] = old_thickness[i]/(1.0-((rho_water*gravity*epl_conductivity*EPLgrad2*dt)/(rho_ice*latentheat))+((2.0*A*dt*pow(EPL_N,n))/(pow(n,n)))); 575 thickness[i] = old_thickness[i]/(1.0 576 -((rho_water*gravity*epl_conductivity*EPLgrad2*dt)/(rho_ice*latentheat)) 577 +((2.0*A*dt*pow(EPL_N,n))/(pow(n,n)))); 576 578 /*Take care of otherthikening*/ 577 579 if(thickness[i]>max_thick){ -
issm/trunk-jpl/src/c/analyses/HydrologyDCInefficientAnalysis.cpp
r21476 r21500 488 488 } 489 489 //adding base in min to take into account heads under bed wich don't change N 490 pressure[i]=(rho_ice*g*thickness[i])-(rho_freshwater*g*(max((min(h_max,values[i])-base[i]),0.0))); 490 //pressure[i]=(rho_ice*g*thickness[i])-(rho_freshwater*g*(max((min(h_max,values[i])-base[i]),0.0))); 491 pressure[i]=(rho_ice*g*thickness[i])-(rho_freshwater*g*(values[i]-base[i])); 491 492 } 492 493 xDelete<IssmDouble>(thickness);
Note:
See TracChangeset
for help on using the changeset viewer.