Changeset 16837


Ignore:
Timestamp:
11/20/13 09:10:49 (11 years ago)
Author:
jbondzio
Message:

CHG: added error message when water fraction exceeds 100%

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/analyses/EnthalpyAnalysis.cpp

    r16813 r16837  
    378378                        element->EnthalpyToThermal(&temperature[i],&waterfraction[i],values[i],pressure[i]);
    379379                        if(waterfraction[i]<0.) _error_("Negative water fraction found in solution vector");
    380                         //if(waterfraction[i]>1.) _error_("Water fraction >1 found in solution vector");
     380                        if(waterfraction[i]>1.) _error_("Water fraction >1 found in solution vector");
    381381                }
    382382                element->AddInput(EnthalpyEnum,values,P1Enum);
Note: See TracChangeset for help on using the changeset viewer.