2015-11-26 10:14:43 +01: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
|
|
|
|
|
|
2017-10-13 13:44:53 +02:00
|
|
|
#include "RigSimWellData.h"
|
2018-03-02 14:09:46 +01:00
|
|
|
|
2015-11-26 10:14:43 +01:00
|
|
|
#include "cvfVector3.h"
|
2018-03-02 14:09:46 +01:00
|
|
|
|
2015-11-26 10:14:43 +01:00
|
|
|
#include <vector>
|
|
|
|
|
|
2017-01-20 15:00:19 +01:00
|
|
|
class RigEclipseCaseData;
|
2017-10-13 09:29:42 +02:00
|
|
|
class RimSimWellInView;
|
2015-11-26 10:14:43 +01:00
|
|
|
|
2018-03-02 14:09:46 +01:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
|
///
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2015-11-26 10:14:43 +01:00
|
|
|
class RigSimulationWellCenterLineCalculator
|
|
|
|
|
{
|
|
|
|
|
public:
|
2018-03-02 14:09:46 +01:00
|
|
|
static void calculateWellPipeStaticCenterline(RimSimWellInView* rimWell,
|
|
|
|
|
std::vector<std::vector<cvf::Vec3d>>& pipeBranchesCLCoords,
|
|
|
|
|
std::vector<std::vector<RigWellResultPoint>>& pipeBranchesCellIds);
|
2017-01-20 15:00:19 +01:00
|
|
|
|
2018-03-02 14:09:46 +01:00
|
|
|
static void calculateWellPipeCenterlineFromWellFrame(const RigEclipseCaseData* eclipseCaseData,
|
|
|
|
|
const RigSimWellData* simWellData,
|
|
|
|
|
int timeStepIndex,
|
|
|
|
|
bool isAutoDetectBranches,
|
|
|
|
|
bool useAllCellCenters,
|
|
|
|
|
std::vector<std::vector<cvf::Vec3d>>& pipeBranchesCLCoords,
|
|
|
|
|
std::vector<std::vector<RigWellResultPoint>>& pipeBranchesCellIds);
|
|
|
|
|
|
|
|
|
|
private:
|
2017-01-20 15:00:19 +01:00
|
|
|
static bool hasAnyValidDataCells(const RigWellResultBranch& branch);
|
2015-11-26 10:14:43 +01:00
|
|
|
static void finishPipeCenterLine( std::vector< std::vector<cvf::Vec3d> > &pipeBranchesCLCoords, const cvf::Vec3d& lastCellCenter ) ;
|
2017-01-20 15:57:04 +01:00
|
|
|
|
2017-11-02 09:31:09 +01:00
|
|
|
static RigWellResultFrame splitIntoBranches(const RigWellResultFrame& wellResultFrame, const RigEclipseCaseData* eclipseCaseData);
|
2017-01-20 15:57:04 +01:00
|
|
|
static void addCellCenterPoints(const RigEclipseCaseData* eclipseCaseData, std::vector<std::vector<cvf::Vec3d>> &pipeBranchesCLCoords, std::vector<std::vector<RigWellResultPoint>> &pipeBranchesCellIds);
|
2015-11-26 10:14:43 +01:00
|
|
|
};
|
|
|
|
|
|