2015-09-04 08:30:04 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) Statoil ASA
|
|
|
|
// Copyright (C) Ceetron Solutions AS
|
|
|
|
//
|
|
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-10-14 01:08:13 -05:00
|
|
|
#include "RigWellLogExtractor.h"
|
|
|
|
|
2018-06-06 05:47:23 -05:00
|
|
|
#include "RigFemResultPosEnum.h"
|
|
|
|
|
2018-06-05 04:56:47 -05:00
|
|
|
#include "cafTensor3.h"
|
|
|
|
|
2015-09-04 08:30:04 -05:00
|
|
|
#include "cvfBase.h"
|
|
|
|
#include "cvfObject.h"
|
|
|
|
#include "cvfMath.h"
|
2018-06-05 04:56:47 -05:00
|
|
|
#include "cvfStructGrid.h"
|
2015-09-04 08:30:04 -05:00
|
|
|
#include "cvfVector3.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2018-08-07 05:38:48 -05:00
|
|
|
class RigFemPart;
|
2015-09-04 08:30:04 -05:00
|
|
|
class RigFemResultAddress;
|
2018-06-05 04:56:47 -05:00
|
|
|
class RigGeoMechCaseData;
|
|
|
|
class RigWellPath;
|
2015-09-04 08:30:04 -05:00
|
|
|
|
|
|
|
namespace cvf {
|
|
|
|
class BoundingBox;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
///
|
|
|
|
//==================================================================================================
|
2015-10-14 01:08:13 -05:00
|
|
|
class RigGeoMechWellLogExtractor : public RigWellLogExtractor
|
2015-09-04 08:30:04 -05:00
|
|
|
{
|
|
|
|
public:
|
2015-10-14 08:07:48 -05:00
|
|
|
RigGeoMechWellLogExtractor(RigGeoMechCaseData* aCase, const RigWellPath* wellpath, const std::string& wellCaseErrorMsgName);
|
2015-09-04 08:30:04 -05:00
|
|
|
|
|
|
|
void curveData(const RigFemResultAddress& resAddr, int frameIndex, std::vector<double>* values );
|
2018-06-05 04:56:47 -05:00
|
|
|
const RigGeoMechCaseData* caseData();
|
|
|
|
void setRkbDiff(double rkbDiff);
|
2018-09-03 04:24:35 -05:00
|
|
|
|
|
|
|
void setWellLogMdAndMudWeightKgPerM3(const std::vector<std::pair<double, double>>& mudWeightKgPerM3);
|
|
|
|
void setWellLogMdAndUcsBar(const std::vector<std::pair<double, double>>& ucsValues);
|
|
|
|
void setWellLogMdAndPoissonRatio(const std::vector<std::pair<double, double>>& poissonRatio);
|
|
|
|
|
|
|
|
|
2015-09-04 08:30:04 -05:00
|
|
|
private:
|
2018-08-24 01:52:54 -05:00
|
|
|
enum WellPathTangentCalculation
|
|
|
|
{
|
|
|
|
TangentFollowWellPathSegments,
|
|
|
|
TangentConstantWithinCell
|
|
|
|
};
|
|
|
|
|
2018-09-06 12:59:47 -05:00
|
|
|
float calculatePorePressureInSegment(int64_t intersectionIdx, float averageSegmentPorePressureBar, double hydroStaticPorePressureBar, double effectiveDepthMeters, const std::vector<float>& poreElementPressuresPascal) const;
|
2018-09-03 04:24:35 -05:00
|
|
|
float calculatePoissonRatio(int64_t intersectionIdx, const std::vector<float>& poissonRatios) const;
|
|
|
|
float calculateUcs(int64_t intersectionIdx, const std::vector<float>& ucsValuesPascal) const;
|
|
|
|
|
2018-06-22 08:30:20 -05:00
|
|
|
void wellPathAngles(const RigFemResultAddress& resAddr, std::vector<double>* values);
|
|
|
|
void wellPathScaledCurveData(const RigFemResultAddress& resAddr, int frameIndex, std::vector<double>* values);
|
2018-09-03 04:24:35 -05:00
|
|
|
|
|
|
|
|
2018-06-22 08:30:20 -05:00
|
|
|
void wellBoreWallCurveData(const RigFemResultAddress& resAddr, int frameIndex, std::vector<double>* values);
|
|
|
|
|
2018-06-05 04:56:47 -05:00
|
|
|
template<typename T>
|
|
|
|
T interpolateGridResultValue(RigFemResultPosEnum resultPosType, const std::vector<T>& gridResultValues, int64_t intersectionIdx, bool averageNodeElementResults) const;
|
2018-08-07 05:38:48 -05:00
|
|
|
size_t gridResultIndexFace(size_t elementIdx, cvf::StructGridInterface::FaceType cellFace, int faceLocalNodeIdx) const;
|
2015-09-04 08:30:04 -05:00
|
|
|
void calculateIntersection();
|
|
|
|
std::vector<size_t> findCloseCells(const cvf::BoundingBox& bb);
|
2018-10-18 12:45:57 -05:00
|
|
|
cvf::Vec3d calculateLengthInCell(size_t cellIndex,
|
2017-12-12 07:49:10 -06:00
|
|
|
const cvf::Vec3d& startPoint,
|
|
|
|
const cvf::Vec3d& endPoint) const override;
|
2018-08-24 01:52:54 -05:00
|
|
|
cvf::Vec3d calculateWellPathTangent(int64_t intersectionIdx, WellPathTangentCalculation calculationType) const;
|
2018-06-05 04:56:47 -05:00
|
|
|
static caf::Ten3d transformTensorToWellPathOrientation(const cvf::Vec3d& wellPathTangent,
|
|
|
|
const caf::Ten3d& wellPathTensor);
|
2015-09-04 08:30:04 -05:00
|
|
|
|
2018-09-06 12:59:47 -05:00
|
|
|
cvf::Vec3f cellCentroid(size_t intersectionIdx) const;
|
2018-09-03 04:24:35 -05:00
|
|
|
double getWellLogSegmentValue(size_t intersectionIdx, const std::vector<std::pair<double, double>>& wellLogValues) const;
|
|
|
|
|
|
|
|
template<typename T>
|
2018-09-06 12:59:47 -05:00
|
|
|
bool averageIntersectionValuesToSegmentValue(size_t intersectionIdx, const std::vector<T>& intersectionValues, const T& invalidValue, T* averagedSegmentValue) const;
|
2018-09-03 04:24:35 -05:00
|
|
|
static double pascalToBar(double pascalValue);
|
|
|
|
private:
|
2015-09-04 08:30:04 -05:00
|
|
|
cvf::ref<RigGeoMechCaseData> m_caseData;
|
2018-06-05 04:56:47 -05:00
|
|
|
double m_rkbDiff;
|
2018-09-03 04:24:35 -05:00
|
|
|
std::vector<std::pair<double, double>> m_wellLogMdAndMudWeightKgPerM3;
|
|
|
|
std::vector<std::pair<double, double>> m_wellLogMdAndUcsBar;
|
|
|
|
std::vector<std::pair<double, double>> m_wellLogMdAndPoissonRatios;
|
2015-09-04 08:30:04 -05:00
|
|
|
|
2018-09-03 04:24:35 -05:00
|
|
|
static const double UNIT_WEIGHT_OF_WATER;
|
|
|
|
};
|
2015-09-04 08:30:04 -05:00
|
|
|
|