#3014 and #3022 Well Bore Stability: LAS and element table input and cleaned up extraction code.

This commit is contained in:
Gaute Lindkvist
2018-09-03 11:24:35 +02:00
parent b4e2a58327
commit 4c84bbb8a3
11 changed files with 392 additions and 59 deletions

View File

@@ -59,8 +59,8 @@ public:
RigWellLogExtractor(const RigWellPath* wellpath, const std::string& wellCaseErrorMsgName);
virtual ~RigWellLogExtractor();
const std::vector<double>& measuredDepth() { return m_measuredDepth; }
const std::vector<double>& trueVerticalDepth() { return m_trueVerticalDepth; }
const std::vector<double>& measuredDepth() { return m_intersectionMeasuredDepths; }
const std::vector<double>& trueVerticalDepth() { return m_intersectionTVDs; }
const std::vector<size_t>& intersectedCellsGlobIdx();
const RigWellPath* wellPathData() { return m_wellPath.p();}
@@ -89,10 +89,10 @@ protected:
cvf::cref<RigWellPath> m_wellPath;
private:
std::vector<double> m_measuredDepth;
std::vector<double> m_trueVerticalDepth;
std::vector<double> m_intersectionMeasuredDepths;
std::vector<double> m_intersectionTVDs;
private:
std::string m_wellCaseErrorMsgName;
};