Changeset 23983


Ignore:
Timestamp:
06/04/19 13:29:27 (6 years ago)
Author:
felicity
Message:

BUG: typo semicolon in making S positive definite

File:
1 edited

Legend:

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

    r23977 r23983  
    677677        /*Compute new S based on Forward Euler (explicit)*/
    678678        this->S = this->S + dt*( (Xi - Pi)/(rho_ice*L) - vc);
    679         if(this->S<0.); this->S = 0.;
     679        if(this->S<0.) this->S = 0.;
    680680
    681681        /*Clean up and return*/
Note: See TracChangeset for help on using the changeset viewer.