mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#7143 StimPlanModel: Compute formation dip in fracture plane.
This commit is contained in:
parent
f53e8b5838
commit
f2c25a5f13
@ -509,7 +509,6 @@ void RimStimPlanModel::updateThicknessDirection()
|
||||
}
|
||||
|
||||
m_thicknessDirection = direction;
|
||||
m_formationDip = calculateFormationDip( direction );
|
||||
|
||||
if ( m_thicknessDirectionWellPath )
|
||||
{
|
||||
@ -703,6 +702,11 @@ void RimStimPlanModel::updateDistanceToBarrierAndDip()
|
||||
cvf::Vec3d directionToBarrier = ( tstInPlane ^ fractureDirectionNormal ).getNormalized();
|
||||
RiaLogging::info( QString( "Direction to barrier: %1" ).arg( RimStimPlanModel::vecToString( directionToBarrier ) ) );
|
||||
|
||||
// Update formation dip. The direction for the barrier search follows the
|
||||
// inclination of the formation, and is in effect the formation dip in the
|
||||
// fracture plane. -90 to convert from horizontal to vertical.
|
||||
m_formationDip = std::abs( calculateFormationDip( directionToBarrier ) - 90.0 );
|
||||
|
||||
std::vector<WellPathCellIntersectionInfo> intersections =
|
||||
generateBarrierIntersections( eclipseCaseData, position, directionToBarrier );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user