Add WellInterfaceGeneric::getDynamicThpLimit() method.

This commit is contained in:
Atgeirr Flø Rasmussen
2022-04-05 13:19:12 +02:00
parent eb0a516ff0
commit 6104a01468
2 changed files with 6 additions and 0 deletions

View File

@@ -347,6 +347,11 @@ void WellInterfaceGeneric::setDynamicThpLimit(const double thp_limit)
dynamic_thp_limit_ = thp_limit;
}
std::optional<double> WellInterfaceGeneric::getDynamicThpLimit() const
{
return dynamic_thp_limit_;
}
void WellInterfaceGeneric::updatePerforatedCell(std::vector<bool>& is_cell_perforated)
{