mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-08 23:23:01 -06:00
f8c5cf389f
* Set column width to 140 * Use c++20 * Remove redundant virtual
205 lines
8.5 KiB
C++
205 lines
8.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2022- Equinor ASA
|
|
//
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RimRftTools.h"
|
|
|
|
#include "RiaQDateTimeTools.h"
|
|
#include "RiaResultNames.h"
|
|
#include "RiaRftDefines.h"
|
|
|
|
#include "RifReaderRftInterface.h"
|
|
|
|
#include "RifReaderOpmRft.h"
|
|
#include "cafPdmUiItem.h"
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QList<caf::PdmOptionItemInfo> RimRftTools::wellLogChannelsOptions( RifReaderRftInterface* readerRft, const QString& wellName )
|
|
{
|
|
QList<caf::PdmOptionItemInfo> options;
|
|
|
|
if ( readerRft )
|
|
{
|
|
for ( const RifEclipseRftAddress::RftWellLogChannelType& channelName : readerRft->availableWellLogChannels( wellName ) )
|
|
{
|
|
options.push_back(
|
|
caf::PdmOptionItemInfo( caf::AppEnum<RifEclipseRftAddress::RftWellLogChannelType>::uiText( channelName ), channelName ) );
|
|
}
|
|
}
|
|
|
|
if ( options.empty() )
|
|
{
|
|
options.push_back( caf::PdmOptionItemInfo( caf::AppEnum<RifEclipseRftAddress::RftWellLogChannelType>::uiText(
|
|
RifEclipseRftAddress::RftWellLogChannelType::NONE ),
|
|
RifEclipseRftAddress::RftWellLogChannelType::NONE ) );
|
|
}
|
|
|
|
return options;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QList<caf::PdmOptionItemInfo> RimRftTools::wellNameOptions( RifReaderRftInterface* readerRft )
|
|
{
|
|
QList<caf::PdmOptionItemInfo> options;
|
|
|
|
options.push_back( caf::PdmOptionItemInfo( "None", "" ) );
|
|
if ( readerRft )
|
|
{
|
|
std::set<QString> wellNames = readerRft->wellNames();
|
|
for ( const QString& name : wellNames )
|
|
{
|
|
options.push_back( caf::PdmOptionItemInfo( name, name, false, caf::IconProvider( ":/Well.svg" ) ) );
|
|
}
|
|
}
|
|
|
|
return options;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QList<caf::PdmOptionItemInfo> RimRftTools::timeStepOptions( RifReaderRftInterface* readerRft,
|
|
const QString& wellName,
|
|
RifEclipseRftAddress::RftWellLogChannelType channelType )
|
|
{
|
|
QList<caf::PdmOptionItemInfo> options;
|
|
|
|
if ( readerRft )
|
|
{
|
|
QString dateFormat = "dd MMM yyyy";
|
|
std::set<QDateTime> timeStamps = readerRft->availableTimeSteps( wellName, channelType );
|
|
for ( const QDateTime& dt : timeStamps )
|
|
{
|
|
QString dateString = RiaQDateTimeTools::toStringUsingApplicationLocale( dt, dateFormat );
|
|
|
|
options.push_back( caf::PdmOptionItemInfo( dateString, dt ) );
|
|
}
|
|
}
|
|
|
|
options.push_back( caf::PdmOptionItemInfo( "None", QDateTime() ) );
|
|
|
|
return options;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QList<caf::PdmOptionItemInfo> RimRftTools::segmentTimeStepOptions( RifReaderRftInterface* readerRft, const QString& wellName )
|
|
{
|
|
return timeStepOptions( readerRft, wellName, RifEclipseRftAddress::RftWellLogChannelType::SEGMENT_VALUES );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QList<caf::PdmOptionItemInfo>
|
|
RimRftTools::segmentResultNameOptions( RifReaderRftInterface* readerRft, const QString& wellName, const QDateTime& timeStep )
|
|
{
|
|
QList<caf::PdmOptionItemInfo> options;
|
|
|
|
options.push_front( caf::PdmOptionItemInfo( RiaResultNames::undefinedResultName(), RiaResultNames::undefinedResultName() ) );
|
|
|
|
if ( readerRft )
|
|
{
|
|
options.push_back( caf::PdmOptionItemInfo( RiaDefines::segmentNumberResultName(), RiaDefines::segmentNumberResultName() ) );
|
|
|
|
for ( const auto& resultAdr : readerRft->eclipseRftAddresses( wellName, timeStep ) )
|
|
{
|
|
if ( resultAdr.wellLogChannel() == RifEclipseRftAddress::RftWellLogChannelType::SEGMENT_VALUES )
|
|
{
|
|
options.push_back( caf::PdmOptionItemInfo( resultAdr.segmentResultName(), resultAdr.segmentResultName() ) );
|
|
}
|
|
}
|
|
}
|
|
|
|
return options;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QList<caf::PdmOptionItemInfo> RimRftTools::segmentBranchIndexOptions( RifReaderRftInterface* readerRft,
|
|
const QString& wellName,
|
|
const QDateTime& timeStep,
|
|
RiaDefines::RftBranchType branchType )
|
|
{
|
|
auto opmReader = dynamic_cast<RifReaderOpmRft*>( readerRft );
|
|
if ( opmReader )
|
|
{
|
|
QList<caf::PdmOptionItemInfo> options;
|
|
options.push_front( caf::PdmOptionItemInfo( RiaDefines::allBranches(), -1 ) );
|
|
|
|
auto branchIdIndex = opmReader->branchIdsAndOneBasedIndices( wellName, timeStep, branchType );
|
|
|
|
std::set<int> indices;
|
|
for ( auto b : branchIdIndex )
|
|
{
|
|
indices.insert( b.second );
|
|
}
|
|
|
|
for ( auto i : indices )
|
|
{
|
|
std::vector<int> branchIds;
|
|
for ( auto b : branchIdIndex )
|
|
{
|
|
if ( b.second == i ) branchIds.push_back( b.first );
|
|
}
|
|
|
|
auto minMax = std::minmax_element( branchIds.begin(), branchIds.end() );
|
|
|
|
auto txt = QString( "%1 (Branch Id %2-%3)" ).arg( i ).arg( *minMax.first ).arg( *minMax.second );
|
|
options.push_back( caf::PdmOptionItemInfo( txt, i ) );
|
|
}
|
|
|
|
return options;
|
|
}
|
|
|
|
return {};
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::vector<double> RimRftTools::seglenstValues( RifReaderRftInterface* readerRft,
|
|
const QString& wellName,
|
|
const QDateTime& dateTime,
|
|
int segmentBranchIndex,
|
|
RiaDefines::RftBranchType segmentBranchType )
|
|
{
|
|
std::vector<double> seglenstValues;
|
|
|
|
auto resultNameSeglenst = RifEclipseRftAddress::createBranchSegmentAddress( wellName,
|
|
dateTime,
|
|
RiaDefines::segmentStartDepthResultName(),
|
|
segmentBranchIndex,
|
|
segmentBranchType );
|
|
readerRft->values( resultNameSeglenst, &seglenstValues );
|
|
|
|
if ( seglenstValues.size() > 2 )
|
|
{
|
|
// Segment 1 has zero length, assign seglenst to the start value of segment 2
|
|
// Ref mail dated June 10, 2022, topic "SELENST fix"
|
|
seglenstValues[0] = seglenstValues[1];
|
|
}
|
|
|
|
return seglenstValues;
|
|
}
|