Get primary variables and fluid state from Python

Added methods to Python module opm.simulators.BlackOilSimulator to
access primary variables and fluid state variables.
This commit is contained in:
Håkon Hægland
2023-10-26 12:29:06 +02:00
parent c7e7204727
commit 55aab60549
10 changed files with 581 additions and 21 deletions

View File

@@ -23,7 +23,9 @@
#include <opm/simulators/flow/Main.hpp>
#include <opm/simulators/flow/FlowMain.hpp>
#include <opm/models/utils/propertysystem.hh>
#include <opm/models/utils/parametersystem.hh>
#include <opm/simulators/flow/python/Pybind11Exporter.hpp>
#include <opm/simulators/flow/python/PyFluidState.hpp>
#include <opm/simulators/flow/python/PyMaterialState.hpp>
#include <opm/input/eclipse/EclipseState/EclipseState.hpp>
#include <opm/input/eclipse/Schedule/Schedule.hpp>
@@ -46,18 +48,27 @@ public:
void advance(int report_step);
bool checkSimulationFinished();
int currentStep();
py::array_t<double> getFluidStateVariable(const std::string &name) const;
py::array_t<double> getCellVolumes();
double getDT();
py::array_t<double> getPorosity();
py::array_t<double> getPrimaryVariable(const std::string &variable) const;
py::array_t<int> getPrimaryVarMeaning(const std::string &variable) const;
std::map<std::string, int> getPrimaryVarMeaningMap(const std::string &variable) const;
int run();
void setPorosity(
py::array_t<double, py::array::c_style | py::array::forcecast> array);
void setPrimaryVariable(
const std::string &idx_name,
py::array_t<double,
py::array::c_style | py::array::forcecast> array);
int step();
int stepCleanup();
int stepInit();
private:
Opm::FlowMain<TypeTag>& getFlowMain() const;
PyFluidState<TypeTag>& getFluidState() const;
PyMaterialState<TypeTag>& getMaterialState() const;
const std::string deck_filename_;
@@ -71,6 +82,7 @@ private:
std::unique_ptr<Opm::FlowMain<TypeTag>> main_ebos_;
Simulator *ebos_simulator_;
std::unique_ptr<PyFluidState<TypeTag>> fluid_state_;
std::unique_ptr<PyMaterialState<TypeTag>> material_state_;
std::shared_ptr<Opm::Deck> deck_;
std::shared_ptr<Opm::EclipseState> eclipse_state_;

View File

@@ -0,0 +1,74 @@
/*
Copyright 2023 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 <http://www.gnu.org/licenses/>.
*/
#ifndef OPM_PY_FLUID_STATE_HEADER_INCLUDED
#define OPM_PY_FLUID_STATE_HEADER_INCLUDED
#include <opm/models/utils/propertysystem.hh>
#include <exception>
#include <iostream>
#include <map>
#include <memory>
#include <string>
#include <vector>
namespace Opm::Pybind
{
template <class TypeTag>
class PyFluidState {
using Simulator = GetPropType<TypeTag, Opm::Properties::Simulator>;
using Problem = GetPropType<TypeTag, Opm::Properties::Problem>;
using Model = GetPropType<TypeTag, Opm::Properties::Model>;
using ElementContext = GetPropType<TypeTag, Opm::Properties::ElementContext>;
using FluidSystem = GetPropType<TypeTag, Opm::Properties::FluidSystem>;
using Indices = GetPropType<TypeTag, Opm::Properties::Indices>;
using GridView = GetPropType<TypeTag, Opm::Properties::GridView>;
using PrimaryVariables = GetPropType<TypeTag, Properties::PrimaryVariables>;
enum class VariableType {
// Primary variables: Sw, Sg, po, pg, Rs, Rv
Sw, Sg, So, pw, pg, po, Rs, Rv, rho_w, rho_g, rho_o, T
};
public:
PyFluidState(Simulator *ebos_simulator);
std::unique_ptr<double []> getFluidStateVariable(
const std::string &name, std::size_t *size ) const;
std::unique_ptr<int []> getPrimaryVarMeaning(
const std::string &variable, std::size_t *size) const;
std::map<std::string, int> getPrimaryVarMeaningMap(const std::string &variable) const;
std::unique_ptr<double []> getPrimaryVariable(
const std::string &idx_name, std::size_t *size ) const;
void setPrimaryVariable(const std::string &idx_name, const double *data, std::size_t size);
private:
std::size_t getPrimaryVarIndex_(const std::string &idx_name) const;
int getVariableMeaning_(PrimaryVariables &primary_vars, const std::string &variable) const;
VariableType getVariableType_(const std::string &name) const;
template <class FluidState> double getVariableValue_(
FluidState &fs, VariableType var_type, const std::string &name) const;
void variableNotFoundError_(const std::string &name) const;
Simulator *ebos_simulator_;
};
}
#include "PyFluidState_impl.hpp"
#endif // OPM_PY_FLUID_STATE_HEADER_INCLUDED

