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