Changeset 22135


Ignore:
Timestamp:
10/04/17 15:56:07 (8 years ago)
Author:
erobo
Message:

CHG: added check for time integration (if time=0, do not integrate)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Misfit.h

    r21747 r22135  
    166166                                 if(time==finaltime)this->lock=1;
    167167
    168                                  /*What we return is the value of misfit / time: */
    169                                  return misfit/(time-starttime);
     168                                 /*What we return is the value of misfit / time if transient*/
     169                                 if(time!=0) misfit = misfit/(time-starttime);
     170
     171                                 return misfit;
    170172                         } /*}}}*/
    171173                         else if (this->local==2){ /*vertex by vertex computation: {{{*/
Note: See TracChangeset for help on using the changeset viewer.