mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Refactor: rename method.
This commit is contained in:
@@ -215,7 +215,7 @@ void Rim3dWellLogExtractionCurve::curveValuesAndMdsAtTimeStep( std::vector<doubl
|
||||
{
|
||||
*measuredDepthValues = geomExtractor->cellIntersectionMDs();
|
||||
|
||||
RimWellLogExtractionCurve::findAndLoadWbsParametersFromLasFiles( wellPath, geomExtractor.p() );
|
||||
RimWellLogExtractionCurve::findAndLoadWbsParametersFromFiles( wellPath, geomExtractor.p() );
|
||||
|
||||
m_geomResultDefinition->loadResult();
|
||||
|
||||
|
||||
@@ -659,7 +659,7 @@ RimWellLogExtractionCurve::WellLogExtractionCurveData
|
||||
return curveData;
|
||||
}
|
||||
|
||||
findAndLoadWbsParametersFromLasFiles( m_wellPath(), wellExtractor.p() );
|
||||
findAndLoadWbsParametersFromFiles( m_wellPath(), wellExtractor.p() );
|
||||
RimWellBoreStabilityPlot* wbsPlot = firstAncestorOrThisOfType<RimWellBoreStabilityPlot>();
|
||||
if ( wbsPlot )
|
||||
{
|
||||
@@ -863,7 +863,7 @@ void RimWellLogExtractionCurve::mapPropertyValuesFromReferenceWell( std::vector<
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
/// Search well path for LAS-files containing Well Bore Stability data and set them in the extractor.
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimWellLogExtractionCurve::findAndLoadWbsParametersFromLasFiles( const RimWellPath* wellPath, RigGeoMechWellLogExtractor* geomExtractor )
|
||||
void RimWellLogExtractionCurve::findAndLoadWbsParametersFromFiles( const RimWellPath* wellPath, RigGeoMechWellLogExtractor* geomExtractor )
|
||||
{
|
||||
auto allParams = RigWbsParameter::allParameters();
|
||||
for ( const RigWbsParameter& parameter : allParams )
|
||||
|
||||
@@ -95,7 +95,7 @@ public:
|
||||
void setBranchDetection( bool branchDetection );
|
||||
void setBranchIndex( int index );
|
||||
|
||||
static void findAndLoadWbsParametersFromLasFiles( const RimWellPath* wellPath, RigGeoMechWellLogExtractor* geomExtractor );
|
||||
static void findAndLoadWbsParametersFromFiles( const RimWellPath* wellPath, RigGeoMechWellLogExtractor* geomExtractor );
|
||||
|
||||
void setAutoNameComponents( bool addCaseName, bool addProperty, bool addWellname, bool addTimeStep, bool addDate );
|
||||
RiaDefines::PhaseType phaseType() const override;
|
||||
|
||||
@@ -3178,7 +3178,7 @@ void RimWellLogTrack::updateCurveDataRegionsOnPlot()
|
||||
curveData.md = geoMechWellLogExtractor->cellIntersectionMDs();
|
||||
curveData.tvd = geoMechWellLogExtractor->cellIntersectionTVDs();
|
||||
|
||||
RimWellLogExtractionCurve::findAndLoadWbsParametersFromLasFiles( wellPath, geoMechWellLogExtractor );
|
||||
RimWellLogExtractionCurve::findAndLoadWbsParametersFromFiles( wellPath, geoMechWellLogExtractor );
|
||||
RimWellBoreStabilityPlot* wbsPlot = firstAncestorOrThisOfType<RimWellBoreStabilityPlot>();
|
||||
if ( wbsPlot )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user