Changeset 25235


Ignore:
Timestamp:
07/08/20 20:18:48 (5 years ago)
Author:
Eric.Larour
Message:

CHG: we wiped out the eustatic counter by introducing the hydro sea level change core. Fixed that.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r25214 r25235  
    58055805        IssmDouble rho_freshwater;
    58065806
    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;
    58125810
    58135811        /*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; }
    58155813
    58165814        /*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; }
    58185816
    58195817        /*If we are here, we are on earth, not on ice: */
     
    58505848        /*Assign output pointer:*/
    58515849        _assert_(!xIsNan<IssmDouble>(eustatic));
    5852         *peustatic=eustatic;
     5850        *peustatic+=eustatic; //do not forget the +, otherwise, you'll wipe out previous eustatic contributions!
    58535851        return;
    58545852}
Note: See TracChangeset for help on using the changeset viewer.