Changeset 23840
- Timestamp:
- 04/11/19 14:40:05 (6 years ago)
- Location:
- issm/trunk-jpl/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/StressbalanceAnalysis.cpp
r23839 r23840 871 871 break; 872 872 case 11: 873 iomodel->FetchDataToInput(elements,"md.friction.m",FrictionMEnum); 873 874 iomodel->FetchDataToInput(elements,"md.friction.C",FrictionCEnum); 874 875 iomodel->FetchDataToInput(elements,"md.friction.Cmax",FrictionCmaxEnum); 876 break; 875 877 default: 876 878 _error_("friction law "<< frictionlaw <<" not supported"); … … 968 970 break; 969 971 case 11: 970 parameters->AddObject( iomodel->CopyConstantObject("md.friction.m",FrictionMEnum));972 parameters->AddObject(new IntParam(FrictionCouplingEnum,2)); 971 973 break; 972 974 default: _error_("Friction law "<<frictionlaw<<" not implemented yet"); -
issm/trunk-jpl/src/c/classes/Loads/Friction.cpp
r23839 r23840 56 56 } 57 57 58 59 /*Checks*/ 60 _assert_(!xIsNan<IssmDouble>(*palpha_complement)); 61 _assert_(!xIsInf<IssmDouble>(*palpha_complement)); 62 58 63 }/*}}}*/ 59 64 void Friction::GetAlphaHydroComplement(IssmDouble* palpha_complement, Gauss* gauss){/*{{{*/ … … 93 98 (Gamma/As - (alpha*q_exp*pow(Chi,q_exp-1.)* Gamma * Gamma/As)); 94 99 95 _assert_(!xIsNan<IssmDouble>(alpha_complement));96 100 /*Assign output pointers:*/ 97 101 *palpha_complement=alpha_complement; … … 154 158 else alpha_complement=pow(Neff,r)*pow(vmag,(s-1)); 155 159 156 _assert_(!xIsNan<IssmDouble>(alpha_complement));157 _assert_(!xIsInf<IssmDouble>(alpha_complement));158 159 160 /*Assign output pointers:*/ 160 161 *palpha_complement=alpha_complement; … … 200 201 _error_("Friction law "<< this->law <<" not supported"); 201 202 } 203 204 /*Checks*/ 205 _assert_(!xIsNan<IssmDouble>(*palpha2)); 206 _assert_(!xIsInf<IssmDouble>(*palpha2)); 207 _assert_(*palpha2>=0); 202 208 203 209 }/*}}}*/ … … 245 251 if(alpha2_coulomb<alpha2) alpha2=alpha2_coulomb; 246 252 247 _assert_(!xIsNan<IssmDouble>(alpha2));248 249 253 /*Assign output pointers:*/ 250 254 *palpha2=alpha2; … … 292 296 else alpha2=Neff * C_param * pow(Gamma,1./n) * pow(vmag,-1); 293 297 294 _assert_(!xIsNan<IssmDouble>(alpha2));295 298 /*Assign output pointers:*/ 296 299 *palpha2=alpha2; … … 324 327 325 328 alpha2=drag_coefficient*drag_coefficient*Neff; 326 _assert_(!xIsNan<IssmDouble>(alpha2));327 329 328 330 /*Assign output pointers:*/ … … 396 398 alpha2 = alpha2 * exp((deltaTref - deltaT)/(2*gamma)); 397 399 398 /*Final checks in debuging mode*/399 _assert_(!xIsNan<IssmDouble>(alpha2));400 _assert_(!xIsInf<IssmDouble>(alpha2));401 402 400 /*Assign output pointers:*/ 403 401 *palpha2=alpha2; … … 430 428 if(vmag==0. && (s-1.)<0.) alpha2=0.; 431 429 else alpha2=drag_coefficient*drag_coefficient*pow(Neff,r)*pow(vmag,(s-1.)); 432 _assert_(!xIsNan<IssmDouble>(alpha2));433 430 434 431 /*Assign output pointers:*/ … … 477 474 if(vmag==0. && (s-1.)<0.) alpha2=0.; 478 475 else alpha2=drag_coefficient*drag_coefficient*pow(Neff,r)*pow(vmag,(s-1.)); 479 _assert_(!xIsNan<IssmDouble>(alpha2));480 476 481 477 /*Assign output pointers:*/ … … 500 496 if(vmag==0. && (1./m-1.)<0.) alpha2=0.; 501 497 else alpha2=pow(C,-1./m)*pow(vmag,(1./m-1.)); 502 _assert_(!xIsNan<IssmDouble>(alpha2));503 498 504 499 /*Assign output pointers:*/ … … 595 590 IssmDouble alpha2 = tau_c/(pow(ub+1.e-10,1.-q)*pow(u0,q)); 596 591 597 /*Final checks in debuging mode*/598 _assert_(!xIsNan<IssmDouble>(alpha2));599 _assert_(!xIsInf<IssmDouble>(alpha2));600 601 592 /*Assign output pointers:*/ 602 593 *palpha2=alpha2; … … 613 604 614 605 /*diverse: */ 615 IssmDouble C,Cmax,m ;606 IssmDouble C,Cmax,m,alpha2; 616 607 617 608 /*Recover parameters: */ … … 625 616 626 617 /*Compute alpha^2*/ 627 IssmDouble alpha2= (C*pow(ub,m-1.)) / pow(1.+ pow(C/(Cmax*N),1./m)*ub,m); 628 629 /*Checks*/ 630 _assert_(!xIsNan<IssmDouble>(alpha2)); 631 _assert_(alpha2>=0); 618 if(ub<1e-10){ 619 alpha2 = 0.; 620 } 621 else{ 622 alpha2= (C*pow(ub,m-1.)) / pow(1.+ pow(C/(Cmax*N),1./m)*ub,m); 623 } 632 624 633 625 /*Assign output pointers:*/ -
issm/trunk-jpl/src/m/classes/frictionschoof.m
r23839 r23840 8 8 C = NaN; 9 9 Cmax = NaN; 10 m = 0.;10 m = NaN; 11 11 end 12 12 methods … … 25 25 function self = setdefaultparameters(self) % {{{ 26 26 27 %default m is 1/n = 1/328 self.m = 1./3.;29 30 27 end % }}} 31 28 function md = checkconsistency(self,md,solution,analyses) % {{{ … … 35 32 md = checkfield(md,'fieldname','friction.C','timeseries',1,'NaN',1,'Inf',1,'>',0.); 36 33 md = checkfield(md,'fieldname','friction.Cmax','timeseries',1,'NaN',1,'Inf',1,'>',0.); 37 md = checkfield(md,'fieldname','friction.m','NaN',1,'Inf',1,' numel',1,'>',0.);34 md = checkfield(md,'fieldname','friction.m','NaN',1,'Inf',1,'>',0.,'size',[md.mesh.numberofelements,1]); 38 35 end % }}} 39 36 function disp(self) % {{{ … … 55 52 WriteData(fid,prefix,'class','friction','object',self,'fieldname','C','format','DoubleMat','mattype',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts); 56 53 WriteData(fid,prefix,'class','friction','object',self,'fieldname','Cmax','format','DoubleMat','mattype',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts); 57 WriteData(fid,prefix,'class','friction','object',self,'fieldname','m','format','Double ');54 WriteData(fid,prefix,'class','friction','object',self,'fieldname','m','format','DoubleMat','mattype',2); 58 55 59 56
Note:
See TracChangeset
for help on using the changeset viewer.