mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-13 17:05:59 -06:00
#2035 Add MD to the intesection struct available from the WellLogExtractors
This commit is contained in:
parent
1089060539
commit
b708bb0ac3
@ -55,6 +55,9 @@ std::vector<CellIntersectionInfo> RigWellLogExtractor::intersectionInfo() const
|
||||
cellInfo.globCellIndex = m_intersectedCellsGlobIdx[i];
|
||||
cellInfo.startPoint = m_intersections[i];
|
||||
cellInfo.endPoint = m_intersections[i+1];
|
||||
cellInfo.startMD = m_measuredDepth[i];
|
||||
cellInfo.endMD = m_measuredDepth[i+1];
|
||||
|
||||
cellInfo.intersectedCellFaceIn = m_intersectedCellFaces[i];
|
||||
cellInfo.intersectedCellFaceOut = m_intersectedCellFaces[i+1];
|
||||
|
||||
|
@ -40,6 +40,9 @@ struct CellIntersectionInfo
|
||||
size_t globCellIndex;
|
||||
cvf::Vec3d startPoint;
|
||||
cvf::Vec3d endPoint;
|
||||
double startMD;
|
||||
double endMD;
|
||||
|
||||
cvf::StructGridInterface::FaceType intersectedCellFaceIn;
|
||||
cvf::StructGridInterface::FaceType intersectedCellFaceOut;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user