///////////////////////////////////////////////////////////////////////////////// // // 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 ); 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; private: // Segment data // RftDate must be synced with definition in Opm::EclIO::ERft::RftDate using RftDate = std::tuple; using RftSegmentKey = std::pair; void buildMetaData(); void buildSegmentData(); void segmentDataDebugLog() const; bool isOpen() const; void importWellNames(); std::vector importWellData( const std::string& wellName, const std::string& propertyName, const RftDate& date ) const; static RifEclipseRftAddress::RftWellLogChannelType identifyChannelType( const std::string& resultName ); static std::string resultNameFromChannelType( RifEclipseRftAddress::RftWellLogChannelType channelType ); private: std::unique_ptr m_opm_rft; // RFT and PLT addresses std::set m_addresses; std::set m_wellNames; std::map m_rftWellDateSegments; };