revert changes

This commit is contained in:
Stein Krogstad
2023-10-26 17:28:05 +02:00
parent 446670943a
commit 94c0b49cf7
17 changed files with 859 additions and 89 deletions

View File

@@ -98,6 +98,25 @@ public:
const double rho,
DeferredLogger& deferred_logger) const;
double calculateMinimumBhpFromThp(const WellState& well_state,
const Well& well,
const SummaryState& summaryState,
const double rho) const;
bool isStableSolution(const WellState& well_state,
const Well& well,
const std::vector<double>& rates,
const SummaryState& summaryState,
DeferredLogger& deferred_logger) const;
std::optional<double>
estimateStableBhp (const WellState& well_state,
const Well& well,
const std::vector<double>& rates,
const double rho,
const SummaryState& summaryState,
DeferredLogger& deferred_logger) const;
private:
//! \brief Compute BHP from THP limit for an injector - implementation.
template<class ErrorPolicy>