Changeset 18991


Ignore:
Timestamp:
01/06/15 13:01:44 (10 years ago)
Author:
bdef
Message:

BUG: adding the case where effective pressure is null

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Loads/Friction.cpp

    r18990 r18991  
    195195        /*Check to prevent dividing by zero if vmag==0*/
    196196        if(vmag==0.) alpha2=0.;
     197        else if (Neff==0) alpha2=0.0;
    197198        else alpha2= Neff * C_param * pow((Chi/(1 + alpha * pow(Chi,q_exp))),1/n) * 1/vmag;
    198199        _assert_(!xIsNan<IssmDouble>(alpha2));
Note: See TracChangeset for help on using the changeset viewer.