opm-simulators
SegmentState.hpp
1 /*
2  Copyright Equinor ASA 2021, 2022.
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_SEGMENTSTATE_HEADER_INCLUDED
21 #define OPM_SEGMENTSTATE_HEADER_INCLUDED
22 
23 #include <cstddef>
24 #include <vector>
25 
26 namespace Opm {
27 class WellSegments;
28 } // namespace Opm
29 
30 namespace Opm {
31 
32 template<class Scalar>
33 class SegmentState
34 {
35 public:
36  SegmentState() = default;
37  SegmentState(int num_phases, const WellSegments& segments);
38 
39  static SegmentState serializationTestObject();
40 
41  Scalar pressure_drop(std::size_t index) const;
42  bool empty() const;
43  void scale_pressure(Scalar bhp);
44 
45  const std::vector<int>& segment_number() const;
46  std::size_t size() const;
47 
48  template<class Serializer>
49  void serializeOp(Serializer& serializer)
50  {
51  serializer(rates);
52  serializer(dissolved_gas_rate);
53  serializer(vaporized_oil_rate);
54  serializer(phase_resv_rates);
55  serializer(phase_velocity);
56  serializer(phase_holdup);
57  serializer(phase_viscosity);
58  serializer(phase_density);
59  serializer(pressure);
60  serializer(pressure_drop_friction);
61  serializer(pressure_drop_hydrostatic);
62  serializer(pressure_drop_accel);
63  serializer(temperature);
64  serializer(m_segment_number);
65  }
66 
67  bool operator==(const SegmentState&) const;
68 
69  std::vector<Scalar> rates;
70  std::vector<Scalar> dissolved_gas_rate;
71  std::vector<Scalar> vaporized_oil_rate;
72 
74  std::vector<Scalar> phase_resv_rates;
75 
77  std::vector<Scalar> phase_velocity;
78 
80  std::vector<Scalar> phase_holdup;
81 
83  std::vector<Scalar> phase_viscosity;
84 
101  std::vector<Scalar> phase_density;
102 
103  std::vector<Scalar> pressure;
104  std::vector<Scalar> pressure_drop_friction;
105  std::vector<Scalar> pressure_drop_hydrostatic;
106  std::vector<Scalar> pressure_drop_accel;
107 
108  std::vector<Scalar> temperature;
109 
110 private:
111  std::vector<int> m_segment_number;
112 };
113 
114 } // namepace Opm
115 
116 #endif // OPM_SEGMENTSTATE_HEADER_INCLUDED
std::vector< Scalar > phase_density
Segment condition phase densities.
Definition: SegmentState.hpp:101
Structs needed for tpfalinearizer and its gpuparams struct extracted to be defined in one place that ...
Definition: blackoilbioeffectsmodules.hh:45
std::vector< Scalar > phase_holdup
Segment condition holdup fractions through segment (per phase)
Definition: SegmentState.hpp:80
std::vector< Scalar > phase_resv_rates
Segment condition volume flow rates through segment (per phase)
Definition: SegmentState.hpp:74
std::vector< Scalar > phase_velocity
Segment condition flow velocity through segment (per phase)
Definition: SegmentState.hpp:77
std::vector< Scalar > phase_viscosity
Segment condition phase viscosities.
Definition: SegmentState.hpp:83