mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1286 Subtract depth value to make TVD behave more nicely
This commit is contained in:
parent
1f1c82e45e
commit
239e9259f5
@ -206,7 +206,7 @@ void RimWellFlowRateCurve::updateStackedPlotData()
|
||||
logDecValue = cvf::Math::floor(logDecValue);
|
||||
depthSpan = pow(10.0, logDecValue);
|
||||
|
||||
double dummyNegativeDepthValue = -depthSpan;
|
||||
double dummyNegativeDepthValue = depthValues.back() - depthSpan;
|
||||
|
||||
depthValues.push_back(dummyNegativeDepthValue);
|
||||
stackedValues.push_back(stackedValues.back());
|
||||
|
Loading…
Reference in New Issue
Block a user