mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Do not report confusing error
This commit is contained in:
@@ -3185,7 +3185,7 @@ namespace Opm
|
|||||||
|
|
||||||
const EvalWell d = 1.0 - rs * rv;
|
const EvalWell d = 1.0 - rs * rv;
|
||||||
if (d <= 0.0 || d > 1.0) {
|
if (d <= 0.0 || d > 1.0) {
|
||||||
OPM_THROW(Opm::NumericalIssue, "Problematic d value " << d << " obtained for well " << name()
|
OPM_THROW_NOLOG(Opm::NumericalIssue, "Problematic d value " << d << " obtained for well " << name()
|
||||||
<< " during convertion to surface volume with rs " << rs
|
<< " during convertion to surface volume with rs " << rs
|
||||||
<< ", rv " << rv << " and pressure " << seg_pressure
|
<< ", rv " << rv << " and pressure " << seg_pressure
|
||||||
<< " obtaining d " << d);
|
<< " obtaining d " << d);
|
||||||
|
|||||||
Reference in New Issue
Block a user