Ignore:
Timestamp:
03/23/17 15:47:16 (8 years ago)
Author:
youngmc3
Message:

CHG: added calving stress thresholds and calving max parameters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r21620 r21626  
    216216        IssmDouble  calvingrate[NUMVERTICES];
    217217        IssmDouble  lambda1,lambda2,ex,ey,vx,vy,vel;
    218         IssmDouble  sigma_vm,sigma_max,epse_2,groundedice;
     218        IssmDouble  sigma_vm,sigma_max,sigma_max_floating,sigma_max_grounded;
     219        IssmDouble  epse_2,groundedice;
    219220
    220221        /* Get node coordinates and dof list: */
     
    227228        IssmDouble  B   = this->GetMaterialParameter(MaterialsRheologyBbarEnum);
    228229        IssmDouble  n   = this->GetMaterialParameter(MaterialsRheologyNEnum);
     230        this->parameters->FindParam(&sigma_max_floating,CalvingStressThresholdFloatingiceEnum);
     231        this->parameters->FindParam(&sigma_max_grounded,CalvingStressThresholdGroundediceEnum);
    229232
    230233        /* Start looping on the number of vertices: */
     
    254257                epse_2    = 1./2. *(lambda1*lambda1 + lambda2*lambda2);
    255258                sigma_vm  = sqrt(3.) * B * pow(epse_2,1./(2.*n));
    256                 //sigma_max = 125.e+3;
    257                 sigma_max = 350.e+3;
    258                 sigma_max = 450.e+3;
    259                 sigma_max = 800.e+3; //too much
    260                 //sigma_max = 700.e+3;
    261                 //sigma_max = 670.e+3;
    262                 //sigma_max = 550.e+3;
    263                 sigma_max = 750.e+3; //too high
    264                 sigma_max = 850.e+3; //too low
    265                 sigma_max = 800.e+3; //IUGG previous test
    266                 sigma_max = 1000.e+3; //850 seems small
    267 
    268                 if(groundedice<0) sigma_max=200.e+3;
     259
     260                /*OLD (keep for a little bit)*/
     261                //sigma_max = 800.e+3; //IUGG previous test
     262                //sigma_max = 1000.e+3; //GRL
     263                //if(groundedice<0) sigma_max=150.e+3;
     264
     265                /*Tensile stress threshold*/
     266                if(groundedice<0)
     267                 sigma_max = sigma_max_floating;
     268                else
     269                 sigma_max = sigma_max_grounded;
    269270
    270271                /*Assign values*/
     
    294295        IssmDouble  calvingratey[NUMVERTICES];
    295296        IssmDouble  calvingrate[NUMVERTICES];
    296 
    297297
    298298        /* Get node coordinates and dof list: */
Note: See TracChangeset for help on using the changeset viewer.