opm-simulators
GasLiftCommon.hpp
1 /*
2  Copyright 2022 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_COMMON_HEADER_INCLUDED
21 #define OPM_GASLIFT_COMMON_HEADER_INCLUDED
22 
23 #include <opm/simulators/utils/ParallelCommunication.hpp>
24 
25 #include <string>
26 
27 namespace Opm {
28 
29 class DeferredLogger;
30 template<class Scalar> class GroupState;
31 template<typename Scalar, typename IndexTraits> class WellState;
32 
33 template<typename Scalar, typename IndexTraits>
35 {
36 public:
37  virtual ~GasLiftCommon() = default;
38 
39 protected:
41  const GroupState<Scalar>& group_state,
42  DeferredLogger& deferred_logger,
43  const Parallel::Communication& comm,
44  bool glift_debug);
45 
46  enum class MessageType { INFO, WARNING };
47 
48  virtual void displayDebugMessage_(const std::string& msg) const = 0;
49  void displayDebugMessageOnRank0_(const std::string& msg) const;
50  void logMessage_(const std::string& prefix,
51  const std::string& msg,
52  MessageType msg_type = MessageType::INFO) const;
53 
54  WellState<Scalar, IndexTraits>& well_state_;
55  const GroupState<Scalar>& group_state_;
56  DeferredLogger& deferred_logger_;
57  const Parallel::Communication& comm_;
58  bool debug;
59  // By setting this variable to true we restrict some debug output
60  // to only be printed for rank 0. By setting this variable to false we keep
61  // the output on all ranks. This can in some cases be helpful as a debugging
62  // aid to check that the output is in fact identical over all ranks
63  bool debug_output_only_on_rank0 = false;
64 };
65 
66 } // namespace Opm
67 
68 #endif // OPM_GASLIFT_COMMON_INCLUDED
Definition: BlackoilWellModelConstraints.hpp:34
This file contains a set of helper functions used by VFPProd / VFPInj.
Definition: blackoilbioeffectsmodules.hh:45
Definition: DeferredLogger.hpp:56
Definition: GasLiftCommon.hpp:34
The state of a set of wells, tailored for use by the fully implicit blackoil simulator.
Definition: TemperatureModel.hpp:61