Changeset 21500


Ignore:
Timestamp:
01/24/17 01:23:24 (8 years ago)
Author:
bdef
Message:

CHG:removing restrictions on N computation

Location:
issm/trunk-jpl/src/c/analyses
Files:
2 edited

Legend:

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

    r21489 r21500  
    573573                                EPLgrad2 = (epl_slopeX[i]*epl_slopeX[i])+(epl_slopeY[i]*epl_slopeY[i]);
    574574                                /*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))));
    576578                                /*Take care of otherthikening*/
    577579                                if(thickness[i]>max_thick){
  • issm/trunk-jpl/src/c/analyses/HydrologyDCInefficientAnalysis.cpp

    r21476 r21500  
    488488                        }
    489489                        //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]));
    491492                }
    492493                xDelete<IssmDouble>(thickness);
Note: See TracChangeset for help on using the changeset viewer.