/* Copyright 2020 Equinor 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 . */ #include "config.h" #include #include #include #include #include #include //#include #include #include // NOTE: This file will be generated at compile time and placed in the build directory // See python/generate_docstring_hpp.py, and python/simulators/CMakeLists.txt for details #include // NOTE: EXIT_SUCCESS, EXIT_FAILURE is defined in cstdlib #include #include #include namespace Opm { std::unique_ptr> flowBlackoilTpfaMainInit(int argc, char** argv, bool outputCout, bool outputFiles) { // we always want to use the default locale, and thus spare us the trouble // with incorrect locale settings. resetLocale(); return std::make_unique>( argc, argv, outputCout, outputFiles); } } namespace py = pybind11; namespace Opm::Pybind { PyBlackOilSimulator::PyBlackOilSimulator( const std::string &deck_filename) : deck_filename_{deck_filename} { } PyBlackOilSimulator::PyBlackOilSimulator( std::shared_ptr deck, std::shared_ptr state, std::shared_ptr schedule, std::shared_ptr summary_config ) : deck_{std::move(deck)} , eclipse_state_{std::move(state)} , schedule_{std::move(schedule)} , summary_config_{std::move(summary_config)} { } // Public methods alphabetically sorted // ------------------------------------ void PyBlackOilSimulator::advance(int report_step) { while (currentStep() < report_step) { step(); } } bool PyBlackOilSimulator::checkSimulationFinished() { return getFlowMain().getSimTimer()->done(); } // This returns the report step number that will be executed next time step() // is called. int PyBlackOilSimulator::currentStep() { return getFlowMain().getSimTimer()->currentStepNum(); // NOTE: this->simulator_->episodeIndex() would also return the current // report step number, but this number is always delayed by 1 step relative // to this->flow_main_->getSimTimer()->currentStepNum() // See details in runStep() in file SimulatorFullyImplicitBlackoilEbos.hpp } py::array_t PyBlackOilSimulator::getCellVolumes() { auto vector = getMaterialState().getCellVolumes(); return py::array(vector.size(), vector.data()); } double PyBlackOilSimulator::getDT() { return getFlowMain().getPreviousReportStepSize(); } py::array_t PyBlackOilSimulator::getPorosity() { auto vector = getMaterialState().getPorosity(); return py::array(vector.size(), vector.data()); } py::array_t PyBlackOilSimulator:: getFluidStateVariable(const std::string &name) const { auto vector = getFluidState().getFluidStateVariable(name); return py::array(vector.size(), vector.data()); } py::array_t PyBlackOilSimulator:: getPrimaryVariable(const std::string &variable) const { auto vector = getFluidState().getPrimaryVariable(variable); return py::array(vector.size(), vector.data()); } py::array_t PyBlackOilSimulator:: getPrimaryVarMeaning(const std::string &variable) const { auto vector = getFluidState().getPrimaryVarMeaning(variable); return py::array(vector.size(), vector.data()); } std::map PyBlackOilSimulator:: getPrimaryVarMeaningMap(const std::string &variable) const { return getFluidState().getPrimaryVarMeaningMap(variable); } int PyBlackOilSimulator::run() { auto main_object = Opm::Main( this->deck_filename_ ); return main_object.runStatic(); } void PyBlackOilSimulator::setPorosity( py::array_t array) { std::size_t size_ = array.size(); const double *poro = array.data(); getMaterialState().setPorosity(poro, size_); } void PyBlackOilSimulator:: setPrimaryVariable( const std::string &variable, py::array_t array ) { std::size_t size_ = array.size(); const double *data = array.data(); getFluidState().setPrimaryVariable(variable, data, size_); } void PyBlackOilSimulator::setupMpi(bool mpi_init, bool mpi_finalize) { if (this->has_run_init_) { throw std::logic_error("mpi_init() called after step_init()"); } this->mpi_init_ = mpi_init; this->mpi_finalize_ = mpi_finalize; } int PyBlackOilSimulator::step() { if (!this->has_run_init_) { throw std::logic_error("step() called before step_init()"); } if (this->has_run_cleanup_) { throw std::logic_error("step() called after step_cleanup()"); } if(checkSimulationFinished()) { throw std::logic_error("step() called, but simulation is done"); } //if (this->debug_) // this->mainEbos_->getSimTimer()->report(std::cout); auto result = getFlowMain().executeStep(); return result; } int PyBlackOilSimulator::stepCleanup() { this->has_run_cleanup_ = true; return getFlowMain().executeStepsCleanup(); } int PyBlackOilSimulator::stepInit() { if (this->has_run_init_) { // Running step_init() multiple times is not implemented yet, if (this->has_run_cleanup_) { throw std::logic_error("step_init() called again"); } else { return EXIT_SUCCESS; } } if (this->deck_) { this->main_ = std::make_unique( this->deck_->getDataFile(), this->eclipse_state_, this->schedule_, this->summary_config_, this->mpi_init_, this->mpi_finalize_ ); } else { this->main_ = std::make_unique( this->deck_filename_, this->mpi_init_, this->mpi_finalize_ ); } int exit_code = EXIT_SUCCESS; this->flow_main_ = this->main_->initFlowBlackoil(exit_code); if (this->flow_main_) { int result = this->flow_main_->executeInitStep(); this->has_run_init_ = true; this->simulator_ = this->flow_main_->getSimulatorPtr(); this->fluid_state_ = std::make_unique>(this->simulator_); this->material_state_ = std::make_unique>(this->simulator_); return result; } else { return exit_code; } } // Private methods alphabetically sorted // ------------------------------------ Opm::FlowMain& PyBlackOilSimulator::getFlowMain() const { if (this->flow_main_) { return *this->flow_main_; } else { throw std::runtime_error("BlackOilSimulator not initialized: " "Cannot get reference to FlowMain object" ); } } PyFluidState& PyBlackOilSimulator:: getFluidState() const { if (this->fluid_state_) { return *this->fluid_state_; } else { throw std::runtime_error("BlackOilSimulator not initialized: " "Cannot get reference to FlowMainEbos object" ); } } PyMaterialState& PyBlackOilSimulator::getMaterialState() const { if (this->material_state_) { return *this->material_state_; } else { throw std::runtime_error("BlackOilSimulator not initialized: " "Cannot get reference to FlowMain object" ); } } // Exported functions void export_PyBlackOilSimulator(py::module& m) { using namespace Opm::Pybind::DocStrings; py::class_(m, "BlackOilSimulator") .def(py::init(), PyBlackOilSimulator_filename_constructor_docstring) .def(py::init< std::shared_ptr, std::shared_ptr, std::shared_ptr, std::shared_ptr>(), PyBlackOilSimulator_objects_constructor_docstring) .def("advance", &PyBlackOilSimulator::advance, advance_docstring, py::arg("report_step")) .def("check_simulation_finished", &PyBlackOilSimulator::checkSimulationFinished, checkSimulationFinished_docstring) .def("current_step", &PyBlackOilSimulator::currentStep, currentStep_docstring) .def("get_cell_volumes", &PyBlackOilSimulator::getCellVolumes, getCellVolumes_docstring) .def("get_dt", &PyBlackOilSimulator::getDT, getDT_docstring) .def("get_fluidstate_variable", &PyBlackOilSimulator::getFluidStateVariable, py::return_value_policy::copy, getFluidStateVariable_docstring, py::arg("name")) .def("get_porosity", &PyBlackOilSimulator::getPorosity, getPorosity_docstring) .def("get_primary_variable_meaning", &PyBlackOilSimulator::getPrimaryVarMeaning, py::return_value_policy::copy, getPrimaryVarMeaning_docstring, py::arg("variable")) .def("get_primary_variable_meaning_map", &PyBlackOilSimulator::getPrimaryVarMeaningMap, py::return_value_policy::copy, getPrimaryVarMeaningMap_docstring, py::arg("variable")) .def("get_primary_variable", &PyBlackOilSimulator::getPrimaryVariable, py::return_value_policy::copy, getPrimaryVariable_docstring, py::arg("variable")) .def("run", &PyBlackOilSimulator::run, run_docstring) .def("set_porosity", &PyBlackOilSimulator::setPorosity, setPorosity_docstring, py::arg("array")) .def("set_primary_variable", &PyBlackOilSimulator::setPrimaryVariable, py::arg("variable"), setPrimaryVariable_docstring, py::arg("value")) .def("setup_mpi", &PyBlackOilSimulator::setupMpi, setupMpi_docstring, py::arg("init"), py::arg("finalize")) .def("step", &PyBlackOilSimulator::step, step_docstring) .def("step_cleanup", &PyBlackOilSimulator::stepCleanup, stepCleanup_docstring) .def("step_init", &PyBlackOilSimulator::stepInit, stepInit_docstring); } } // namespace Opm::Pybind