///////////////////////////////////////////////////////////////////////////////// // // 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "RifReaderEclipseRft.h" #include "RifRftSegment.h" #include "cvfObject.h" #include namespace Opm { namespace EclIO { class ERft; } // namespace EclIO } // namespace Opm class RifReaderOpmRft : public RifReaderRftInterface, public cvf::Object { public: RifReaderOpmRft( const QString& fileName ); RifReaderOpmRft( const QString& fileName, const QString& dataDeckFileName ); std::set eclipseRftAddresses() override; void values( const RifEclipseRftAddress& rftAddress, std::vector* values ) override; std::set availableTimeSteps( const QString& wellName ) override; std::set availableTimeSteps( const QString& wellName, const RifEclipseRftAddress::RftWellLogChannelType& wellLogChannelName ) override; std::set availableTimeSteps( const QString& wellName, const std::set& relevantChannels ) override; std::set availableWellLogChannels( const QString& wellName ) override; std::set wellNames() override; void cellIndices( const RifEclipseRftAddress& rftAddress, std::vector* indices ) override; std::map branchIdsAndOneBasedIndices( const QString& wellName, const QDateTime& timeStep, RiaDefines::RftBranchType branchType ); RifRftSegment segmentForWell( const QString& wellName, const QDateTime& timeStep ); private: // Segment data // RftDate must be synced with definition in Opm::EclIO::ERft::RftDate using RftDate = std::tuple; using RftSegmentKey = std::pair; void openFiles( const QString& fileName, const QString& dataDeckFileName ); void buildMetaData(); void buildSegmentData(); void segmentDataDebugLog() const; bool isOpen() const; void importWellNames(); void buildSegmentBranchTypes( const RftSegmentKey& segmentKey ); void identifyTubingCandidateBranches( RifRftSegment& segmentRef, const std::string& wellName, const std::vector& seglenstValues, const std::vector& seglenenValues ); void identifyAnnulusBranches( RifRftSegment& segmentRef, const std::vector& seglenstValues ); void reassignBranchIndices( RifRftSegment& segmentRef ); void identifyDeviceBranches( RifRftSegment& segmentRef, const std::vector& seglenstValues ); std::vector importWellData( const std::string& wellName, const std::string& propertyName, const RftDate& date ) const; void readWseglink( const std::string& filePath ); std::vector> annulusLinksForWell( const std::string& wellName ) const; std::vector annulusSegmentsForWell( const std::string& wellName ) const; static RifEclipseRftAddress::RftWellLogChannelType identifyChannelType( const std::string& resultName ); static std::string resultNameFromChannelType( RifEclipseRftAddress::RftWellLogChannelType channelType ); std::vector resultAsFloat( const std::string& resultName, const std::string& wellName, int year, int month, int day ) const; bool openFiles(); private: std::unique_ptr m_opm_rft; // RFT and PLT addresses std::set m_addresses; std::set m_wellNames; std::map m_rftWellDateSegments; std::set m_rftSegmentTimeSteps; std::map m_segmentResultItemCount; std::map m_connectionResultItemCount; std::map>> m_wseglink; QString m_fileName; QString m_dataDeckFileName; bool m_detectedErrorWhenOpeningRftFile; };