Changeset 23840


Ignore:
Timestamp:
04/11/19 14:40:05 (6 years ago)
Author:
Mathieu Morlighem
Message:

BUG: fixed Schoof

Location:
issm/trunk-jpl/src
Files:
3 edited

Legend:

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

    r23839 r23840  
    871871                        break;
    872872                case 11:
     873                        iomodel->FetchDataToInput(elements,"md.friction.m",FrictionMEnum);
    873874                        iomodel->FetchDataToInput(elements,"md.friction.C",FrictionCEnum);
    874875                        iomodel->FetchDataToInput(elements,"md.friction.Cmax",FrictionCmaxEnum);
     876                        break;
    875877                default:
    876878                        _error_("friction law "<< frictionlaw <<" not supported");
     
    968970                        break;
    969971                case 11:
    970                         parameters->AddObject(iomodel->CopyConstantObject("md.friction.m",FrictionMEnum));
     972                        parameters->AddObject(new IntParam(FrictionCouplingEnum,2));
    971973                        break;
    972974                default: _error_("Friction law "<<frictionlaw<<" not implemented yet");
  • issm/trunk-jpl/src/c/classes/Loads/Friction.cpp

    r23839 r23840  
    5656        }
    5757
     58
     59        /*Checks*/
     60        _assert_(!xIsNan<IssmDouble>(*palpha_complement));
     61        _assert_(!xIsInf<IssmDouble>(*palpha_complement));
     62
    5863}/*}}}*/
    5964void Friction::GetAlphaHydroComplement(IssmDouble* palpha_complement, Gauss* gauss){/*{{{*/
     
    9398                                        (Gamma/As - (alpha*q_exp*pow(Chi,q_exp-1.)* Gamma * Gamma/As));
    9499
    95         _assert_(!xIsNan<IssmDouble>(alpha_complement));
    96100        /*Assign output pointers:*/
    97101        *palpha_complement=alpha_complement;
     
    154158        else alpha_complement=pow(Neff,r)*pow(vmag,(s-1));
    155159
    156         _assert_(!xIsNan<IssmDouble>(alpha_complement));
    157         _assert_(!xIsInf<IssmDouble>(alpha_complement));
    158 
    159160        /*Assign output pointers:*/
    160161        *palpha_complement=alpha_complement;
     
    200201                        _error_("Friction law "<< this->law <<" not supported");
    201202        }
     203
     204        /*Checks*/
     205        _assert_(!xIsNan<IssmDouble>(*palpha2));
     206        _assert_(!xIsInf<IssmDouble>(*palpha2));
     207        _assert_(*palpha2>=0);
    202208
    203209}/*}}}*/
     
    245251        if(alpha2_coulomb<alpha2) alpha2=alpha2_coulomb;
    246252
    247         _assert_(!xIsNan<IssmDouble>(alpha2));
    248 
    249253        /*Assign output pointers:*/
    250254        *palpha2=alpha2;
     
    292296        else    alpha2=Neff * C_param * pow(Gamma,1./n) * pow(vmag,-1);
    293297
    294         _assert_(!xIsNan<IssmDouble>(alpha2));
    295298        /*Assign output pointers:*/
    296299        *palpha2=alpha2;
     
    324327
    325328        alpha2=drag_coefficient*drag_coefficient*Neff;
    326         _assert_(!xIsNan<IssmDouble>(alpha2));
    327329
    328330        /*Assign output pointers:*/
     
    396398        alpha2 = alpha2 * exp((deltaTref - deltaT)/(2*gamma));
    397399
    398         /*Final checks in debuging mode*/
    399         _assert_(!xIsNan<IssmDouble>(alpha2));
    400         _assert_(!xIsInf<IssmDouble>(alpha2));
    401 
    402400        /*Assign output pointers:*/
    403401        *palpha2=alpha2;
     
    430428        if(vmag==0. && (s-1.)<0.) alpha2=0.;
    431429        else alpha2=drag_coefficient*drag_coefficient*pow(Neff,r)*pow(vmag,(s-1.));
    432         _assert_(!xIsNan<IssmDouble>(alpha2));
    433430
    434431        /*Assign output pointers:*/
     
    477474        if(vmag==0. && (s-1.)<0.) alpha2=0.;
    478475        else alpha2=drag_coefficient*drag_coefficient*pow(Neff,r)*pow(vmag,(s-1.));
    479         _assert_(!xIsNan<IssmDouble>(alpha2));
    480476
    481477        /*Assign output pointers:*/
     
    500496        if(vmag==0. && (1./m-1.)<0.) alpha2=0.;
    501497        else alpha2=pow(C,-1./m)*pow(vmag,(1./m-1.));
    502         _assert_(!xIsNan<IssmDouble>(alpha2));
    503498
    504499        /*Assign output pointers:*/
     
    595590        IssmDouble alpha2 = tau_c/(pow(ub+1.e-10,1.-q)*pow(u0,q));
    596591
    597         /*Final checks in debuging mode*/
    598         _assert_(!xIsNan<IssmDouble>(alpha2));
    599         _assert_(!xIsInf<IssmDouble>(alpha2));
    600 
    601592        /*Assign output pointers:*/
    602593        *palpha2=alpha2;
     
    613604
    614605        /*diverse: */
    615         IssmDouble  C,Cmax,m;
     606        IssmDouble  C,Cmax,m,alpha2;
    616607
    617608        /*Recover parameters: */
     
    625616
    626617        /*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        }
    632624
    633625        /*Assign output pointers:*/
  • issm/trunk-jpl/src/m/classes/frictionschoof.m

    r23839 r23840  
    88                C    = NaN;
    99                Cmax = NaN;
    10                 m    = 0.;
     10                m    = NaN;
    1111        end
    1212        methods
     
    2525                function self = setdefaultparameters(self) % {{{
    2626
    27                         %default m is 1/n = 1/3
    28                         self.m = 1./3.;
    29 
    3027                end % }}}
    3128                function md = checkconsistency(self,md,solution,analyses) % {{{
     
    3532                        md = checkfield(md,'fieldname','friction.C','timeseries',1,'NaN',1,'Inf',1,'>',0.);
    3633                        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]);
    3835                end % }}}
    3936                function disp(self) % {{{
     
    5552                        WriteData(fid,prefix,'class','friction','object',self,'fieldname','C','format','DoubleMat','mattype',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);
    5653                        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);
    5855                       
    5956
Note: See TracChangeset for help on using the changeset viewer.