Changeset 25366


Ignore:
Timestamp:
08/10/20 15:46:03 (5 years ago)
Author:
Cheng Gong
Message:

NEW: add inversion for Weertman friction law. In order to achieve better convergence, Weertman friction law is modified to sigma_b=C2 |u_b|(1/m-1)u_b

Location:
issm/trunk-jpl
Files:
2 added
6 edited

Legend:

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

    r25317 r25366  
    17131713        basalelement->GradientIndexing(&vertexpidlist[0],control_index);
    17141714
    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*/
    17161716        element->FindParam(&frictionlaw, FrictionLawEnum);
    17171717        Input2* dragcoefficient_input;
    17181718        switch(frictionlaw) {
     1719                case 2:
    17191720                case 11:
    17201721                        dragcoefficient_input = basalelement->GetInput2(FrictionCEnum); _assert_(dragcoefficient_input);
     
    19971998                        dragcoeff_input = basalelement->GetInput2(FrictionCoefficientEnum); _assert_(dragcoeff_input);
    19981999                        break;
     2000                case 2:
    19992001                case 11:
    20002002                        dragcoeff_input = basalelement->GetInput2(FrictionCEnum); _assert_(dragcoeff_input);
  • issm/trunk-jpl/src/c/classes/Loads/Friction.cpp

    r25201 r25366  
    4646                        GetAlphaViscousComplement(palpha_complement,gauss);
    4747                        break;
     48                case 2:
     49                        GetAlphaWeertmanComplement(palpha_complement, gauss);
     50                        break;
    4851                case 3:
    4952                        GetAlphaHydroComplement(palpha_complement,gauss);
     
    134137void Friction::GetAlphaViscousComplement(IssmDouble* palpha_complement, Gauss* gauss){/*{{{*/
    135138
    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.
    137140         * 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)*/
    139142
    140143        /*diverse: */
     
    194197                alpha_complement= pow(vmag, m-1.)*pow((1 + pow(C/(Cmax*Neff),1./m)*vmag), -m-1.);
    195198        }
     199        /*Assign output pointers:*/
     200        *palpha_complement=alpha_complement;
     201}/*}}}*/
     202void 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       
    196222        /*Assign output pointers:*/
    197223        *palpha_complement=alpha_complement;
     
    530556void Friction::GetAlpha2Weertman(IssmDouble* palpha2, Gauss* gauss){/*{{{*/
    531557
    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) */
    533559
    534560        /*diverse: */
     
    545571        /*Check to prevent dividing by zero if vmag==0*/
    546572        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.));
    548574
    549575        /*Assign output pointers:*/
  • issm/trunk-jpl/src/c/classes/Loads/Friction.h

    r25201 r25366  
    2929                void  GetAlphaViscousComplement(IssmDouble* alpha_complement,Gauss* gauss);
    3030                void  GetAlphaSchoofComplement(IssmDouble* alpha_complement,Gauss* gauss);
     31                void  GetAlphaWeertmanComplement(IssmDouble* alpha_complement,Gauss* gauss);
    3132                void  GetAlpha2(IssmDouble* palpha2,Gauss* gauss);
    3233                void  GetAlpha2Coulomb(IssmDouble* palpha2,Gauss* gauss);
  • issm/trunk-jpl/src/c/modules/DragCoefficientAbsGradientx/DragCoefficientAbsGradientx.cpp

    r25201 r25366  
    6767        Input2* drag_input;
    6868        switch(frictionlaw) {
     69                case 2:
    6970                case 11:
    7071                        drag_input = basalelement->GetInput2(FrictionCEnum); _assert_(drag_input);
  • issm/trunk-jpl/src/m/classes/frictionweertman.m

    r21049 r25366  
    99                m = NaN;
    1010        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 %}}}
    1116        methods
    1217                function self = frictionweertman(varargin) % {{{
     
    3237                        md = checkfield(md,'fieldname','friction.m','NaN',1,'Inf',1,'size',[md.mesh.numberofelements 1]);
    3338                end % }}}
    34                 function disp(self) % {{{
     39                function disp(self) % {{{z
    3540                        disp('Weertman sliding law parameters:');
    3641                        disp('   Weertman''s sliding law reads:');
    37                         disp('      v_b = C * Sigma_b^m');
     42                        disp('      v_b = C_w * Sigma_b^m');
    3843                        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)');
    4046                        disp(' ');
    4147                        fielddisplay(self,'C','friction coefficient [SI]');
  • issm/trunk-jpl/src/m/classes/frictionweertmantemp.m

    r21049 r25366  
    1010                m = NaN;
    1111        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 %}}}
    1218        methods
    1319                function self = frictionweertmantemp(varargin) % {{{
     
    3137                function disp(self) % {{{
    3238                        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)');
    3440                        disp(' ');
    3541                        fielddisplay(self,'gamma','submelt sliding parameter f(T) = exp((T-Tpmp)/gamma)');
Note: See TracChangeset for help on using the changeset viewer.