My Project
Loading...
Searching...
No Matches
AggregateMSWData.hpp
1/*
2 Copyright (c) 2018 Statoil ASA
3
4 This file is part of the Open Porous Media project (OPM).
5
6 OPM is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 OPM is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with OPM. If not, see <http://www.gnu.org/licenses/>.
18*/
19
20#ifndef OPM_AGGREGATE_MSW_DATA_HPP
21#define OPM_AGGREGATE_MSW_DATA_HPP
22
23#include <opm/output/data/Wells.hpp>
25
26#include <vector>
27
28namespace Opm {
29 class Phases;
30 class Schedule;
31 class EclipseGrid;
32 class UnitSystem;
33 class SummaryState;
34} // Opm
35
36namespace Opm { namespace RestartIO { namespace Helpers {
37
39 {
40 public:
41 explicit AggregateMSWData(const std::vector<int>& inteHead);
42
43 void captureDeclaredMSWData(const Opm::Schedule& sched,
44 const std::size_t rptStep,
45 const Opm::UnitSystem& units,
46 const std::vector<int>& inteHead,
47 const Opm::EclipseGrid& grid,
48 const Opm::SummaryState& smry,
49 const Opm::data::Wells& wr);
50
52 const std::vector<int>& getISeg() const
53 {
54 return this->iSeg_.data();
55 }
56
58 const std::vector<double>& getRSeg() const
59 {
60 return this->rSeg_.data();
61 }
62
64 const std::vector<int>& getILBs() const
65 {
66 return this->iLBS_.data();
67 }
68
70 const std::vector<int>& getILBr() const
71 {
72 return this->iLBR_.data();
73 }
74
75 private:
78
81
84
87 };
88
89}}} // Opm::RestartIO::Helpers
90
91#endif // OPM_AGGREGATE_WELL_DATA_HPP
Provide facilities to simplify constructing restart vectors such as IWEL or RSEG.
About cell information and dimension: The actual grid information is held in a pointer to an ERT ecl_...
Definition EclipseGrid.hpp:55
Definition AggregateMSWData.hpp:39
const std::vector< int > & getISeg() const
Retrieve Integer Multisegment well data Array.
Definition AggregateMSWData.hpp:52
const std::vector< int > & getILBr() const
Retrieve Integer multisegment well data Array for lateral branches (ILBR)
Definition AggregateMSWData.hpp:70
const std::vector< int > & getILBs() const
Retrieve Integer multisegment well data Array for lateral branches (ILBS)
Definition AggregateMSWData.hpp:64
const std::vector< double > & getRSeg() const
Retrieve Double precision segment data Array.
Definition AggregateMSWData.hpp:58
Provide read-only and read/write access to constantly sized portions/windows of a linearised buffer w...
Definition WindowedArray.hpp:50
const std::vector< T > & data() const
Get read-only access to full, linearised data items for all windows.
Definition WindowedArray.hpp:131
Provide read-only and read/write access to constantly sized portions/windows of a linearised buffer w...
Definition WindowedArray.hpp:164
auto data() const -> decltype(std::declval< const WindowedArray< T > >().data())
Get read-only access to full, linearised data items for all windows.
Definition WindowedArray.hpp:245
Definition Schedule.hpp:88
Definition SummaryState.hpp:68
Definition UnitSystem.hpp:34
Definition Wells.hpp:854
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30