//////////////////////////////////////////////////////////////////////////////// // // 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #include "RifSummaryReaderMultipleFiles.h" #include "RifReaderEclipseSummary.h" #include "cafAssert.h" #include //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RifSummaryReaderMultipleFiles::RifSummaryReaderMultipleFiles( const std::vector& filesOrderedByStartOfHistory ) : m_fileNames( filesOrderedByStartOfHistory ) { } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- const std::vector& RifSummaryReaderMultipleFiles::timeSteps( const RifEclipseSummaryAddress& resultAddress ) const { return m_aggregatedTimeSteps; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RifSummaryReaderMultipleFiles::values( const RifEclipseSummaryAddress& resultAddress, std::vector* values ) const { for ( const auto& reader : m_summaryReaders ) { std::vector readerValues; reader->values( resultAddress, &readerValues ); 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 zeros( reader->timeSteps( {} ).size(), 0.0 ); readerValues = zeros; } 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(); 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; }