mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3122 Perforation Length : Avoid rounding when top/bot TVD is given in stim plan file
This commit is contained in:
@@ -350,7 +350,7 @@ void RimStimPlanFractureTemplate::setPerforationLength()
|
||||
|
||||
if (firstTvd != HUGE_VAL && lastTvd != HUGE_VAL)
|
||||
{
|
||||
m_perforationLength = std::round(cvf::Math::abs(firstTvd - lastTvd));
|
||||
m_perforationLength = cvf::Math::abs(firstTvd - lastTvd);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user