Changeset 25778


Ignore:
Timestamp:
11/23/20 15:54:26 (4 years ago)
Author:
Mathieu Morlighem
Message:

CHG: limit channel cross section

File:
1 edited

Legend:

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

    r25771 r25778  
    702702                /*Solve ODE*/
    703703                this->S = ODE1(alpha,beta,this->Sold,dt,2);
    704                 if(this->S<0.) this->S = 0.;
    705704                _assert_(!xIsNan<IssmDouble>(this->S));
     705
     706                /*Constrain the cross section to be between 0 and 500 m^2*/
     707                if(this->S<0.)   this->S = 0.;
     708                if(this->S>500.) this->S = 500.;
    706709
    707710                count++;
Note: See TracChangeset for help on using the changeset viewer.