Changeset 2978


Ignore:
Timestamp:
02/08/10 08:53:00 (15 years ago)
Author:
Mathieu Morlighem
Message:

Check that nu!=0 to avoid Matlab's annoying warning

File:
1 edited

Legend:

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

    r2330 r2978  
    4545        %print criterion
    4646        if ~isnan(eps_rel),
    47                 if (ndu/nu<=eps_rel),
    48                         displaystring(verbose,'%-60s%g%s%g%s','      relative convergence criterion: norm(du)/norm(u)',ndu/nu*100,' < ',eps_rel*100,' %');
     47                if nu, %avoid "dividing by zero" warning
     48                        if (ndu/nu<=eps_rel),
     49                                displaystring(verbose,'%-60s%g%s%g%s','      relative convergence criterion: norm(du)/norm(u)',ndu/nu*100,' < ',eps_rel*100,' %');
     50                        else
     51                                displaystring(verbose,'%-60s%g%s%g%s','      relative convergence criterion: norm(du)/norm(u)',ndu/nu*100,' > ',eps_rel*100,' %');
     52                                converged=0;
     53                        end
    4954                else
    50                         displaystring(verbose,'%-60s%g%s%g%s','      relative convergence criterion: norm(du)/norm(u)',ndu/nu*100,' > ',eps_rel*100,' %');
    5155                        converged=0;
    5256                end
    5357        else
    54                 displaystring(verbose,'%-60s%g%s','      relative convergence criterion: norm(du)/norm(u)',ndu/nu*100,' %');
     58                if nu, %avoid "dividing by zero" warning
     59                        displaystring(verbose,'%-60s%g%s','      relative convergence criterion: norm(du)/norm(u)',ndu/nu*100,' %');
     60                end
    5561        end
    5662
Note: See TracChangeset for help on using the changeset viewer.