mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#6992 Remove incorrect error for missing default overburden value for Pressure.
This commit is contained in:
parent
dc0607dfd3
commit
f22c6d0e1d
@ -1158,6 +1158,10 @@ double RimStimPlanModel::getDefaultForMissingOverburdenValue( RiaDefines::CurveP
|
||||
{
|
||||
return 1.0;
|
||||
}
|
||||
else if ( curveProperty == RiaDefines::CurveProperty::PRESSURE )
|
||||
{
|
||||
return std::numeric_limits<double>::infinity();
|
||||
}
|
||||
else
|
||||
{
|
||||
RiaLogging::error( QString( "Missing default overburden value for %1." )
|
||||
@ -1191,6 +1195,10 @@ double RimStimPlanModel::getDefaultForMissingUnderburdenValue( RiaDefines::Curve
|
||||
{
|
||||
return 1.0;
|
||||
}
|
||||
else if ( curveProperty == RiaDefines::CurveProperty::PRESSURE )
|
||||
{
|
||||
return std::numeric_limits<double>::infinity();
|
||||
}
|
||||
else
|
||||
{
|
||||
RiaLogging::error( QString( "Missing default underburden value for %1." )
|
||||
|
Loading…
Reference in New Issue
Block a user