Ignore:
Timestamp:
09/08/11 08:07:18 (14 years ago)
Author:
seroussi
Message:

added diagnostic class

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/solutions/convergence.m

    r9597 r9679  
    66%Get convergence options
    77yts=parameters.ConstantsYts;
    8 eps_res=parameters.EpsRes;
    9 eps_rel=parameters.EpsRel;
    10 eps_abs=parameters.EpsAbs;
     8restol=parameters.DiagnosticRestol;
     9reltol=parameters.DiagnosticReltol;
     10abstol=parameters.DiagnosticAbstol;
    1111
    1212%initialization
     
    2525        error('convergence error message: mechanical equilibrium convergence criterion is NaN!');
    2626end
    27 if (res<=eps_res),
    28         issmprintf(VerboseConvergence(),'%-60s%g%s%g%s','      mechanical equilibrium convergence criterion',res*100,' < ',eps_res*100,' %');
     27if (res<=restol),
     28        issmprintf(VerboseConvergence(),'%-60s%g%s%g%s','      mechanical equilibrium convergence criterion',res*100,' < ',restol*100,' %');
    2929        converged=true;
    3030else
    31         issmprintf(VerboseConvergence(),'%-60s%g%s%g%s','      mechanical equilibrium convergence criterion',res*100,' > ',eps_res*100,' %');
     31        issmprintf(VerboseConvergence(),'%-60s%g%s%g%s','      mechanical equilibrium convergence criterion',res*100,' > ',restol*100,' %');
    3232        converged=false;
    3333end
    3434
    3535%Relative criterion (optional)
    36 if ((~isnan(eps_rel)) | (VerboseConvergence())),
     36if ((~isnan(reltol)) | (VerboseConvergence())),
    3737
    3838        %compute ndu/nu
     
    4545
    4646        %print criterion
    47         if ~isnan(eps_rel),
     47        if ~isnan(reltol),
    4848                if nu, %avoid "dividing by zero" warning
    49                         if (ndu/nu<=eps_rel),
    50                                 issmprintf(VerboseConvergence(),'%-60s%g%s%g%s','      relative convergence criterion: norm(du)/norm(u)',ndu/nu*100,' < ',eps_rel*100,' %');
     49                        if (ndu/nu<=reltol),
     50                                issmprintf(VerboseConvergence(),'%-60s%g%s%g%s','      relative convergence criterion: norm(du)/norm(u)',ndu/nu*100,' < ',reltol*100,' %');
    5151                        else
    52                                 issmprintf(VerboseConvergence(),'%-60s%g%s%g%s','      relative convergence criterion: norm(du)/norm(u)',ndu/nu*100,' > ',eps_rel*100,' %');
     52                                issmprintf(VerboseConvergence(),'%-60s%g%s%g%s','      relative convergence criterion: norm(du)/norm(u)',ndu/nu*100,' > ',reltol*100,' %');
    5353                                converged=false;
    5454                        end
     
    6565
    6666%Absolute criterion (optional)
    67 if ((~isnan(eps_abs)) | VerboseConvergence()),
     67if ((~isnan(abstol)) | VerboseConvergence()),
    6868
    6969        %compute max(du)
     
    7575
    7676        %print criterion
    77         if ~isnan(eps_abs),
    78                 if (nduinf<=eps_abs),
    79                         issmprintf(VerboseConvergence(),'%-60s%g%s%g%s','      absolute convergence criterion: max(du)',nduinf,' < ',eps_abs,' m/yr');
     77        if ~isnan(abstol),
     78                if (nduinf<=abstol),
     79                        issmprintf(VerboseConvergence(),'%-60s%g%s%g%s','      absolute convergence criterion: max(du)',nduinf,' < ',abstol,' m/yr');
    8080                else
    81                         issmprintf(VerboseConvergence(),'%-60s%g%s%g%s','      absolute convergence criterion: max(du)',nduinf,' > ',eps_abs,' m/yr');
     81                        issmprintf(VerboseConvergence(),'%-60s%g%s%g%s','      absolute convergence criterion: max(du)',nduinf,' > ',abstol,' m/yr');
    8282                        converged=false;
    8383                end
Note: See TracChangeset for help on using the changeset viewer.