mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-07 15:03:01 -06:00
55aab60549
Added methods to Python module opm.simulators.BlackOilSimulator to access primary variables and fluid state variables.
17 lines
397 B
C++
17 lines
397 B
C++
#ifndef OPM_PYBIND11_EXPORTER_HEADER_INCLUDED
|
|
#define OPM_PYBIND11_EXPORTER_HEADER_INCLUDED
|
|
|
|
#include <pybind11/pybind11.h>
|
|
#include <pybind11/numpy.h>
|
|
#include <pybind11/stl.h>
|
|
//#include <pybind11/embed.h>
|
|
|
|
namespace py = pybind11;
|
|
|
|
namespace Opm::Pybind {
|
|
void export_all(py::module& m);
|
|
void export_PyBlackOilSimulator(py::module& m);
|
|
}
|
|
|
|
#endif //OPM_PYBIND11_EXPORTER_HEADER_INCLUDED
|