#8027 StimPlan Model Export: Add perforation, formation and facies info

This commit is contained in:
Kristian Bendiksen 2021-10-01 17:26:30 +02:00
parent e2df3e9464
commit faba3a980d
10 changed files with 177 additions and 23 deletions

View File

@ -57,6 +57,7 @@ void AppEnum<RiaDefines::CurveProperty>::setUp()
addItem( RiaDefines::CurveProperty::POROSITY_UNSCALED, "POROSITY_UNSCALED", "Porosity (Unscaled)" );
addItem( RiaDefines::CurveProperty::EQLNUM, "EQLNUM", "Equilibration Number" );
addItem( RiaDefines::CurveProperty::PRESSURE_GRADIENT, "PRESSURE_GRADIENT", "Pressure Gradient" );
addItem( RiaDefines::CurveProperty::FORMATIONS, "FORMATIONS", "Formations" );
setDefault( RiaDefines::CurveProperty::UNDEFINED );
}

View File

@ -52,6 +52,7 @@ enum class CurveProperty
POROSITY_UNSCALED,
EQLNUM,
PRESSURE_GRADIENT,
FORMATIONS
};
double defaultPorosity();

View File

@ -18,10 +18,13 @@
#include "RifStimPlanModelGeologicalFrkExporter.h"
#include "RiaEclipseUnitTools.h"
#include "RiaLogging.h"
#include "RiaPreferences.h"
#include "RifCsvDataTableFormatter.h"
#include "RifStimPlanModelPerfsFrkExporter.h"
#include "RifTextDataTableFormatter.h"
#include "RimStimPlanModel.h"
#include "RimStimPlanModelCalculator.h"
@ -140,15 +143,33 @@ bool RifStimPlanModelGeologicalFrkExporter::writeToFile( RimStimPlanModel* stimP
values["zonePoroElas"] = stimPlanModel->calculator()->calculatePoroElasticConstant();
values["zoneThermalExp"] = stimPlanModel->calculator()->calculateThermalExpansionCoefficient();
auto [faciesIndex, faciesNames] = stimPlanModel->calculator()->calculateFacies();
values["faciesIdx"] = faciesIndex;
if ( faciesIndex.size() != tvd.size() || faciesNames.size() != tvd.size() ) return false;
auto [formationIndex, formationNames] = stimPlanModel->calculator()->calculateFormation();
values["formationIdx"] = formationIndex;
if ( formationIndex.size() != tvd.size() || formationNames.size() != tvd.size() ) return false;
// Special values for csv export
auto [depthStart, depthEnd] = createDepthRanges( tvd );
values["dpthstart"] = depthStart;
values["dpthend"] = depthEnd;
std::vector<QString> csvLabels = { "dpthstart", "dpthend" };
auto [depthStart, depthEnd] = createDepthRanges( tvd );
values["dpthstart"] = depthStart;
values["dpthend"] = depthEnd;
auto [perforationTop, perforationBottom] =
RifStimPlanModelPerfsFrkExporter::calculateTopAndBottomMeasuredDepth( stimPlanModel, stimPlanModel->wellPath() );
values["perfs"] = createPerforationValues( depthStart,
depthEnd,
RiaEclipseUnitTools::meterToFeet( perforationTop ),
RiaEclipseUnitTools::meterToFeet( perforationBottom ) );
std::vector<QString> csvLabels = { "dpthstart", "dpthend", "faciesIdx", "formationIdx", "perfs" };
for ( const QString& label : labels )
csvLabels.push_back( label );
return writeToFrkFile( filepath, labels, values ) && writeToCsvFile( filepath, csvLabels, values );
return writeToFrkFile( filepath, labels, values ) &&
writeToCsvFile( filepath, csvLabels, values, faciesNames, formationNames );
}
//--------------------------------------------------------------------------------------------------
@ -187,8 +208,9 @@ bool RifStimPlanModelGeologicalFrkExporter::writeToFrkFile( const QString&
//--------------------------------------------------------------------------------------------------
bool RifStimPlanModelGeologicalFrkExporter::writeToCsvFile( const QString& filepath,
const std::vector<QString>& labels,
const std::map<QString, std::vector<double>>& values )
const std::map<QString, std::vector<double>>& values,
const std::vector<QString>& faciesNames,
const std::vector<QString>& formationNames )
{
// Create the csv in the same directory as the frk file
QFileInfo fi( filepath );
@ -210,6 +232,8 @@ bool RifStimPlanModelGeologicalFrkExporter::writeToCsvFile( const QString&
{
header.push_back( RifTextDataTableColumn( label, RifTextDataTableDoubleFormat::RIF_FLOAT ) );
}
header.push_back( RifTextDataTableColumn( "Facies" ) );
header.push_back( RifTextDataTableColumn( "Formation" ) );
formatter.header( header );
// The length of the vectors are assumed to be equal
@ -230,6 +254,11 @@ bool RifStimPlanModelGeologicalFrkExporter::writeToCsvFile( const QString&
formatter.add( vals->second[idx] );
}
}
if ( !isDone )
{
formatter.add( faciesNames[idx] );
formatter.add( formationNames[idx] );
}
formatter.rowCompleted();
idx++;
}
@ -374,3 +403,25 @@ std::pair<std::vector<double>, std::vector<double>>
return std::make_pair( startTvd, endTvd );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
std::vector<double> RifStimPlanModelGeologicalFrkExporter::createPerforationValues( const std::vector<double>& depthStart,
const std::vector<double>& depthEnd,
double perforationTop,
double perforationBottom )
{
std::vector<double> perfs;
for ( size_t idx = 0; idx < depthStart.size(); idx++ )
{
double top = depthStart[idx];
double bottom = depthEnd[idx];
// Layer is perforation if end points are inside the perforation interval
bool isPerforation = !( bottom < perforationTop || top > perforationBottom );
perfs.push_back( static_cast<double>( isPerforation ) );
}
return perfs;
}

