back to EclBaseAquiferModel

This commit is contained in:
Elyes Ahmed
2022-09-23 14:01:40 +02:00
parent d6cbeb8b2b
commit c4c4c7ac88
2 changed files with 10 additions and 1 deletions

View File

@@ -108,6 +108,15 @@ public:
unsigned) const
{ }
/*!
* \brief Add the water which enters or leaves the reservoir due to aquifiers.
*/
template <class Context>
void addToSource(RateVector&,
const Context&,
unsigned) const
{ }
/*!
* \brief This method is called after each Newton-Raphson successful iteration.
*

View File

@@ -30,7 +30,7 @@ namespace Opm::Properties {
// by default use the dummy aquifer "model"
template<class TypeTag>
struct EclAquiferModel<TypeTag, TTag::EclFlowProblemAlugrid> {
using type = Opm::BlackoilAquiferModel<TypeTag>;
using type = Opm::EclBaseAquiferModel<TypeTag>;
};
// Enable aquifers by default in experimental mode
template<class TypeTag>