WellAssemble.hpp
Go to the documentation of this file.
1/*
2 Copyright 2017 SINTEF Digital, Mathematics and Cybernetics.
3 Copyright 2017 Statoil ASA.
4 Copyright 2017 IRIS
5 Copyright 2019 Norce
6
7 This file is part of the Open Porous Media project (OPM).
8
9 OPM is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
13
14 OPM is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with OPM. If not, see <http://www.gnu.org/licenses/>.
21*/
22
23
24#ifndef OPM_WELL_ASSEMBLE_HEADER_INCLUDED
25#define OPM_WELL_ASSEMBLE_HEADER_INCLUDED
26
27#include <opm/input/eclipse/Schedule/ScheduleTypes.hpp>
28#include <opm/input/eclipse/Schedule/Well/WellEnums.hpp>
29
30#include <functional>
31
32namespace Opm
33{
34
35class DeferredLogger;
36class Group;
37template<class Scalar> class GroupState;
38class Schedule;
39class SummaryState;
40template<typename FluidSystem> class WellInterfaceFluidSystem;
41template<typename Scalar, typename IndexTraits> class WellState;
42struct WellInjectionControls;
43struct WellProductionControls;
44
45template<typename FluidSystem>
47 static constexpr int Water = FluidSystem::waterPhaseIdx;
48 static constexpr int Oil = FluidSystem::oilPhaseIdx;
49 static constexpr int Gas = FluidSystem::gasPhaseIdx;
50 using Scalar = typename FluidSystem::Scalar;
51 using IndexTraits = typename FluidSystem::IndexTraitsType;
52
53public:
55
56 template<class EvalWell>
58 const GroupState<Scalar>& group_state,
59 const Schedule& schedule,
60 const SummaryState& summaryState,
61 const WellProductionControls& controls,
62 const EvalWell& bhp,
63 const std::vector<EvalWell>& rates, // Always 3 canonical rates.
64 const std::function<EvalWell()>& bhp_from_thp,
65 EvalWell& control_eq,
66 DeferredLogger& deferred_logger) const;
67
68 template<class EvalWell>
70 const GroupState<Scalar>& group_state,
71 const Schedule& schedule,
72 const SummaryState& summaryState,
73 const WellInjectionControls& controls,
74 const EvalWell& bhp,
75 const EvalWell& injection_rate,
76 const std::function<EvalWell()>& bhp_from_thp,
77 EvalWell& control_eq,
78 DeferredLogger& deferred_logger) const;
79
80private:
82};
83
84
85
86}
87
88#endif // OPM_WELL_ASSEMBLE_HEADER_INCLUDED
Definition: DeferredLogger.hpp:57
Definition: GroupState.hpp:41
Definition: WellAssemble.hpp:46
WellAssemble(const WellInterfaceFluidSystem< FluidSystem > &well)
void assembleControlEqInj(const WellState< Scalar, IndexTraits > &well_state, const GroupState< Scalar > &group_state, const Schedule &schedule, const SummaryState &summaryState, const WellInjectionControls &controls, const EvalWell &bhp, const EvalWell &injection_rate, const std::function< EvalWell()> &bhp_from_thp, EvalWell &control_eq, DeferredLogger &deferred_logger) const
void assembleControlEqProd(const WellState< Scalar, IndexTraits > &well_state, const GroupState< Scalar > &group_state, const Schedule &schedule, const SummaryState &summaryState, const WellProductionControls &controls, const EvalWell &bhp, const std::vector< EvalWell > &rates, const std::function< EvalWell()> &bhp_from_thp, EvalWell &control_eq, DeferredLogger &deferred_logger) const
Definition: WellInterfaceFluidSystem.hpp:49
Definition: WellState.hpp:66
Definition: blackoilboundaryratevector.hh:39