mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-26 09:10:59 -06:00
144 lines
5.7 KiB
C++
144 lines
5.7 KiB
C++
/*
|
|
Copyright 2017 SINTEF Digital, Mathematics and Cybernetics.
|
|
Copyright 2017 Statoil ASA.
|
|
Copyright 2017 IRIS
|
|
Copyright 2019 Norce
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OPM is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
#ifndef OPM_WELL_BPH_THP_CALCULATOR_HEADER_INCLUDED
|
|
#define OPM_WELL_BPH_THP_CALCULATOR_HEADER_INCLUDED
|
|
|
|
#include <functional>
|
|
#include <optional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace Opm
|
|
{
|
|
|
|
class DeferredLogger;
|
|
class SummaryState;
|
|
class Well;
|
|
class WellInterfaceGeneric;
|
|
class WellState;
|
|
|
|
//! \brief Class for computing BHP limits.
|
|
class WellBhpThpCalculator {
|
|
public:
|
|
//! \brief Constructor sets reference to well.
|
|
WellBhpThpCalculator(const WellInterfaceGeneric& well) : well_(well) {}
|
|
|
|
//! \brief Checks if well has THP constraints.
|
|
bool wellHasTHPConstraints(const SummaryState& summaryState) const;
|
|
|
|
//! \brief Get THP constraint for well.
|
|
double getTHPConstraint(const SummaryState& summaryState) const;
|
|
|
|
//! \brief Obtain the most strict BHP from BHP limits.
|
|
double mostStrictBhpFromBhpLimits(const SummaryState& summaryState) const;
|
|
|
|
//! \brief Calculates THP from BHP.
|
|
double calculateThpFromBhp(const std::vector<double>& rates,
|
|
const double bhp,
|
|
const double rho,
|
|
const double alq,
|
|
DeferredLogger& deferred_logger) const;
|
|
|
|
//! \brief Compute BHP from THP limit for a producer.
|
|
std::optional<double>
|
|
computeBhpAtThpLimitProd(const std::function<std::vector<double>(const double)>& frates,
|
|
const SummaryState& summary_state,
|
|
const double maxPerfPress,
|
|
const double rho,
|
|
const double alq_value,
|
|
const double thp_limit,
|
|
DeferredLogger& deferred_logger) const;
|
|
|
|
//! \brief Compute BHP from THP limit for an injector.
|
|
std::optional<double>
|
|
computeBhpAtThpLimitInj(const std::function<std::vector<double>(const double)>& frates,
|
|
const SummaryState& summary_state,
|
|
const double rho,
|
|
const double flo_rel_tol,
|
|
const int max_iteration,
|
|
const bool throwOnError,
|
|
DeferredLogger& deferred_logger) const;
|
|
|
|
//! \brief Update THP.
|
|
void updateThp(const double rho,
|
|
const bool zero_rate_target,
|
|
const std::function<double()>& alq_value,
|
|
const std::array<unsigned,3>& active,
|
|
WellState& well_state,
|
|
DeferredLogger& deferred_logger) const;
|
|
|
|
template<class EvalWell>
|
|
EvalWell calculateBhpFromThp(const WellState& well_state,
|
|
const std::vector<EvalWell>& rates,
|
|
const Well& well,
|
|
const SummaryState& summaryState,
|
|
const double rho,
|
|
DeferredLogger& deferred_logger) const;
|
|
|
|
private:
|
|
//! \brief Compute BHP from THP limit for an injector - implementation.
|
|
template<class ErrorPolicy>
|
|
std::optional<double>
|
|
computeBhpAtThpLimitInjImpl(const std::function<std::vector<double>(const double)>& frates,
|
|
const SummaryState& summary_state,
|
|
const double rho,
|
|
const double flo_rel_tol,
|
|
const int max_iteration,
|
|
DeferredLogger& deferred_logger) const;
|
|
|
|
//! \brief Calculate max BHP.
|
|
std::optional<double>
|
|
bhpMax(const std::function<double(const double)>& fflo,
|
|
const double bhp_limit,
|
|
const double maxPerfPress,
|
|
const double vfp_flo_front,
|
|
DeferredLogger& deferred_logger) const;
|
|
|
|
//! \brief Common code for finding BHP from THP limit for producers/injectors.
|
|
std::optional<double>
|
|
computeBhpAtThpLimit(const std::function<std::vector<double>(const double)>& frates,
|
|
const std::function<double(const std::vector<double>)>& fbhp,
|
|
const std::array<double, 2>& range,
|
|
DeferredLogger& deferred_logger) const;
|
|
|
|
//! \brief Find limits using bisection.
|
|
bool bisectBracket(const std::function<double(const double)>& eq,
|
|
const std::array<double, 2>& range,
|
|
double& low, double& high,
|
|
std::optional<double>& approximate_solution,
|
|
DeferredLogger& deferred_logger) const;
|
|
|
|
//! \brief Find limits using brute-force solver.
|
|
static bool bruteForceBracket(const std::function<double(const double)>& eq,
|
|
const std::array<double, 2>& range,
|
|
double& low, double& high,
|
|
DeferredLogger& deferred_logger);
|
|
|
|
const WellInterfaceGeneric& well_; //!< Reference to well interface
|
|
};
|
|
|
|
}
|
|
|
|
#endif // OPM_WELL_BHP_THP_CALCULATOR_HEADER_INCLUDED
|