Changeset 25235
- Timestamp:
- 07/08/20 20:18:48 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r25214 r25235 5805 5805 IssmDouble rho_freshwater; 5806 5806 5807 /*constants:*/ 5808 IssmDouble constant=0; 5809 5810 /*Initialize eustatic component: do not skip this step :):*/ 5811 IssmDouble eustatic = 0.; 5807 5808 /*Initialize eustatic component: grab from the previous eustatic core!:*/ 5809 IssmDouble eustatic = *peustatic; 5812 5810 5813 5811 /*early return if we are on an ice cap:*/ 5814 if(masks->isiceonly[this->lid]){ *peustatic=0;return; }5812 if(masks->isiceonly[this->lid]){ return; } 5815 5813 5816 5814 /*early return if we are fully floating:*/ 5817 if (masks->isfullyfloating[this->lid]){ constant=0; *peustatic=0;return; }5815 if (masks->isfullyfloating[this->lid]){ return; } 5818 5816 5819 5817 /*If we are here, we are on earth, not on ice: */ … … 5850 5848 /*Assign output pointer:*/ 5851 5849 _assert_(!xIsNan<IssmDouble>(eustatic)); 5852 *peustatic =eustatic;5850 *peustatic+=eustatic; //do not forget the +, otherwise, you'll wipe out previous eustatic contributions! 5853 5851 return; 5854 5852 }
Note:
See TracChangeset
for help on using the changeset viewer.