mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Required changes to use Qt6 and disable support for Qt5. There are still some adjustments related to Qt6 to be done, but these changes are not required to make Qt6 compile on relevant systems. * Build system changes Qt6 * Override enterEvent * Update QKeySequence * QtChart changes * Use QScreen to instepct dotsPerInch * Add app->quit() * Required updates for code related to QString * Use RiaQDateTimeTools * Required changes related to regular expressions * Support compile on Qt < 6.5 When version < 6.5 is found, qt_generate_deploy_app_script() is disabled. Compilation of ResInsight will work, but the install target will be incomplete. * Octave: add missing header. * Qt Advanced Docking: force Qt6 where both Qt5 and Qt6 is available. --------- Co-authored-by: magnesj <1793152+magnesj@users.noreply.github.com> Co-authored-by: Kristian Bendiksen <kristian.bendiksen@gmail.com>
471 lines
16 KiB
C++
471 lines
16 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2017 Statoil 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 "RifReaderEclipseRft.h"
|
|
|
|
#include "RiaLogging.h"
|
|
#include "RiaQDateTimeTools.h"
|
|
|
|
#include "RiaStringEncodingTools.h"
|
|
|
|
#include "cafVecIjk.h"
|
|
|
|
#include "ert/ecl/ecl_rft_file.h"
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RifReaderEclipseRft::RifReaderEclipseRft( const QString& fileName )
|
|
: m_fileName( fileName )
|
|
, m_ecl_rft_file( nullptr )
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RifReaderEclipseRft::~RifReaderEclipseRft()
|
|
{
|
|
if ( m_ecl_rft_file )
|
|
{
|
|
ecl_rft_file_free( m_ecl_rft_file );
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RifReaderEclipseRft::open()
|
|
{
|
|
if ( m_fileName.isEmpty() ) return;
|
|
|
|
RiaLogging::info( QString( "Opening file '%1'" ).arg( m_fileName ) );
|
|
|
|
try
|
|
{
|
|
// Use try/catch, as inconsistent RFT data might lead to exceptions
|
|
// https://github.com/OPM/ResInsight/issues/8354
|
|
m_ecl_rft_file = ecl_rft_file_alloc_case( RiaStringEncodingTools::toNativeEncoded( m_fileName ).data() );
|
|
}
|
|
catch ( ... )
|
|
{
|
|
}
|
|
|
|
if ( m_ecl_rft_file == nullptr )
|
|
{
|
|
RiaLogging::warning( QString( "resdata library could not find/open file '%1" ).arg( m_fileName ) );
|
|
return;
|
|
}
|
|
|
|
int fileSize = ecl_rft_file_get_size( m_ecl_rft_file );
|
|
|
|
m_eclipseRftAddresses.clear();
|
|
|
|
for ( int i = 0; i < fileSize; i++ )
|
|
{
|
|
ecl_rft_node_type* node = ecl_rft_file_iget_node( m_ecl_rft_file, i );
|
|
|
|
std::string wellNameStdString = ecl_rft_node_get_well_name( node );
|
|
QString wellName( wellNameStdString.c_str() );
|
|
m_wellNames.insert( wellName );
|
|
|
|
time_t timeStepTime_t = ecl_rft_node_get_date( node );
|
|
|
|
QDateTime timeStep = RiaQDateTimeTools::fromTime_t( timeStepTime_t );
|
|
|
|
RifEclipseRftAddress addressPressure =
|
|
RifEclipseRftAddress::createAddress( wellName, timeStep, RifEclipseRftAddress::RftWellLogChannelType::PRESSURE );
|
|
m_eclipseRftAddresses.insert( addressPressure );
|
|
m_rftAddressToLibeclNodeIdx[addressPressure] = i;
|
|
|
|
RifEclipseRftAddress addressDepth =
|
|
RifEclipseRftAddress::createAddress( wellName, timeStep, RifEclipseRftAddress::RftWellLogChannelType::TVD );
|
|
m_eclipseRftAddresses.insert( addressDepth );
|
|
m_rftAddressToLibeclNodeIdx[addressDepth] = i;
|
|
|
|
if ( ecl_rft_node_is_RFT( node ) )
|
|
{
|
|
RifEclipseRftAddress addressSwat =
|
|
RifEclipseRftAddress::createAddress( wellName, timeStep, RifEclipseRftAddress::RftWellLogChannelType::SWAT );
|
|
m_eclipseRftAddresses.insert( addressSwat );
|
|
m_rftAddressToLibeclNodeIdx[addressSwat] = i;
|
|
|
|
RifEclipseRftAddress addressSoil =
|
|
RifEclipseRftAddress::createAddress( wellName, timeStep, RifEclipseRftAddress::RftWellLogChannelType::SOIL );
|
|
m_eclipseRftAddresses.insert( addressSoil );
|
|
m_rftAddressToLibeclNodeIdx[addressSoil] = i;
|
|
|
|
RifEclipseRftAddress addressSgas =
|
|
RifEclipseRftAddress::createAddress( wellName, timeStep, RifEclipseRftAddress::RftWellLogChannelType::SGAS );
|
|
m_eclipseRftAddresses.insert( addressSgas );
|
|
m_rftAddressToLibeclNodeIdx[addressSgas] = i;
|
|
}
|
|
else if ( ecl_rft_node_is_PLT( node ) )
|
|
{
|
|
RifEclipseRftAddress addressWrat =
|
|
RifEclipseRftAddress::createAddress( wellName, timeStep, RifEclipseRftAddress::RftWellLogChannelType::WRAT );
|
|
m_eclipseRftAddresses.insert( addressWrat );
|
|
m_rftAddressToLibeclNodeIdx[addressWrat] = i;
|
|
|
|
RifEclipseRftAddress addressOrat =
|
|
RifEclipseRftAddress::createAddress( wellName, timeStep, RifEclipseRftAddress::RftWellLogChannelType::ORAT );
|
|
m_eclipseRftAddresses.insert( addressOrat );
|
|
m_rftAddressToLibeclNodeIdx[addressOrat] = i;
|
|
|
|
RifEclipseRftAddress addressGrat =
|
|
RifEclipseRftAddress::createAddress( wellName, timeStep, RifEclipseRftAddress::RftWellLogChannelType::GRAT );
|
|
m_eclipseRftAddresses.insert( addressGrat );
|
|
m_rftAddressToLibeclNodeIdx[addressGrat] = i;
|
|
}
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::set<RifEclipseRftAddress> RifReaderEclipseRft::eclipseRftAddresses()
|
|
{
|
|
if ( !m_ecl_rft_file )
|
|
{
|
|
open();
|
|
}
|
|
|
|
return m_eclipseRftAddresses;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RifReaderEclipseRft::values( const RifEclipseRftAddress& rftAddress, std::vector<double>* values )
|
|
{
|
|
CVF_ASSERT( values );
|
|
|
|
if ( !m_ecl_rft_file )
|
|
{
|
|
open();
|
|
}
|
|
|
|
values->clear();
|
|
|
|
int index = indexFromAddress( rftAddress );
|
|
if ( index < 0 ) return;
|
|
|
|
ecl_rft_node_type* node = ecl_rft_file_iget_node( m_ecl_rft_file, index );
|
|
|
|
RifEclipseRftAddress::RftWellLogChannelType wellLogChannelName = rftAddress.wellLogChannel();
|
|
|
|
switch ( wellLogChannelName )
|
|
{
|
|
case RifEclipseRftAddress::RftWellLogChannelType::TVD:
|
|
{
|
|
for ( int i = 0; i < ecl_rft_node_get_size( node ); i++ )
|
|
{
|
|
values->push_back( ecl_rft_node_iget_depth( node, i ) );
|
|
}
|
|
break;
|
|
}
|
|
case RifEclipseRftAddress::RftWellLogChannelType::PRESSURE:
|
|
{
|
|
for ( int i = 0; i < ecl_rft_node_get_size( node ); i++ )
|
|
{
|
|
values->push_back( ecl_rft_node_iget_pressure( node, i ) );
|
|
}
|
|
break;
|
|
}
|
|
case RifEclipseRftAddress::RftWellLogChannelType::SWAT:
|
|
{
|
|
for ( int i = 0; i < ecl_rft_node_get_size( node ); i++ )
|
|
{
|
|
values->push_back( ecl_rft_node_iget_swat( node, i ) );
|
|
}
|
|
break;
|
|
}
|
|
case RifEclipseRftAddress::RftWellLogChannelType::SOIL:
|
|
{
|
|
for ( int i = 0; i < ecl_rft_node_get_size( node ); i++ )
|
|
{
|
|
values->push_back( ecl_rft_node_iget_soil( node, i ) );
|
|
}
|
|
break;
|
|
}
|
|
case RifEclipseRftAddress::RftWellLogChannelType::SGAS:
|
|
{
|
|
for ( int i = 0; i < ecl_rft_node_get_size( node ); i++ )
|
|
{
|
|
values->push_back( ecl_rft_node_iget_sgas( node, i ) );
|
|
}
|
|
break;
|
|
}
|
|
case RifEclipseRftAddress::RftWellLogChannelType::WRAT:
|
|
{
|
|
for ( int i = 0; i < ecl_rft_node_get_size( node ); i++ )
|
|
{
|
|
values->push_back( ecl_rft_node_iget_wrat( node, i ) );
|
|
}
|
|
break;
|
|
}
|
|
case RifEclipseRftAddress::RftWellLogChannelType::ORAT:
|
|
{
|
|
for ( int i = 0; i < ecl_rft_node_get_size( node ); i++ )
|
|
{
|
|
values->push_back( ecl_rft_node_iget_orat( node, i ) );
|
|
}
|
|
break;
|
|
}
|
|
case RifEclipseRftAddress::RftWellLogChannelType::GRAT:
|
|
{
|
|
for ( int i = 0; i < ecl_rft_node_get_size( node ); i++ )
|
|
{
|
|
values->push_back( ecl_rft_node_iget_grat( node, i ) );
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::vector<caf::VecIjk> RifReaderEclipseRft::cellIndices( const QString& wellName, const QDateTime& timeStep )
|
|
{
|
|
if ( !m_ecl_rft_file )
|
|
{
|
|
open();
|
|
}
|
|
|
|
int index = indexFromAddress( wellName, timeStep );
|
|
if ( index < 0 ) return {};
|
|
|
|
std::vector<caf::VecIjk> indices;
|
|
|
|
ecl_rft_node_type* node = ecl_rft_file_iget_node( m_ecl_rft_file, index );
|
|
|
|
for ( int cellIdx = 0; cellIdx < ecl_rft_node_get_size( node ); cellIdx++ )
|
|
{
|
|
int i, j, k;
|
|
ecl_rft_node_iget_ijk( node, cellIdx, &i, &j, &k );
|
|
|
|
caf::VecIjk ijk( (size_t)i, (size_t)j, (size_t)k );
|
|
indices.push_back( ijk );
|
|
}
|
|
|
|
return indices;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::set<QDateTime> RifReaderEclipseRft::availableTimeSteps( const QString& wellName,
|
|
const RifEclipseRftAddress::RftWellLogChannelType& wellLogChannelName )
|
|
{
|
|
if ( !m_ecl_rft_file )
|
|
{
|
|
open();
|
|
}
|
|
|
|
std::set<QDateTime> timeSteps;
|
|
|
|
if ( wellName == "" ) return timeSteps;
|
|
|
|
for ( const RifEclipseRftAddress& address : m_eclipseRftAddresses )
|
|
{
|
|
if ( address.wellName() == wellName && address.wellLogChannel() == wellLogChannelName )
|
|
{
|
|
timeSteps.insert( address.timeStep() );
|
|
}
|
|
}
|
|
return timeSteps;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::set<QDateTime> RifReaderEclipseRft::availableTimeSteps( const QString& wellName,
|
|
const std::set<RifEclipseRftAddress::RftWellLogChannelType>& relevantChannels )
|
|
{
|
|
if ( !m_ecl_rft_file )
|
|
{
|
|
open();
|
|
}
|
|
|
|
std::set<QDateTime> timeSteps;
|
|
|
|
if ( wellName == "" ) return timeSteps;
|
|
|
|
for ( const RifEclipseRftAddress& address : m_eclipseRftAddresses )
|
|
{
|
|
if ( address.wellName() == wellName && relevantChannels.count( address.wellLogChannel() ) )
|
|
{
|
|
timeSteps.insert( address.timeStep() );
|
|
}
|
|
}
|
|
return timeSteps;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::set<QDateTime> RifReaderEclipseRft::availableTimeSteps( const QString& wellName )
|
|
{
|
|
auto wellLogChannels = availableWellLogChannels( wellName );
|
|
return availableTimeSteps( wellName, wellLogChannels );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::set<RifEclipseRftAddress::RftWellLogChannelType> RifReaderEclipseRft::availableWellLogChannels( const QString& wellName )
|
|
{
|
|
if ( !m_ecl_rft_file )
|
|
{
|
|
open();
|
|
}
|
|
|
|
std::set<RifEclipseRftAddress::RftWellLogChannelType> wellLogChannelNames;
|
|
|
|
if ( wellName == "" ) return wellLogChannelNames;
|
|
|
|
bool pressureFound = false;
|
|
bool rftFound = false;
|
|
bool pltFound = false;
|
|
|
|
for ( const RifEclipseRftAddress& address : m_eclipseRftAddresses )
|
|
{
|
|
if ( address.wellName() == wellName )
|
|
{
|
|
RifEclipseRftAddress::RftWellLogChannelType name = address.wellLogChannel();
|
|
|
|
if ( !pressureFound )
|
|
{
|
|
if ( name == RifEclipseRftAddress::RftWellLogChannelType::PRESSURE )
|
|
{
|
|
pressureFound = true;
|
|
if ( rftFound && pltFound ) break;
|
|
}
|
|
}
|
|
|
|
if ( !rftFound )
|
|
{
|
|
if ( name == RifEclipseRftAddress::RftWellLogChannelType::SWAT )
|
|
{
|
|
rftFound = true;
|
|
if ( pltFound && pressureFound ) break;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
if ( !pltFound )
|
|
{
|
|
if ( name == RifEclipseRftAddress::RftWellLogChannelType::WRAT )
|
|
{
|
|
pltFound = true;
|
|
if ( rftFound && pressureFound ) break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( pressureFound )
|
|
{
|
|
wellLogChannelNames.insert( RifEclipseRftAddress::RftWellLogChannelType::PRESSURE );
|
|
}
|
|
if ( rftFound )
|
|
{
|
|
wellLogChannelNames.insert( RifEclipseRftAddress::RftWellLogChannelType::SWAT );
|
|
wellLogChannelNames.insert( RifEclipseRftAddress::RftWellLogChannelType::SOIL );
|
|
wellLogChannelNames.insert( RifEclipseRftAddress::RftWellLogChannelType::SGAS );
|
|
}
|
|
if ( pltFound )
|
|
{
|
|
wellLogChannelNames.insert( RifEclipseRftAddress::RftWellLogChannelType::WRAT );
|
|
wellLogChannelNames.insert( RifEclipseRftAddress::RftWellLogChannelType::ORAT );
|
|
wellLogChannelNames.insert( RifEclipseRftAddress::RftWellLogChannelType::GRAT );
|
|
}
|
|
|
|
return wellLogChannelNames;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::set<QString> RifReaderEclipseRft::wellNames()
|
|
{
|
|
if ( !m_ecl_rft_file )
|
|
{
|
|
open();
|
|
}
|
|
|
|
return m_wellNames;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RifReaderEclipseRft::wellHasRftData( QString wellName )
|
|
{
|
|
if ( !m_ecl_rft_file )
|
|
{
|
|
open();
|
|
}
|
|
|
|
for ( const QString& name : wellNames() )
|
|
{
|
|
if ( name == wellName )
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
int RifReaderEclipseRft::indexFromAddress( const RifEclipseRftAddress& rftAddress ) const
|
|
{
|
|
auto it = m_rftAddressToLibeclNodeIdx.find( rftAddress );
|
|
|
|
if ( it != m_rftAddressToLibeclNodeIdx.end() )
|
|
{
|
|
return it->second;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
int RifReaderEclipseRft::indexFromAddress( const QString& wellName, const QDateTime& timeStep ) const
|
|
{
|
|
for ( const auto& [rftAddr, nodeIdx] : m_rftAddressToLibeclNodeIdx )
|
|
{
|
|
if ( rftAddr.wellName() == wellName && rftAddr.timeStep() == timeStep )
|
|
{
|
|
return nodeIdx;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|