2021-04-27 08:08:48 -05:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2021- 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 "RifSummaryReaderMultipleFiles.h"
|
|
|
|
|
|
|
|
#include "RifReaderEclipseSummary.h"
|
|
|
|
|
|
|
|
#include "cafAssert.h"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RifSummaryReaderMultipleFiles::RifSummaryReaderMultipleFiles( const std::vector<std::string>& filesOrderedByStartOfHistory )
|
|
|
|
: m_fileNames( filesOrderedByStartOfHistory )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
const std::vector<time_t>& RifSummaryReaderMultipleFiles::timeSteps( const RifEclipseSummaryAddress& resultAddress ) const
|
|
|
|
{
|
|
|
|
return m_aggregatedTimeSteps;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
bool RifSummaryReaderMultipleFiles::values( const RifEclipseSummaryAddress& resultAddress, std::vector<double>* values ) const
|
|
|
|
{
|
|
|
|
for ( const auto& reader : m_summaryReaders )
|
|
|
|
{
|
|
|
|
std::vector<double> readerValues;
|
|
|
|
reader->values( resultAddress, &readerValues );
|
2021-04-28 00:25:17 -05:00
|
|
|
|
|
|
|
if ( readerValues.empty() )
|
|
|
|
{
|
|
|
|
// When a well is introduced, no data is present before the time step the well is introduced
|
|
|
|
// Add values of zero for this interval
|
|
|
|
//
|
|
|
|
// This issue was reported for libecl, but it is not relevant now as the low level file readers only handle
|
|
|
|
// a single file.
|
|
|
|
// https://github.com/OPM/ResInsight/issues/7065
|
|
|
|
|
|
|
|
std::vector<double> zeros( reader->timeSteps( {} ).size(), 0.0 );
|
|
|
|
|
|
|
|
readerValues = zeros;
|
|
|
|
}
|
|
|
|
|
2021-04-27 08:08:48 -05:00
|
|
|
values->insert( values->end(), readerValues.begin(), readerValues.end() );
|
|
|
|
}
|
|
|
|
|
|
|
|
CAF_ASSERT( m_aggregatedTimeSteps.size() == values->size() );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
std::string RifSummaryReaderMultipleFiles::unitName( const RifEclipseSummaryAddress& resultAddress ) const
|
|
|
|
{
|
|
|
|
if ( !m_summaryReaders.empty() ) return m_summaryReaders.front()->unitName( resultAddress );
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RiaDefines::EclipseUnitSystem RifSummaryReaderMultipleFiles::unitSystem() const
|
|
|
|
{
|
|
|
|
if ( !m_summaryReaders.empty() ) return m_summaryReaders.front()->unitSystem();
|
|
|
|
|
|
|
|
return RiaDefines::EclipseUnitSystem::UNITS_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
bool RifSummaryReaderMultipleFiles::createReadersAndImportMetaData( RiaThreadSafeLogger* threadSafeLogger )
|
|
|
|
{
|
|
|
|
for ( const auto& fileName : m_fileNames )
|
|
|
|
{
|
|
|
|
auto candidate = std::make_unique<RifReaderEclipseSummary>();
|
|
|
|
auto result = candidate->open( QString::fromStdString( fileName ), threadSafeLogger );
|
|
|
|
if ( result )
|
|
|
|
{
|
|
|
|
m_summaryReaders.push_back( std::move( candidate ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( const auto& reader : m_summaryReaders )
|
|
|
|
{
|
|
|
|
auto readerTimeSteps = reader->timeSteps( {} );
|
|
|
|
|
|
|
|
m_aggregatedTimeSteps.insert( m_aggregatedTimeSteps.end(), readerTimeSteps.begin(), readerTimeSteps.end() );
|
|
|
|
|
|
|
|
{
|
|
|
|
auto resultAddresses = reader->allResultAddresses();
|
|
|
|
m_allResultAddresses.insert( resultAddresses.begin(), resultAddresses.end() );
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
auto errorResultAddresses = reader->allErrorAddresses();
|
|
|
|
m_allErrorAddresses.insert( errorResultAddresses.begin(), errorResultAddresses.end() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|