GasLiftSingleWell.hpp
Go to the documentation of this file.
1/*
2 Copyright 2020 Equinor 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_GASLIFT_SINGLE_WELL_HEADER_INCLUDED
21#define OPM_GASLIFT_SINGLE_WELL_HEADER_INCLUDED
22
29
30#include <optional>
31
32namespace Opm {
33
34template<class TypeTag> class WellInterface;
35
36template<class TypeTag>
37class GasLiftSingleWell : public GasLiftSingleWellGeneric<GetPropType<TypeTag, Properties::Scalar>,
38 typename GetPropType<TypeTag, Properties::FluidSystem>::IndexTraitsType>
39{
43 using IndexTraits = typename FluidSystem::IndexTraitsType;
46
47public:
49 const Simulator& simulator,
50 const SummaryState& summary_state,
51 DeferredLogger& deferred_logger,
53 const GroupState<Scalar>& group_state,
55 GLiftSyncGroups& sync_groups,
56 const Parallel::Communication& comm,
57 bool glift_debug);
58
59 const WellInterfaceGeneric<Scalar, IndexTraits>& getWell() const override { return well_; }
60
61private:
62 std::optional<Scalar>
63 computeBhpAtThpLimit_(Scalar alq,
64 bool debug_ouput = true) const override;
65
66 BasicRates computeWellRates_(Scalar bhp,
67 bool bhp_is_limited,
68 bool debug_output = true) const override;
69
70 void setAlqMaxRate_(const GasLiftWell& well);
71 void setupPhaseVariables_();
72 bool checkThpControl_() const override;
73
74 const Simulator& simulator_;
75 const WellInterface<TypeTag>& well_;
76};
77
78} // namespace Opm
79
81
82#endif // OPM_GASLIFT_SINGLE_WELL_HEADER_INCLUDED
Definition: DeferredLogger.hpp:57
Definition: GasLiftGroupInfo.hpp:46
Definition: GasLiftSingleWellGeneric.hpp:48
std::set< int > GLiftSyncGroups
Definition: GasLiftSingleWellGeneric.hpp:57
Definition: GasLiftSingleWell.hpp:39
GasLiftSingleWell(const WellInterface< TypeTag > &well, const Simulator &simulator, const SummaryState &summary_state, DeferredLogger &deferred_logger, WellState< Scalar, IndexTraits > &well_state, const GroupState< Scalar > &group_state, GasLiftGroupInfo< Scalar, IndexTraits > &group_info, GLiftSyncGroups &sync_groups, const Parallel::Communication &comm, bool glift_debug)
Definition: GasLiftSingleWell_impl.hpp:43
const WellInterfaceGeneric< Scalar, IndexTraits > & getWell() const override
Definition: GasLiftSingleWell.hpp:59
Definition: GroupState.hpp:41
Manages the initializing and running of time dependent problems.
Definition: simulator.hh:84
Definition: WellInterfaceGeneric.hpp:53
Definition: WellInterface.hpp:76
Definition: WellState.hpp:66
Declare the properties used by the infrastructure code of the finite volume discretizations.
Dune::Communication< MPIComm > Communication
Definition: ParallelCommunication.hpp:30
Definition: blackoilboundaryratevector.hh:39
typename Properties::Detail::GetPropImpl< TypeTag, Property >::type::type GetPropType
get the type alias defined in the property (equivalent to old macro GET_PROP_TYPE(....
Definition: propertysystem.hh:233
This file provides the infrastructure to retrieve run-time parameters.
The Opm property system, traits with inheritance.
Definition: GasLiftSingleWellGeneric.hpp:126