Changeset 21626 for issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
- Timestamp:
- 03/23/17 15:47:16 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r21620 r21626 216 216 IssmDouble calvingrate[NUMVERTICES]; 217 217 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; 219 220 220 221 /* Get node coordinates and dof list: */ … … 227 228 IssmDouble B = this->GetMaterialParameter(MaterialsRheologyBbarEnum); 228 229 IssmDouble n = this->GetMaterialParameter(MaterialsRheologyNEnum); 230 this->parameters->FindParam(&sigma_max_floating,CalvingStressThresholdFloatingiceEnum); 231 this->parameters->FindParam(&sigma_max_grounded,CalvingStressThresholdGroundediceEnum); 229 232 230 233 /* Start looping on the number of vertices: */ … … 254 257 epse_2 = 1./2. *(lambda1*lambda1 + lambda2*lambda2); 255 258 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; 269 270 270 271 /*Assign values*/ … … 294 295 IssmDouble calvingratey[NUMVERTICES]; 295 296 IssmDouble calvingrate[NUMVERTICES]; 296 297 297 298 298 /* Get node coordinates and dof list: */
Note:
See TracChangeset
for help on using the changeset viewer.