diff --git a/ebos/eclbaseaquifermodel.hh b/ebos/eclbaseaquifermodel.hh index 1094707d3..de5f80638 100644 --- a/ebos/eclbaseaquifermodel.hh +++ b/ebos/eclbaseaquifermodel.hh @@ -108,15 +108,6 @@ public: unsigned) const { } - /*! - * \brief Add the water which enters or leaves the reservoir due to aquifiers. - */ - template - void addToSource(RateVector&, - const Context&, - unsigned) const - { } - /*! * \brief This method is called after each Newton-Raphson successful iteration. * diff --git a/flow/flow_blackoil_alugrid.cpp b/flow/flow_blackoil_alugrid.cpp index ded026168..db6885b17 100644 --- a/flow/flow_blackoil_alugrid.cpp +++ b/flow/flow_blackoil_alugrid.cpp @@ -19,26 +19,19 @@ #include "config.h" #include -namespace Opm::Properties { - namespace TTag { - struct EclFlowProblemAlugrid { - using InheritsFrom = std::tuple; - }; - } - - -// by default use the dummy aquifer "model" -template -struct EclAquiferModel { - using type = Opm::EclBaseAquiferModel; +namespace Opm { +namespace Properties { +namespace TTag { +struct EclFlowProblemAlugrid { + using InheritsFrom = std::tuple; }; -// Enable aquifers by default in experimental mode +} template struct EclEnableAquifers { static constexpr bool value = false; }; } - +} int main(int argc, char** argv) { using TypeTag = Opm::Properties::TTag::EclFlowProblemAlugrid;