/* Copyright (c) 2018 Equinor ASA This file is part of the Open Porous Media project (OPM). OPM 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. OPM 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 for more details. You should have received a copy of the GNU General Public License along with OPM. If not, see . */ #ifndef OPM_AGGREGATE_CONNECTION_DATA_HPP #define OPM_AGGREGATE_CONNECTION_DATA_HPP #include #include #include #include namespace Opm { class EclipseGrid; class Schedule; class UnitSystem; class SummaryState; } // Opm namespace Opm { namespace data { class Wells; }} namespace Opm { namespace RestartIO { namespace Helpers { class AggregateConnectionData { public: explicit AggregateConnectionData(const std::vector& inteHead); void captureDeclaredConnData(const Opm::Schedule& sched, const Opm::EclipseGrid& grid, const Opm::UnitSystem& units, const Opm::data::Wells& xw, const Opm::SummaryState& summary_state, const std::size_t sim_step); const std::vector& getIConn() const { return this->iConn_.data(); } const std::vector& getSConn() const { return this->sConn_.data(); } const std::vector& getXConn() const { return this->xConn_.data(); } private: WindowedMatrix iConn_; WindowedMatrix sConn_; WindowedMatrix xConn_; }; }}} // Opm::RestartIO::Helpers #endif // OPM_AGGREGATE_CONNECTION_DATA_HPP