connectionDensity: move to WellInterfaceGeneric

This commit is contained in:
Arne Morten Kvarving 2024-11-18 11:41:34 +01:00
parent 32dc2f990c
commit b0bb6473c9
2 changed files with 3 additions and 3 deletions

View File

@ -270,9 +270,6 @@ public:
WellState<Scalar>& well_state,
DeferredLogger& deferred_logger) const = 0;
virtual Scalar connectionDensity(const int globalConnIdx,
const int openConnIdx) const = 0;
/// \brief Wether the Jacobian will also have well contributions in it.
virtual bool jacobianContainsWellContributions() const
{

View File

@ -200,6 +200,9 @@ public:
return 0;
}
virtual Scalar connectionDensity(const int globalConnIdx,
const int openConnIdx) const = 0;
protected:
bool getAllowCrossFlow() const;