Changeset 25778
- Timestamp:
- 11/23/20 15:54:26 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Loads/Channel.cpp
r25771 r25778 702 702 /*Solve ODE*/ 703 703 this->S = ODE1(alpha,beta,this->Sold,dt,2); 704 if(this->S<0.) this->S = 0.;705 704 _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.; 706 709 707 710 count++;
Note:
See TracChangeset
for help on using the changeset viewer.