/* Copyright 2013 SINTEF ICT, Applied Mathematics. Copyright 2014 STATOIL ASA. 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_SIMULATORFULLYIMPLICITBLACKOILPOLYMER_HEADER_INCLUDED #define OPM_SIMULATORFULLYIMPLICITBLACKOILPOLYMER_HEADER_INCLUDED #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //#include #include #include #include #include #include //#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace Opm { template class SimulatorFullyImplicitBlackoilPolymer; template struct SimulatorTraits > { typedef WellStateFullyImplicitBlackoilPolymer WellState; typedef PolymerBlackoilState ReservoirState; typedef BlackoilOutputWriter OutputWriter; typedef GridT Grid; typedef BlackoilPolymerModel Model; typedef NewtonSolver Solver; }; /// Class collecting all necessary components for a blackoil simulation with polymer /// injection. template class SimulatorFullyImplicitBlackoilPolymer : public SimulatorBase > { typedef SimulatorFullyImplicitBlackoilPolymer ThisType; typedef SimulatorBase BaseType; typedef SimulatorTraits Traits; typedef typename Traits::Solver Solver; public: SimulatorFullyImplicitBlackoilPolymer(const parameter::ParameterGroup& param, const GridT& grid, const DerivedGeology& geo, BlackoilPropsAdInterface& props, const PolymerPropsAd& polymer_props, const RockCompressibility* rock_comp_props, NewtonIterationBlackoilInterface& linsolver, const double* gravity, const bool disgas, const bool vapoil, const bool polymer, const bool plyshlog, const bool shrate, std::shared_ptr eclipse_state, BlackoilOutputWriter& output_writer, Opm::DeckConstPtr& deck, const std::vector& threshold_pressures_by_face); std::unique_ptr createSolver(const Wells* wells); void handleAdditionalWellInflow(SimulatorTimer& timer, WellsManager& wells_manager, typename BaseType::WellState& well_state, const Wells* wells); private: const PolymerPropsAd& polymer_props_; bool has_polymer_; // flag for PLYSHLOG keyword bool has_plyshlog_; // flag for SHRATE keyword bool has_shrate_; DeckConstPtr deck_; std::vector wells_rep_radius_; std::vector wells_perf_length_; // generate the mapping from Cartesian grid cells to global compressed cells, // copied from opm-core, to be used in function computeRepRadiusPerfLength() static void setupCompressedToCartesian(const int* global_cell, int number_of_cells, std::map& cartesian_to_compressed); // calculate the representative radius and length for for well peforations // it will be used in the shear-thinning calcluation only. void computeRepRadiusPerfLength(const Opm::EclipseStateConstPtr eclipseState, const size_t timeStep, const GridT& grid, std::vector& wells_rep_radius, std::vector& wells_perf_length); }; } // namespace Opm #include "SimulatorFullyImplicitBlackoilPolymer_impl.hpp" #endif // OPM_SIMULATORFULLYIMPLICITBLACKOILPOLYMER_HEADER_INCLUDED