mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1585 Moved obsolete RigFracturedEclipseCellExportData to obsoleted code
This commit is contained in:
@@ -52,23 +52,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
/// Constructor
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
RifFractureExportTools::RifFractureExportTools()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
/// Destructor
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
RifFractureExportTools::~RifFractureExportTools()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
///
|
///
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -46,9 +46,6 @@ class RimWellPath;
|
|||||||
class RifFractureExportTools
|
class RifFractureExportTools
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
RifFractureExportTools();
|
|
||||||
virtual ~RifFractureExportTools();
|
|
||||||
|
|
||||||
static bool exportFracturesToEclipseDataInputFile(const QString& fileName,
|
static bool exportFracturesToEclipseDataInputFile(const QString& fileName,
|
||||||
const std::vector<RimFracture*>& fractures,
|
const std::vector<RimFracture*>& fractures,
|
||||||
RimEclipseCase* caseToApply);
|
RimEclipseCase* caseToApply);
|
||||||
|
|||||||
@@ -215,7 +215,6 @@ QStringList RimContextCommandBuilder::commandsFromSelection()
|
|||||||
commandIds << "RicWellPathsImportSsihubFeature";
|
commandIds << "RicWellPathsImportSsihubFeature";
|
||||||
commandIds << "RicWellLogsImportFileFeature";
|
commandIds << "RicWellLogsImportFileFeature";
|
||||||
commandIds << "Separator";
|
commandIds << "Separator";
|
||||||
commandIds << "RicExportWellPathFractureWellCompletionFeature";
|
|
||||||
}
|
}
|
||||||
else if (dynamic_cast<RimWellPath*>(uiItem))
|
else if (dynamic_cast<RimWellPath*>(uiItem))
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -18,14 +18,6 @@
|
|||||||
|
|
||||||
#include "RigFracture.h"
|
#include "RigFracture.h"
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
///
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
RigFracturedEclipseCellExportData::RigFracturedEclipseCellExportData()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
///
|
///
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -26,34 +26,6 @@
|
|||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
class RigFracturedEclipseCellExportData
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
RigFracturedEclipseCellExportData();
|
|
||||||
|
|
||||||
// Compdat export data
|
|
||||||
size_t reservoirCellIndex;
|
|
||||||
double transmissibility; // Total cell to well transmissibility finally used in COMPDAT keyword
|
|
||||||
bool cellIsActive;
|
|
||||||
|
|
||||||
// General intermediate results
|
|
||||||
double NTG;
|
|
||||||
cvf::Vec3d permeabilities;
|
|
||||||
double skinFactor;
|
|
||||||
|
|
||||||
// Elipse fracture related values
|
|
||||||
cvf::Vec3d transmissibilities; //matrixToFractureTransmissibilitiesXYZ
|
|
||||||
double totalArea; // Elipse cell overlap area
|
|
||||||
double fractureLenght;
|
|
||||||
cvf::Vec3d projectedAreas;
|
|
||||||
|
|
||||||
cvf::Vec3d cellSizes;
|
|
||||||
|
|
||||||
//TODO: Used for upscaling - should be moved?
|
|
||||||
double upscaledStimPlanValueHA;
|
|
||||||
double upscaledStimPlanValueAH;
|
|
||||||
};
|
|
||||||
|
|
||||||
//==================================================================================================
|
//==================================================================================================
|
||||||
///
|
///
|
||||||
//==================================================================================================
|
//==================================================================================================
|
||||||
|
|||||||
@@ -33,6 +33,39 @@
|
|||||||
#include <QString>
|
#include <QString>
|
||||||
#include "RigFracture.h"
|
#include "RigFracture.h"
|
||||||
|
|
||||||
|
//==================================================================================================
|
||||||
|
///
|
||||||
|
//==================================================================================================
|
||||||
|
|
||||||
|
class RigFracturedEclipseCellExportData
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
RigFracturedEclipseCellExportData() {};
|
||||||
|
|
||||||
|
// Compdat export data
|
||||||
|
size_t reservoirCellIndex;
|
||||||
|
double transmissibility; // Total cell to well transmissibility finally used in COMPDAT keyword
|
||||||
|
bool cellIsActive;
|
||||||
|
|
||||||
|
// General intermediate results
|
||||||
|
double NTG;
|
||||||
|
cvf::Vec3d permeabilities;
|
||||||
|
double skinFactor;
|
||||||
|
|
||||||
|
// Elipse fracture related values
|
||||||
|
cvf::Vec3d transmissibilities; //matrixToFractureTransmissibilitiesXYZ
|
||||||
|
double totalArea; // Elipse cell overlap area
|
||||||
|
double fractureLenght;
|
||||||
|
cvf::Vec3d projectedAreas;
|
||||||
|
|
||||||
|
cvf::Vec3d cellSizes;
|
||||||
|
|
||||||
|
//TODO: Used for upscaling - should be moved?
|
||||||
|
double upscaledStimPlanValueHA;
|
||||||
|
double upscaledStimPlanValueAH;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
class RimFracture;
|
class RimFracture;
|
||||||
class RimEclipseCase;
|
class RimEclipseCase;
|
||||||
class RigFractureCell;
|
class RigFractureCell;
|
||||||
|
|||||||
Reference in New Issue
Block a user