Changeset 25366
- Timestamp:
- 08/10/20 15:46:03 (5 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 2 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/AdjointHorizAnalysis.cpp
r25317 r25366 1713 1713 basalelement->GradientIndexing(&vertexpidlist[0],control_index); 1714 1714 1715 /* get the friction law: if 11-Schoof, use a special name for the coefficient*/1715 /* get the friction law: if 2-Weertman, 11-Schoof, use a special name for the coefficient*/ 1716 1716 element->FindParam(&frictionlaw, FrictionLawEnum); 1717 1717 Input2* dragcoefficient_input; 1718 1718 switch(frictionlaw) { 1719 case 2: 1719 1720 case 11: 1720 1721 dragcoefficient_input = basalelement->GetInput2(FrictionCEnum); _assert_(dragcoefficient_input); … … 1997 1998 dragcoeff_input = basalelement->GetInput2(FrictionCoefficientEnum); _assert_(dragcoeff_input); 1998 1999 break; 2000 case 2: 1999 2001 case 11: 2000 2002 dragcoeff_input = basalelement->GetInput2(FrictionCEnum); _assert_(dragcoeff_input); -
issm/trunk-jpl/src/c/classes/Loads/Friction.cpp
r25201 r25366 46 46 GetAlphaViscousComplement(palpha_complement,gauss); 47 47 break; 48 case 2: 49 GetAlphaWeertmanComplement(palpha_complement, gauss); 50 break; 48 51 case 3: 49 52 GetAlphaHydroComplement(palpha_complement,gauss); … … 134 137 void Friction::GetAlphaViscousComplement(IssmDouble* palpha_complement, Gauss* gauss){/*{{{*/ 135 138 136 /* FrictionGetAlpha2 computes alpha2= drag^2 * Neff ^r * vel ^ s, with Neff=rho_ice*g*thickness+rho_ice*g*base, r=q/p and s=1/p.139 /* FrictionGetAlpha2 computes alpha2= drag^2 * Neff ^r * vel ^(s-1), with Neff=rho_ice*g*thickness+rho_ice*g*base, r=q/p and s=1/p. 137 140 * FrictionGetAlphaComplement is used in control methods on drag, and it computes: 138 * alpha_complement= Neff ^r * vel ^ s*/141 * alpha_complement= Neff ^r * vel ^(s-1)*/ 139 142 140 143 /*diverse: */ … … 194 197 alpha_complement= pow(vmag, m-1.)*pow((1 + pow(C/(Cmax*Neff),1./m)*vmag), -m-1.); 195 198 } 199 /*Assign output pointers:*/ 200 *palpha_complement=alpha_complement; 201 }/*}}}*/ 202 void Friction::GetAlphaWeertmanComplement(IssmDouble* palpha_complement, Gauss* gauss){/*{{{*/ 203 204 /* Compute the complement of Weertman's law for inversion 205 * alpha2 = C^2 * vel^(1/m-1) 206 * alpha_complement = vel^(1/m-1) 207 */ 208 /*diverse: */ 209 IssmDouble m; 210 IssmDouble alpha_complement; 211 212 /*Recover parameters: */ 213 element->GetInputValue(&m,gauss,FrictionMEnum); 214 215 /*Get effective pressure*/ 216 IssmDouble vmag = VelMag(gauss); 217 218 /*Check to prevent dividing by zero if vmag==0*/ 219 if(vmag==0. && (1./m-1.)<0.) alpha_complement=0.; 220 else alpha_complement= pow(vmag, 1.0/m-1.); 221 196 222 /*Assign output pointers:*/ 197 223 *palpha_complement=alpha_complement; … … 530 556 void Friction::GetAlpha2Weertman(IssmDouble* palpha2, Gauss* gauss){/*{{{*/ 531 557 532 /*This routine calculates the basal friction coefficient alpha2= C^ -1/m|v|^(1/m-1) */558 /*This routine calculates the basal friction coefficient alpha2= C^2 |v|^(1/m-1) */ 533 559 534 560 /*diverse: */ … … 545 571 /*Check to prevent dividing by zero if vmag==0*/ 546 572 if(vmag==0. && (1./m-1.)<0.) alpha2=0.; 547 else alpha2= pow(C,-1./m)*pow(vmag,(1./m-1.));573 else alpha2=C*C*pow(vmag,(1./m-1.)); 548 574 549 575 /*Assign output pointers:*/ -
issm/trunk-jpl/src/c/classes/Loads/Friction.h
r25201 r25366 29 29 void GetAlphaViscousComplement(IssmDouble* alpha_complement,Gauss* gauss); 30 30 void GetAlphaSchoofComplement(IssmDouble* alpha_complement,Gauss* gauss); 31 void GetAlphaWeertmanComplement(IssmDouble* alpha_complement,Gauss* gauss); 31 32 void GetAlpha2(IssmDouble* palpha2,Gauss* gauss); 32 33 void GetAlpha2Coulomb(IssmDouble* palpha2,Gauss* gauss); -
issm/trunk-jpl/src/c/modules/DragCoefficientAbsGradientx/DragCoefficientAbsGradientx.cpp
r25201 r25366 67 67 Input2* drag_input; 68 68 switch(frictionlaw) { 69 case 2: 69 70 case 11: 70 71 drag_input = basalelement->GetInput2(FrictionCEnum); _assert_(drag_input); -
issm/trunk-jpl/src/m/classes/frictionweertman.m
r21049 r25366 9 9 m = NaN; 10 10 end 11 methods (Static) 12 function self = loadobj(self) % {{{ 13 disp('Warning: the Weertman friciton law is updated to Sigma_b = C^2*|u_b|^(1/m-1)*u_b, since 2020-08-10'); 14 end 15 end %}}} 11 16 methods 12 17 function self = frictionweertman(varargin) % {{{ … … 32 37 md = checkfield(md,'fieldname','friction.m','NaN',1,'Inf',1,'size',[md.mesh.numberofelements 1]); 33 38 end % }}} 34 function disp(self) % {{{ 39 function disp(self) % {{{z 35 40 disp('Weertman sliding law parameters:'); 36 41 disp(' Weertman''s sliding law reads:'); 37 disp(' v_b = C * Sigma_b^m');42 disp(' v_b = C_w * Sigma_b^m'); 38 43 disp(' In ISSM, this law is rewritten as:'); 39 disp(' Sigma_b = C^(-1/m) * |u_b|^(1/m-1) u_b'); 44 disp(' Sigma_b = C^2 * |u_b|^(1/m-1) * u_b'); 45 disp(' where C_w=C^(-2m)'); 40 46 disp(' '); 41 47 fielddisplay(self,'C','friction coefficient [SI]'); -
issm/trunk-jpl/src/m/classes/frictionweertmantemp.m
r21049 r25366 10 10 m = NaN; 11 11 end 12 methods (Static) 13 function self = loadobj(self) % {{{ 14 disp('Warning: the Weertman friciton law is updated to Sigma_b = C^2*|u_b|^(1/m-1)*u_b, since 2020-08-10'); 15 disp(' and friction coefficient in the temprature dependent version is updated accordingly.'); 16 end 17 end %}}} 12 18 methods 13 19 function self = frictionweertmantemp(varargin) % {{{ … … 31 37 function disp(self) % {{{ 32 38 disp('Weertman sliding law parameters:'); 33 disp(' Sigma_b = C^ (-1/m)* |u_b|^(1/m-1) u_b * 1/f(T)');39 disp(' Sigma_b = C^2 * |u_b|^(1/m-1) u_b * 1/f(T)'); 34 40 disp(' '); 35 41 fielddisplay(self,'gamma','submelt sliding parameter f(T) = exp((T-Tpmp)/gamma)');
Note:
See TracChangeset
for help on using the changeset viewer.