adding checkConvergenceExtraEqs to StandardWell

This commit is contained in:
Kai Bao
2019-06-06 11:12:22 +02:00
parent 4f7b899290
commit 94057a53f9
2 changed files with 55 additions and 30 deletions

View File

@@ -475,9 +475,15 @@ namespace Opm
virtual void updateWaterThroughput(const double dt, WellState& well_state) const override;
// checking the convergence of the well control equations
void checkConvergenceControlEq(ConvergenceReport& report,
DeferredLogger& deferred_logger) const;
// checking convergence of extra equations, if there are any
void checkConvergenceExtraEqs(const std::vector<double>& res,
ConvergenceReport& report,
DeferredLogger& deferred_logger) const;
};
}