View File

@ -44,7 +44,9 @@ private:
const std::map<QString, std::vector<double>>& values );
static bool writeToCsvFile( const QString& filepath,
const std::vector<QString>& labels,
const std::map<QString, std::vector<double>>& values );
const std::map<QString, std::vector<double>>& values,
const std::vector<QString>& faciesNames,
const std::vector<QString>& formationNames );
static void appendHeaderToStream( QTextStream& stream );
static void appendToStream( QTextStream& stream, const QString& label, const std::vector<double>& values );
@ -59,4 +61,9 @@ private:
static bool warnOnInvalidData( const QString& label, const std::vector<double>& values );
static bool hasInvalidData( const std::vector<double>& values );
static std::vector<double> createPerforationValues( const std::vector<double>& depthStart,
const std::vector<double>& depthEnd,
double perforationTop,
double perforationBottom );
};

View File

@ -59,12 +59,7 @@ bool RifStimPlanModelPerfsFrkExporter::writeToFile( RimStimPlanModel* stimPlanMo
appendFractureOrientationToStream( stream, isTransverse );
// Unit: meter
double perforationLength = stimPlanModel->perforationLength();
double anchorPositionMD = computeMeasuredDepthForPosition( wellPath, stimPlanModel->anchorPosition() );
double topMD = anchorPositionMD - ( perforationLength / 2.0 );
double bottomMD = anchorPositionMD + ( perforationLength / 2.0 );
auto [topMD, bottomMD] = calculateTopAndBottomMeasuredDepth( stimPlanModel, wellPath );
appendPerforationToStream( stream,
1,
RiaEclipseUnitTools::meterToFeet( topMD ),
@ -158,3 +153,19 @@ double RifStimPlanModelPerfsFrkExporter::computeMeasuredDepthForPosition( const
return -1.0;
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
std::pair<double, double>
RifStimPlanModelPerfsFrkExporter::calculateTopAndBottomMeasuredDepth( RimStimPlanModel* stimPlanModel,
RimWellPath* wellPath )
{
double perforationLength = stimPlanModel->perforationLength();
double anchorPositionMD = computeMeasuredDepthForPosition( wellPath, stimPlanModel->anchorPosition() );
double topMD = anchorPositionMD - ( perforationLength / 2.0 );
double bottomMD = anchorPositionMD + ( perforationLength / 2.0 );
return std::make_pair( topMD, bottomMD );
}

View File

@ -20,6 +20,8 @@
#include "cvfVector3.h"
#include <utility>
class RimStimPlanModel;
class RimWellPath;
@ -34,10 +36,14 @@ class RifStimPlanModelPerfsFrkExporter
public:
static bool writeToFile( RimStimPlanModel* stimPlanModel, const QString& filepath );
private:
static void appendHeaderToStream( QTextStream& stream );
static void appendFractureOrientationToStream( QTextStream& stream, bool isTranseverse );
static void appendPerforationToStream( QTextStream& stream, int index, double topMd, double bottomMd );
static void appendFooterToStream( QTextStream& stream );
static std::pair<double, double> calculateTopAndBottomMeasuredDepth( RimStimPlanModel* stimPlanModel,
RimWellPath* wellPath );
static double computeMeasuredDepthForPosition( const RimWellPath* wellPath, const cvf::Vec3d& position );
private:
static void appendHeaderToStream( QTextStream& stream );
static void appendFractureOrientationToStream( QTextStream& stream, bool isTranseverse );
static void appendPerforationToStream( QTextStream& stream, int index, double topMd, double bottomMd );
static void appendFooterToStream( QTextStream& stream );
};

View File

@ -24,7 +24,10 @@
#include "RigEclipseCaseData.h"
#include "RimColorLegend.h"
#include "RimEclipseCase.h"
#include "RimEclipseResultDefinition.h"
#include "RimFaciesProperties.h"
#include "RimStimPlanModel.h"
#include "RimStimPlanModelCalculator.h"
#include "RimStimPlanModelElasticPropertyCalculator.h"
@ -32,7 +35,9 @@
#include "RimStimPlanModelPressureCalculator.h"
#include "RimStimPlanModelPropertyCalculator.h"
#include "RimStimPlanModelStressCalculator.h"
#include "RimStimPlanModelTemplate.h"
#include "RimStimPlanModelWellLogCalculator.h"
#include "RimWellLogTrack.h"
#include <cmath>
@ -707,6 +712,66 @@ double RimStimPlanModelCalculator::calculateStressAtDepth( double depth,
return stress;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
std::pair<std::vector<double>, std::vector<QString>> RimStimPlanModelCalculator::calculateFacies() const
{
std::vector<double> values = findCurveAndComputeTopOfLayer( RiaDefines::CurveProperty::FACIES );
std::vector<QString> faciesNames;
RimStimPlanModelTemplate* stimPlanModelTemplate = m_stimPlanModel->stimPlanModelTemplate();
if ( !stimPlanModelTemplate )
{
RiaLogging::error( QString( "No fracture model template found" ) );
return std::make_pair( values, faciesNames );
}
RimFaciesProperties* faciesProperties = stimPlanModelTemplate->faciesProperties();
if ( !faciesProperties )
{
RiaLogging::error( QString( "No facies properties found when extracting elastic properties." ) );
return std::make_pair( values, faciesNames );
}
RimColorLegend* colorLegend = faciesProperties->colorLegend();
if ( !colorLegend )
{
RiaLogging::error( QString( "No color legend found when extracting elastic properties." ) );
return std::make_pair( values, faciesNames );
}
for ( auto value : values )
{
faciesNames.push_back( RimStimPlanModelElasticPropertyCalculator::findFaciesName( *colorLegend, value ) );
}
return std::make_pair( values, faciesNames );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
std::pair<std::vector<double>, std::vector<QString>> RimStimPlanModelCalculator::calculateFormation() const
{
std::vector<double> values = findCurveAndComputeTopOfLayer( RiaDefines::CurveProperty::FORMATIONS );
RimEclipseCase* eclipseCase = m_stimPlanModel->eclipseCaseForProperty( RiaDefines::CurveProperty::FACIES );
std::vector<QString> formationNamesVector = RimWellLogTrack::formationNamesVector( eclipseCase );
std::vector<QString> formationNames;
for ( auto value : values )
{
int idx = static_cast<int>( value );
if ( idx < static_cast<int>( formationNamesVector.size() ) )
formationNames.push_back( formationNamesVector[idx] );
else
formationNames.push_back( "_" );
}
return std::make_pair( values, formationNames );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------

View File

@ -65,6 +65,9 @@ public:
std::vector<double> calculatePoroElasticConstant() const;
std::vector<double> calculateThermalExpansionCoefficient() const;
std::pair<std::vector<double>, std::vector<QString>> calculateFacies() const;
std::pair<std::vector<double>, std::vector<QString>> calculateFormation() const;
void calculateTemperature( std::vector<double>& temperatures ) const;
void clearCache();

View File

@ -44,6 +44,8 @@ public:
bool isMatching( RiaDefines::CurveProperty curveProperty ) const override;
static QString findFaciesName( const RimColorLegend& colorLegend, double value );
protected:
static void addOverburden( std::vector<QString>& formationNames,
std::vector<double>& formationValues,
@ -59,8 +61,6 @@ protected:
double underburdenHeight,
const QString& formationName );
static QString findFaciesName( const RimColorLegend& colorLegend, double value );
private:
RimStimPlanModelCalculator* m_stimPlanModelCalculator;
};

View File

@ -54,7 +54,7 @@ RimStimPlanModelLayerCalculator::RimStimPlanModelLayerCalculator( RimStimPlanMod
//--------------------------------------------------------------------------------------------------
bool RimStimPlanModelLayerCalculator::isMatching( RiaDefines::CurveProperty curveProperty ) const
{
return curveProperty == RiaDefines::CurveProperty::LAYERS;
return ( curveProperty == RiaDefines::CurveProperty::LAYERS || curveProperty == RiaDefines::CurveProperty::FORMATIONS );
}
//--------------------------------------------------------------------------------------------------
@ -165,7 +165,16 @@ bool RimStimPlanModelLayerCalculator::calculate( RiaDefines::CurveProperty curve
layerNo++;
}
values[i] = layerNo;
if ( curveProperty == RiaDefines::CurveProperty::LAYERS )
{
values[i] = layerNo;
}
else
{
CAF_ASSERT( curveProperty == RiaDefines::CurveProperty::FORMATIONS );
values[i] = curveData.data[i];
}
previousFormation = curveData.data[i];
previousFacies = faciesValues[i];
if ( useNetToGross )