#1585 Moved obsolete RigFracturedEclipseCellExportData to obsoleted code

This commit is contained in:
Jacob Støren 2017-06-12 09:30:01 +02:00
parent dceae0581e
commit 95dd87f23c
6 changed files with 33 additions and 57 deletions

View File

@ -52,23 +52,6 @@
//--------------------------------------------------------------------------------------------------
/// Constructor
//--------------------------------------------------------------------------------------------------
RifFractureExportTools::RifFractureExportTools()
{
}
//--------------------------------------------------------------------------------------------------
/// Destructor
//--------------------------------------------------------------------------------------------------
RifFractureExportTools::~RifFractureExportTools()
{
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------

View File

@ -46,9 +46,6 @@ class RimWellPath;
class RifFractureExportTools
{
public:
RifFractureExportTools();
virtual ~RifFractureExportTools();
static bool exportFracturesToEclipseDataInputFile(const QString& fileName,
const std::vector<RimFracture*>& fractures,
RimEclipseCase* caseToApply);

View File

@ -215,7 +215,6 @@ QStringList RimContextCommandBuilder::commandsFromSelection()
commandIds << "RicWellPathsImportSsihubFeature";
commandIds << "RicWellLogsImportFileFeature";
commandIds << "Separator";
commandIds << "RicExportWellPathFractureWellCompletionFeature";
}
else if (dynamic_cast<RimWellPath*>(uiItem))
{

View File

@ -18,14 +18,6 @@
#include "RigFracture.h"
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
RigFracturedEclipseCellExportData::RigFracturedEclipseCellExportData()
{
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------

View File

@ -26,34 +26,6 @@
#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;
};
//==================================================================================================
///
//==================================================================================================

View File

@ -33,6 +33,39 @@
#include <QString>
#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 RimEclipseCase;
class RigFractureCell;