#1417 - pre-proto - Adding function for calculating perforation length in center cell - need to be extended for cases where perforation interval goes outside the center stimPlan cell.

This commit is contained in:
astridkbjorke
2017-04-20 14:35:12 +02:00
parent 8351c6f9d0
commit ed03d1fb8e
5 changed files with 108 additions and 9 deletions

View File

@@ -110,6 +110,15 @@ double RimSimWellFracture::wellAzimuthAtFracturePosition()
return simWellAzimuth;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
double RimSimWellFracture::wellDipAtFracturePosition()
{
updateBranchGeometry();
double simWellDip = m_branchCenterLines[m_branchIndex].simWellDipAngle(fracturePosition());
return simWellDip;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------