View File

@@ -0,0 +1,322 @@
/*
Copyright 2023 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 <http://www.gnu.org/licenses/>.
*/
#include <fmt/format.h>
namespace Opm::Pybind {
template <class TypeTag>
PyFluidState<TypeTag>::
PyFluidState(Simulator* ebos_simulator) : ebos_simulator_(ebos_simulator)
{
}
// Public methods alphabetically sorted
// ------------------------------------
template <class TypeTag>
std::unique_ptr<int []>
PyFluidState<TypeTag>::
getPrimaryVarMeaning(const std::string &variable, std::size_t *size) const {
Model &model = this->ebos_simulator_->model();
auto &sol = model.solution(/*timeIdx*/0);
*size = model.numGridDof();
auto array = std::make_unique<int []>(*size);
for (unsigned dof_idx = 0; dof_idx < *size; ++dof_idx) {
auto primary_vars = sol[dof_idx];
array[dof_idx] = getVariableMeaning_(primary_vars, variable);
}
return array;
}
template <class TypeTag>
std::map<std::string, int>
PyFluidState<TypeTag>::
getPrimaryVarMeaningMap(const std::string &variable) const
{
if (variable.compare("pressure") == 0) {
return {{ "Po", static_cast<int>(PrimaryVariables::PressureMeaning::Po) },
{ "Pw", static_cast<int>(PrimaryVariables::PressureMeaning::Pw) },
{ "Pg", static_cast<int>(PrimaryVariables::PressureMeaning::Pg) }};
}
else if (variable.compare("water") == 0) {
return {{ "Sw", static_cast<int>(PrimaryVariables::WaterMeaning::Sw) },
{ "Rvw", static_cast<int>(PrimaryVariables::WaterMeaning::Rvw) },
{ "Rsw", static_cast<int>(PrimaryVariables::WaterMeaning::Rsw) },
{ "Disabled", static_cast<int>(PrimaryVariables::WaterMeaning::Disabled) }};
}
else if (variable.compare("gas") == 0) {
return {{ "Sg", static_cast<int>(PrimaryVariables::GasMeaning::Sg) },
{ "Rs", static_cast<int>(PrimaryVariables::GasMeaning::Rs) },
{ "Rv", static_cast<int>(PrimaryVariables::GasMeaning::Rv) },
{ "Disabled", static_cast<int>(PrimaryVariables::GasMeaning::Disabled) }};
}
else if (variable.compare("brine") == 0) {
return {{ "Cs", static_cast<int>(PrimaryVariables::BrineMeaning::Cs) },
{ "Sp", static_cast<int>(PrimaryVariables::BrineMeaning::Sp) },
{ "Disabled", static_cast<int>(PrimaryVariables::BrineMeaning::Disabled) }};
}
else {
const std::string msg = fmt::format(
"Unknown variable meaning '{}': Expected pressure, water, gas, or brine", variable);
throw std::runtime_error(msg);
}
}
/* Meaning of the primary variables: Sw, Sg, po, pg, Rs, Rv
* 1. Sw_po_Sg -> threephase case
* 2. Sw_po_Rs -> water + oil case
* 3. Sw_pg_Rv -> water + gas case
*/
/* Variables:
Sw = Water saturation,
So = Oil saturation,
Sg = Gas saturation,
pw = Water pressure,
po = Oil pressure,
pg = Gas pressure,
Rs = The solution gas oil ratio: The amount of gas dissolved in the oil
Rv = The oil vaporization factor of the gas phase
invB = The inverse formation volume factor of a fluid phase
rho_w = Water density,
rho_o = Oil density,
rho_g = Gas density,
mu_w = Water viscosity,
mu_o = Oil viscosity,
mu_g = Gas viscosity,
kr_w = Water relperm,
kr_o = Oil relperm,
kr_g = Gas relperm,
*/
template <class TypeTag>
std::unique_ptr<double []>
PyFluidState<TypeTag>::
getFluidStateVariable(const std::string &name, std::size_t *size ) const
{
using ElementIterator = typename GridView::template Codim<0>::Iterator;
using Element = typename GridView::template Codim<0>::Entity;
Model &model = this->ebos_simulator_->model();
*size = model.numGridDof();
const auto& grid_view = this->ebos_simulator_->vanguard().gridView();
/* NOTE: grid_view.size(0) should give the same value as
* model.numGridDof()
*/
auto array = std::make_unique<double []>(*size);
ElementContext elem_ctx(*this->ebos_simulator_);
ElementIterator elem_itr = grid_view.template begin</*codim=*/0>();
const ElementIterator& elem_end_itr = grid_view.template end</*codim=*/0>();
auto var_type = getVariableType_(name);
for (; elem_itr != elem_end_itr; ++elem_itr) {
const Element& elem = *elem_itr;
elem_ctx.updatePrimaryStencil(elem);
elem_ctx.updatePrimaryIntensiveQuantities(/*timeIdx=*/0);
for (unsigned dof_idx = 0;dof_idx < elem_ctx.numPrimaryDof(/*timeIdx=*/0); ++dof_idx) {
const auto& int_quants = elem_ctx.intensiveQuantities(dof_idx, /*timeIdx=*/0);
const auto& fs = int_quants.fluidState();
unsigned global_dof_idx = elem_ctx.globalSpaceIndex(dof_idx, /*timeIdx=*/0);
array[global_dof_idx] = getVariableValue_(fs, var_type, name);
}
}
return array;
}
template <class TypeTag>
std::unique_ptr<double []>
PyFluidState<TypeTag>::
getPrimaryVariable(const std::string &idx_name, std::size_t *size ) const
{
std::size_t primary_var_idx = getPrimaryVarIndex_(idx_name);
Model &model = this->ebos_simulator_->model();
auto &sol = model.solution(/*timeIdx*/0);
*size = model.numGridDof();
auto array = std::make_unique<double []>(*size);
for (unsigned dof_idx = 0; dof_idx < *size; ++dof_idx) {
auto primary_vars = sol[dof_idx];
array[dof_idx] = primary_vars[primary_var_idx];
}
return array;
}
template <class TypeTag>
void
PyFluidState<TypeTag>::
setPrimaryVariable(const std::string &idx_name, const double *data, std::size_t size)
{
std::size_t primary_var_idx = getPrimaryVarIndex_(idx_name);
Model &model = this->ebos_simulator_->model();
auto &sol = model.solution(/*timeIdx*/0);
auto model_size = model.numGridDof();
if (model_size != size) {
const std::string msg = fmt::format(
"Cannot set primary variable. Expected array of size {} but got array of size: {}",
model_size, size);
throw std::runtime_error(msg);
}
for (unsigned dof_idx = 0; dof_idx < size; ++dof_idx) {
auto &primary_vars = sol[dof_idx];
primary_vars[primary_var_idx] = data[dof_idx];
}
}
// Private methods alphabetically sorted
// -------------------------------------
template <class TypeTag>
std::size_t
PyFluidState<TypeTag>::
getPrimaryVarIndex_(const std::string &idx_name) const
{
if (idx_name.compare("pressure") == 0) {
return Indices::pressureSwitchIdx;
}
else if (idx_name.compare("water_saturation") == 0) {
return Indices::waterSwitchIdx;
}
else if (idx_name.compare("composition") == 0) {
return Indices::compositionSwitchIdx;
}
else {
const std::string msg = fmt::format("Unknown primary variable index name: {}", idx_name);
throw std::runtime_error(msg);
}
}
template <class TypeTag>
int
PyFluidState<TypeTag>::
getVariableMeaning_(PrimaryVariables &primary_vars, const std::string &variable) const
{
if (variable.compare("pressure") == 0) {
return static_cast<int>(primary_vars.primaryVarsMeaningPressure());
}
else if(variable.compare("water") == 0) {
return static_cast<int>(primary_vars.primaryVarsMeaningWater());
}
else if (variable.compare("gas") == 0) {
return static_cast<int>(primary_vars.primaryVarsMeaningGas());
}
else if (variable.compare("brine") == 0) {
return static_cast<int>(primary_vars.primaryVarsMeaningBrine());
}
else {
const std::string msg = fmt::format(
"Unknown variable meaning '{}': Expected pressure, water, gas, or brine", variable);
throw std::runtime_error(msg);
}
}
template <class TypeTag>
typename PyFluidState<TypeTag>::VariableType
PyFluidState<TypeTag>::
getVariableType_(const std::string &name) const
{
static std::map<std::string, VariableType> variable_type_map =
{
{"Sw", VariableType::Sw},
{"Sg", VariableType::Sg},
{"So", VariableType::So},
{"pw", VariableType::pw},
{"pg", VariableType::pg},
{"po", VariableType::po},
{"Rs", VariableType::Rs},
{"Rv", VariableType::Rv},
{"rho_w", VariableType::rho_w},
{"rho_g", VariableType::rho_g},
{"rho_o", VariableType::rho_o},
{"T", VariableType::T}
};
if (variable_type_map.count(name) == 0) {
variableNotFoundError_(name);
}
return variable_type_map.at(name);
}
template <class TypeTag>
template <class FluidState>
double
PyFluidState<TypeTag>::
getVariableValue_(FluidState &fs, VariableType var_type, const std::string &name) const
{
double value;
switch(var_type) {
case VariableType::pw :
value = Opm::getValue(
fs.pressure(FluidSystem::waterPhaseIdx));
break;
case VariableType::pg :
value = Opm::getValue(
fs.pressure(FluidSystem::gasPhaseIdx));
break;
case VariableType::po :
value = Opm::getValue(
fs.pressure(FluidSystem::oilPhaseIdx));
break;
case VariableType::rho_w :
value = Opm::getValue(
fs.density(FluidSystem::waterPhaseIdx));
break;
case VariableType::rho_g :
value = Opm::getValue(
fs.density(FluidSystem::gasPhaseIdx));
break;
case VariableType::rho_o :
value = Opm::getValue(
fs.density(FluidSystem::oilPhaseIdx));
break;
case VariableType::Rs :
value = Opm::getValue(fs.Rs());
break;
case VariableType::Rv :
value = Opm::getValue(fs.Rv());
break;
case VariableType::Sw :
value = Opm::getValue(
fs.saturation(FluidSystem::waterPhaseIdx));
break;
case VariableType::Sg :
value = Opm::getValue(
fs.saturation(FluidSystem::gasPhaseIdx));
break;
case VariableType::So :
value = Opm::getValue(
fs.saturation(FluidSystem::oilPhaseIdx));
break;
case VariableType::T :
value = Opm::getValue(
fs.temperature(FluidSystem::waterPhaseIdx));
break;
default:
variableNotFoundError_(name);
}
return value;
}
template <class TypeTag>
void
PyFluidState<TypeTag>::
variableNotFoundError_(const std::string &name) const
{
const std::string msg = fmt::format("Access to variable '{}' is not implemented yet!", name);
throw std::runtime_error(msg);
}
} // namespace Opm::Pybind

View File

@@ -3,6 +3,7 @@
#include <pybind11/pybind11.h>
#include <pybind11/numpy.h>
#include <pybind11/stl.h>
//#include <pybind11/embed.h>
namespace py = pybind11;