2017-06-01 16:34:30 +02:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Copyright (C) 2017- Statoil ASA
|
|
|
|
|
//
|
|
|
|
|
// 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.
|
|
|
|
|
//
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2017-08-24 15:13:30 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2017-06-01 16:34:30 +02:00
|
|
|
|
|
|
|
|
#include "RigCompletionData.h"
|
2017-06-12 12:03:42 +02:00
|
|
|
|
2017-08-24 15:13:30 +02:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
class RimWellPath;
|
|
|
|
|
|
2017-06-01 16:34:30 +02:00
|
|
|
class QTextStream;
|
2017-06-12 12:03:42 +02:00
|
|
|
class RigWellPath;
|
|
|
|
|
class RimEclipseCase;
|
|
|
|
|
class RimFracture;
|
2017-10-13 09:29:42 +02:00
|
|
|
class RimSimWellInView;
|
2017-06-01 16:34:30 +02:00
|
|
|
|
2017-08-24 15:13:30 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
|
///
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2017-06-01 16:34:30 +02:00
|
|
|
class RicExportFractureCompletionsImpl
|
|
|
|
|
{
|
|
|
|
|
public:
|
2017-06-22 10:42:07 +02:00
|
|
|
static std::vector<RigCompletionData> generateCompdatValuesForWellPath(RimWellPath* wellPath,
|
2018-08-03 10:30:44 +02:00
|
|
|
RimEclipseCase* caseToApply,
|
2017-06-12 12:03:42 +02:00
|
|
|
QTextStream* outputStreamForIntermediateResultsText);
|
|
|
|
|
|
2018-08-03 13:35:03 +02:00
|
|
|
static std::vector<RigCompletionData>
|
|
|
|
|
generateCompdatValuesForWellPathSingleFracture(RimWellPath* wellPath,
|
|
|
|
|
RimEclipseCase* caseToApply,
|
|
|
|
|
RimFracture* fracture,
|
|
|
|
|
QTextStream* outputStreamForIntermediateResultsText);
|
|
|
|
|
|
2017-06-22 10:42:07 +02:00
|
|
|
static std::vector<RigCompletionData> generateCompdatValuesForSimWell(RimEclipseCase* eclipseCase,
|
2017-10-13 09:29:42 +02:00
|
|
|
const RimSimWellInView* well,
|
2017-06-12 12:03:42 +02:00
|
|
|
QTextStream* outputStreamForIntermediateResultsText);
|
2017-06-01 16:34:30 +02:00
|
|
|
|
2017-06-12 12:03:42 +02:00
|
|
|
private:
|
2017-06-22 10:42:07 +02:00
|
|
|
static std::vector<RigCompletionData> generateCompdatValues(RimEclipseCase* caseToApply,
|
2017-06-12 12:03:42 +02:00
|
|
|
const QString& wellPathName,
|
|
|
|
|
const RigWellPath* wellPathGeometry,
|
2017-12-22 08:19:49 +01:00
|
|
|
const std::vector<RimFracture*>& fractures,
|
2017-06-12 12:03:42 +02:00
|
|
|
QTextStream* outputStreamForIntermediateResultsText);
|
2017-06-01 16:34:30 +02:00
|
|
|
};
|