#3122 Perforation Length : Avoid rounding when top/bot TVD is given in stim plan file

This commit is contained in:
Magne Sjaastad
2018-06-28 16:11:39 +02:00
parent d06a6f5121
commit 1ec2c4c07e

View File

@@ -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);
}
}