/* Copyright 2017 SINTEF Digital, Mathematics and Cybernetics. Copyright 2017 Statoil ASA. Copyright 2016 - 2017 IRIS AS. 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 . */ #ifndef OPM_STANDARDWELL_EVAL_HEADER_INCLUDED #define OPM_STANDARDWELL_EVAL_HEADER_INCLUDED #include #include #include #include #include #include namespace Opm { class ConvergenceReport; class DeferredLogger; class GroupState; class Schedule; class SummaryState; class WellContributions; template class WellInterfaceIndices; class WellState; template class StandardWellEval : public StandardWellGeneric { protected: using PrimaryVariables = StandardWellPrimaryVariables; static constexpr int Bhp = PrimaryVariables::Bhp; static constexpr int WQTotal= PrimaryVariables::WQTotal; static constexpr int numWellConservationEq = PrimaryVariables::numWellConservationEq; static constexpr bool has_wfrac_variable = PrimaryVariables::has_wfrac_variable; static constexpr bool has_gfrac_variable = PrimaryVariables::has_gfrac_variable; static constexpr int WFrac = PrimaryVariables::WFrac; static constexpr int GFrac = PrimaryVariables::GFrac; static constexpr int SFrac = PrimaryVariables::SFrac; public: using EvalWell = typename PrimaryVariables::EvalWell; using Eval = DenseAd::Evaluation; using BVectorWell = typename StandardWellEquations::BVectorWell; //! \brief Returns a const reference to equation system. const StandardWellEquations& linSys() const { return linSys_; } protected: StandardWellEval(const WellInterfaceIndices& baseif); const WellInterfaceIndices& baseif_; const EvalWell& getBhp() const { return primary_variables_.evaluation_[Bhp]; } const EvalWell& getWQTotal() const { return primary_variables_.evaluation_[WQTotal]; } EvalWell extendEval(const Eval& in) const; // computing the accumulation term for later use in well mass equations void computeAccumWell(); // TODO: not total sure whether it is a good idea to put this function here // the major reason to put here is to avoid the usage of Wells struct void computeConnectionDensities(const std::vector& perfComponentRates, const std::vector& b_perf, const std::vector& rsmax_perf, const std::vector& rvmax_perf, const std::vector& rvwmax_perf, const std::vector& surf_dens_perf, DeferredLogger& deferred_logger); ConvergenceReport getWellConvergence(const WellState& well_state, const std::vector& B_avg, const double maxResidualAllowed, const double tol_wells, const double relaxed_tolerance_flow, const bool relax_tolerance, std::vector& res, DeferredLogger& deferred_logger) const; void init(std::vector& perf_depth, const std::vector& depth_arg, const int num_cells, const bool has_polymermw); void updatePrimaryVariables(const WellState& well_state, DeferredLogger& deferred_logger) const; void updateWellStateFromPrimaryVariables(WellState& well_state, DeferredLogger& deferred_logger) const; void updatePrimaryVariablesNewton(const BVectorWell& dwells, const double dFLimit, const double dBHPLimit) const; mutable PrimaryVariables primary_variables_; //!< Primary variables for well // the saturations in the well bore under surface conditions at the beginning of the time step std::vector F0_; StandardWellEquations linSys_; //!< Linear equation system }; } #endif // OPM_STANDARDWELL_EVAL_HEADER_INCLUDED