mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Separate Wbs Parameters from RimWellBoreStabilityPlot
This commit is contained in:
@@ -17,12 +17,14 @@
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
#include "RimWellBoreStabilityPlot.h"
|
||||
|
||||
#include "RiaDefines.h"
|
||||
#include "RigFemPartResultsCollection.h"
|
||||
#include "RigFemResultAddress.h"
|
||||
#include "RigGeoMechCaseData.h"
|
||||
|
||||
#include "RimGeoMechCase.h"
|
||||
#include "RimTools.h"
|
||||
#include "RimWbsParameters.h"
|
||||
#include "RimWellLogCurveCommonDataSource.h"
|
||||
#include "RimWellLogFile.h"
|
||||
|
||||
@@ -40,102 +42,13 @@ RimWellBoreStabilityPlot::RimWellBoreStabilityPlot()
|
||||
{
|
||||
CAF_PDM_InitObject( "Well Bore Stability Plot", ":/WellLogPlot16x16.png", "", "" );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_porePressureSource,
|
||||
"PorePressureSource",
|
||||
"Pore Pressure",
|
||||
"",
|
||||
"Data source for Pore Pressure",
|
||||
"" );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_porePressureShaleSource,
|
||||
"PorePressureShaleSource",
|
||||
"Shale Pore Pressure",
|
||||
"",
|
||||
"Data source for Pore Pressure in Shale",
|
||||
"" );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_poissonRatioSource,
|
||||
"PoissionRatioSource",
|
||||
"Poisson Ratio",
|
||||
"",
|
||||
"Data source for Poisson Ratio",
|
||||
"" );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_ucsSource, "UcsSource", "Uniaxial Compressive Strength", "", "Data source for UCS", "" );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_OBG0Source, "OBG0Source", "Initial Overburden Gradient", "", "Data source for OBG0", "" );
|
||||
CAF_PDM_InitFieldNoDefault( &m_DFSource, "DFSource", "Depletion Factor (DF)", "", "Data source for Depletion Factor", "" );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_K0SHSource,
|
||||
"K0SHSource",
|
||||
"K0_SH",
|
||||
"",
|
||||
"SH in Shale (Matthews & Kelly) = K0_SH * (OBG0-PP0) + PP0 + DF * (PP-PP0)\nK0_SH = "
|
||||
"(SH - PP)/(OBG-PP)",
|
||||
"" );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_FGShaleSource, "FGShaleSource", "FG in Shale Calculation", "", "", "" );
|
||||
CAF_PDM_InitFieldNoDefault( &m_K0FGSource,
|
||||
"K0FGSource",
|
||||
"K0_FG",
|
||||
"",
|
||||
"FG in shale = K0_FG * (OBG0-PP0)\nK0_FG = (FG-PP)/(OBG-PP)",
|
||||
"" );
|
||||
|
||||
CAF_PDM_InitField( &m_userDefinedPPShale, "UserPPShale", 1.05, "Multiplier of hydrostatic PP", "", "", "" );
|
||||
|
||||
CAF_PDM_InitField( &m_userDefinedPoissionRatio,
|
||||
"UserPoissionRatio",
|
||||
0.35,
|
||||
"User Defined Poisson Ratio",
|
||||
"",
|
||||
"User Defined Poisson Ratio",
|
||||
"" );
|
||||
// Typical UCS: http://ceae.colorado.edu/~amadei/CVEN5768/PDF/NOTES8.pdf
|
||||
// Typical UCS for Shale is 5 - 100 MPa -> 50 - 1000 bar.
|
||||
CAF_PDM_InitField( &m_userDefinedUcs, "UserUcs", 100.0, "User Defined UCS [bar]", "", "User Defined UCS [bar]", "" );
|
||||
|
||||
// TODO: Get reasonable defaults from Lasse. For now all set to 1
|
||||
CAF_PDM_InitField( &m_userDefinedDF, "UserDF", 0.7, "User Defined DF", "", "User Defined Depletion Factor", "" );
|
||||
CAF_PDM_InitField( &m_userDefinedK0FG, "UserK0FG", 0.75, "User Defined K0_FG", "", "", "" );
|
||||
CAF_PDM_InitField( &m_userDefinedK0SH, "UserK0SH", 0.65, "User Defined K0_SH", "", "", "" );
|
||||
CAF_PDM_InitField( &m_FGShaleMultiplier,
|
||||
"FGMultiplier",
|
||||
1.05,
|
||||
"SH Multiplier for FG in Shale",
|
||||
"",
|
||||
"FG in Shale = Multiplier * SH",
|
||||
"" );
|
||||
|
||||
m_parameterSourceFields = {{RigWbsParameter::PP_Sand(), &m_porePressureSource},
|
||||
{RigWbsParameter::PP_Shale(), &m_porePressureShaleSource},
|
||||
{RigWbsParameter::poissonRatio(), &m_poissonRatioSource},
|
||||
{RigWbsParameter::UCS(), &m_ucsSource},
|
||||
{RigWbsParameter::OBG0(), &m_OBG0Source},
|
||||
{RigWbsParameter::DF(), &m_DFSource},
|
||||
{RigWbsParameter::K0_FG(), &m_K0FGSource},
|
||||
{RigWbsParameter::K0_SH(), &m_K0SHSource},
|
||||
{RigWbsParameter::FG_Shale(), &m_FGShaleSource}};
|
||||
|
||||
m_userDefinedValueFields = {{RigWbsParameter::PP_Shale(), &m_userDefinedPPShale},
|
||||
{RigWbsParameter::poissonRatio(), &m_userDefinedPoissionRatio},
|
||||
{RigWbsParameter::UCS(), &m_userDefinedUcs},
|
||||
{RigWbsParameter::DF(), &m_userDefinedDF},
|
||||
{RigWbsParameter::K0_FG(), &m_userDefinedK0FG},
|
||||
{RigWbsParameter::K0_SH(), &m_userDefinedK0SH},
|
||||
{RigWbsParameter::FG_Shale(), &m_FGShaleMultiplier}};
|
||||
|
||||
for ( auto parameterFieldPair : m_parameterSourceFields )
|
||||
{
|
||||
auto sources = parameterFieldPair.first.sources();
|
||||
if ( !sources.empty() )
|
||||
{
|
||||
setParameterSource( parameterFieldPair.first, sources.front() );
|
||||
}
|
||||
}
|
||||
CAF_PDM_InitFieldNoDefault( &m_wbsParameters, "WbsParameters", "Well Bore Stability Parameters", "", "", "" );
|
||||
m_wbsParameters = new RimWbsParameters;
|
||||
|
||||
m_nameConfig->setCustomName( "Well Bore Stability" );
|
||||
m_nameConfig->enableAllAutoNameTags( true );
|
||||
|
||||
m_commonDataSource->setCaseType( RiaDefines::GEOMECH_ODB_CASE );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@@ -143,28 +56,7 @@ RimWellBoreStabilityPlot::RimWellBoreStabilityPlot()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimWellBoreStabilityPlot::applyWbsParametersToExtractor( RigGeoMechWellLogExtractor* extractor )
|
||||
{
|
||||
for ( auto parameterSourcePair : m_parameterSourceFields )
|
||||
{
|
||||
extractor->setWbsParametersSource( parameterSourcePair.first, ( *parameterSourcePair.second )() );
|
||||
}
|
||||
for ( auto parameterUserDefinedValuePair : m_userDefinedValueFields )
|
||||
{
|
||||
extractor->setWbsUserDefinedValue( parameterUserDefinedValuePair.first,
|
||||
( *parameterUserDefinedValuePair.second ) );
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimWellBoreStabilityPlot::ParameterSource RimWellBoreStabilityPlot::parameterSource( const RigWbsParameter& parameter ) const
|
||||
{
|
||||
auto field = sourceField( parameter );
|
||||
if ( field )
|
||||
{
|
||||
return ( *field )();
|
||||
}
|
||||
return RigWbsParameter::INVALID;
|
||||
m_wbsParameters->applyWbsParametersToExtractor( extractor );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@@ -172,24 +64,15 @@ RimWellBoreStabilityPlot::ParameterSource RimWellBoreStabilityPlot::parameterSou
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
double RimWellBoreStabilityPlot::userDefinedValue( const RigWbsParameter& parameter ) const
|
||||
{
|
||||
auto it = m_userDefinedValueFields.find( parameter );
|
||||
if ( it != m_userDefinedValueFields.end() )
|
||||
{
|
||||
return *it->second;
|
||||
}
|
||||
return std::numeric_limits<double>::infinity();
|
||||
return m_wbsParameters->userDefinedValue( parameter );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimWellBoreStabilityPlot::setParameterSource( const RigWbsParameter& parameter, ParameterSource source )
|
||||
void RimWellBoreStabilityPlot::setWbsParameters( const RimWbsParameters& wbsParameters )
|
||||
{
|
||||
auto field = sourceField( parameter );
|
||||
if ( field )
|
||||
{
|
||||
*field = source;
|
||||
}
|
||||
*m_wbsParameters = wbsParameters;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@@ -199,32 +82,8 @@ void RimWellBoreStabilityPlot::defineUiOrdering( QString uiConfigName, caf::PdmU
|
||||
{
|
||||
m_commonDataSource->uiOrdering( RimWellLogCurveCommonDataSource::smoothingUiOrderinglabel(), uiOrdering );
|
||||
|
||||
caf::PdmUiGroup* parameterSources = uiOrdering.addNewGroup( "Parameter Sources" );
|
||||
parameterSources->add( &m_porePressureSource );
|
||||
parameterSources->add( &m_porePressureShaleSource );
|
||||
if ( m_porePressureShaleSource == RigWbsParameter::USER_DEFINED )
|
||||
{
|
||||
parameterSources->add( &m_userDefinedPPShale );
|
||||
}
|
||||
parameterSources->add( &m_poissonRatioSource );
|
||||
parameterSources->add( &m_userDefinedPoissionRatio );
|
||||
parameterSources->add( &m_ucsSource );
|
||||
parameterSources->add( &m_userDefinedUcs );
|
||||
parameterSources->add( &m_OBG0Source );
|
||||
parameterSources->add( &m_DFSource );
|
||||
parameterSources->add( &m_userDefinedDF );
|
||||
parameterSources->add( &m_K0SHSource );
|
||||
parameterSources->add( &m_userDefinedK0SH );
|
||||
parameterSources->add( &m_FGShaleSource );
|
||||
if ( m_FGShaleSource == RigWbsParameter::PROPORTIONAL_TO_SH )
|
||||
{
|
||||
parameterSources->add( &m_FGShaleMultiplier );
|
||||
}
|
||||
else
|
||||
{
|
||||
parameterSources->add( &m_K0FGSource );
|
||||
parameterSources->add( &m_userDefinedK0FG );
|
||||
}
|
||||
caf::PdmUiGroup* parametersGroup = uiOrdering.addNewGroup( "Parameter Sources" );
|
||||
m_wbsParameters->uiOrdering( uiConfigName, *parametersGroup );
|
||||
|
||||
caf::PdmUiGroup* depthGroup = uiOrdering.addNewGroup( "Depth Axis" );
|
||||
RimWellLogPlot::uiOrderingForDepthAxis( uiConfigName, *depthGroup );
|
||||
@@ -238,181 +97,45 @@ void RimWellBoreStabilityPlot::defineUiOrdering( QString uiConfigName, caf::PdmU
|
||||
uiOrdering.skipRemainingFields( true );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QList<caf::PdmOptionItemInfo>
|
||||
RimWellBoreStabilityPlot::calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions, bool* useOptionsOnly )
|
||||
{
|
||||
QList<caf::PdmOptionItemInfo> options = RimWellLogPlot::calculateValueOptions( fieldNeedingOptions, useOptionsOnly );
|
||||
|
||||
std::set<RigWbsParameter> allParameters = RigWbsParameter::allParameters();
|
||||
|
||||
for ( const RigWbsParameter& parameter : allParameters )
|
||||
{
|
||||
caf::PdmField<ParameterSourceEnum>* field = sourceField( parameter );
|
||||
if ( field == fieldNeedingOptions )
|
||||
{
|
||||
std::vector<ParameterSource> sources = supportedSources( parameter );
|
||||
for ( int i = 0; i < (int)sources.size(); ++i )
|
||||
{
|
||||
if ( parameter.exclusiveOptions() || i == (int)sources.size() - 1 ||
|
||||
sources[i] == RigWbsParameter::HYDROSTATIC )
|
||||
{
|
||||
options.push_back( caf::PdmOptionItemInfo( ParameterSourceEnum::uiText( sources[i] ), sources[i] ) );
|
||||
}
|
||||
else
|
||||
{
|
||||
QStringList cumulativeSourceLabels;
|
||||
for ( int j = i; j < (int)sources.size(); ++j )
|
||||
{
|
||||
int index = 1 + ( j - i );
|
||||
cumulativeSourceLabels.push_back(
|
||||
QString( "%1. %2" ).arg( index ).arg( ParameterSourceEnum::uiText( sources[j] ) ) );
|
||||
}
|
||||
options.push_back( caf::PdmOptionItemInfo( cumulativeSourceLabels.join( ", " ), sources[i] ) );
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return options;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimWellBoreStabilityPlot::fieldChangedByUi( const caf::PdmFieldHandle* changedField,
|
||||
const QVariant& oldValue,
|
||||
const QVariant& newValue )
|
||||
{
|
||||
RimWellLogPlot::fieldChangedByUi( changedField, oldValue, newValue );
|
||||
|
||||
if ( changedField == &m_porePressureSource || changedField == &m_porePressureShaleSource ||
|
||||
changedField == &m_poissonRatioSource || changedField == &m_ucsSource || changedField == &m_OBG0Source ||
|
||||
changedField == &m_DFSource || changedField == &m_K0FGSource || changedField == &m_K0SHSource ||
|
||||
changedField == &m_FGShaleSource )
|
||||
{
|
||||
this->loadDataAndUpdate();
|
||||
}
|
||||
else if ( changedField == &m_userDefinedPPShale || changedField == &m_userDefinedPoissionRatio ||
|
||||
changedField == &m_userDefinedUcs || changedField == &m_userDefinedDF ||
|
||||
changedField == &m_userDefinedK0FG || changedField == &m_userDefinedK0SH ||
|
||||
changedField == &m_FGShaleMultiplier )
|
||||
{
|
||||
this->loadDataAndUpdate();
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimWellBoreStabilityPlot::assignValidSource( caf::PdmField<ParameterSourceEnum>* parameterSourceField,
|
||||
const std::vector<ParameterSource>& validSources )
|
||||
{
|
||||
CAF_ASSERT( parameterSourceField );
|
||||
if ( std::find( validSources.begin(), validSources.end(), ( *parameterSourceField )() ) == validSources.end() )
|
||||
{
|
||||
*parameterSourceField = validSources.front();
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimWellBoreStabilityPlot::onLoadDataAndUpdate()
|
||||
{
|
||||
std::set<RigWbsParameter> allParameters = RigWbsParameter::allParameters();
|
||||
|
||||
for ( const RigWbsParameter& parameter : allParameters )
|
||||
{
|
||||
caf::PdmField<ParameterSourceEnum>* field = sourceField( parameter );
|
||||
if ( field )
|
||||
{
|
||||
assignValidSource( field, supportedSources( parameter ) );
|
||||
}
|
||||
}
|
||||
|
||||
m_wbsParameters->loadDataAndUpdate();
|
||||
RimWellLogPlot::onLoadDataAndUpdate();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool RimWellBoreStabilityPlot::hasLasFileWithChannel( const QString& channel ) const
|
||||
void RimWellBoreStabilityPlot::childFieldChangedByUi( const caf::PdmFieldHandle* changedChildField )
|
||||
{
|
||||
RimWellPath* wellPath = m_commonDataSource->wellPathToApply();
|
||||
if ( wellPath && !RimWellLogFile::findMdAndChannelValuesForWellPath( wellPath, channel ).empty() )
|
||||
if ( changedChildField == &m_commonDataSource )
|
||||
{
|
||||
return true;
|
||||
applyDataSource();
|
||||
}
|
||||
else if ( changedChildField == &m_wbsParameters )
|
||||
{
|
||||
this->loadDataAndUpdate();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool RimWellBoreStabilityPlot::hasElementPropertyEntry( const RigFemResultAddress& resAddr ) const
|
||||
void RimWellBoreStabilityPlot::initAfterRead()
|
||||
{
|
||||
int timeStep = m_commonDataSource->timeStepToApply();
|
||||
RimGeoMechCase* geoMechCase = dynamic_cast<RimGeoMechCase*>( m_commonDataSource->caseToApply() );
|
||||
|
||||
RigFemPartResultsCollection* femPartResults = nullptr;
|
||||
if ( geoMechCase && timeStep > 0 )
|
||||
{
|
||||
femPartResults = geoMechCase->geoMechData()->femPartResults();
|
||||
if ( femPartResults )
|
||||
{
|
||||
return !femPartResults->resultValues( resAddr, 0, timeStep ).empty();
|
||||
}
|
||||
}
|
||||
return false;
|
||||
applyDataSource();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
caf::PdmField<RimWellBoreStabilityPlot::ParameterSourceEnum>*
|
||||
RimWellBoreStabilityPlot::sourceField( const RigWbsParameter& parameter ) const
|
||||
void RimWellBoreStabilityPlot::applyDataSource()
|
||||
{
|
||||
auto it = m_parameterSourceFields.find( parameter );
|
||||
if ( it != m_parameterSourceFields.end() )
|
||||
{
|
||||
return it->second;
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::vector<RimWellBoreStabilityPlot::ParameterSource>
|
||||
RimWellBoreStabilityPlot::supportedSources( const RigWbsParameter& parameter ) const
|
||||
{
|
||||
std::vector<RigGeoMechWellLogExtractor::WbsParameterSource> sources;
|
||||
|
||||
for ( auto source : parameter.sources() )
|
||||
{
|
||||
if ( source == RigWbsParameter::LAS_FILE )
|
||||
{
|
||||
if ( hasLasFileWithChannel( parameter.addressString( RigWbsParameter::LAS_FILE ) ) )
|
||||
{
|
||||
sources.push_back( source );
|
||||
}
|
||||
}
|
||||
else if ( source == RigWbsParameter::ELEMENT_PROPERTY_TABLE )
|
||||
{
|
||||
RigFemResultAddress resAddr = parameter.femAddress( RigWbsParameter::ELEMENT_PROPERTY_TABLE );
|
||||
if ( hasElementPropertyEntry( resAddr ) )
|
||||
{
|
||||
sources.push_back( source );
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
sources.push_back( source );
|
||||
}
|
||||
}
|
||||
return sources;
|
||||
m_wbsParameters->setGeoMechCase( dynamic_cast<RimGeoMechCase*>( m_commonDataSource->caseToApply() ) );
|
||||
m_wbsParameters->setWellPath( m_commonDataSource->wellPathToApply() );
|
||||
m_wbsParameters->setTimeStep( m_commonDataSource->timeStepToApply() );
|
||||
this->updateConnectedEditors();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user