40 lines
1.6 KiB
C++
40 lines
1.6 KiB
C++
#include <vector>
|
|
#include <opm/parser/eclipse/EclipseState/EclipseConfig.hpp>
|
|
#include <opm/parser/eclipse/EclipseState/InitConfig/InitConfig.hpp>
|
|
#include <opm/parser/eclipse/EclipseState/SummaryConfig/SummaryConfig.hpp>
|
|
#include <opm/parser/eclipse/EclipseState/SimulationConfig/SimulationConfig.hpp>
|
|
#include <opm/parser/eclipse/EclipseState/Tables/TableManager.hpp>
|
|
#include <opm/parser/eclipse/EclipseState/EclipseState.hpp>
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Schedule.hpp>
|
|
|
|
|
|
#include "export.hpp"
|
|
|
|
|
|
void python::common::export_EclipseConfig(py::module& module)
|
|
{
|
|
py::class_< EclipseConfig >( module, "EclipseConfig" )
|
|
.def( "init", &EclipseConfig::init, ref_internal);
|
|
|
|
py::class_< SummaryConfig >( module, "SummaryConfig")
|
|
.def(py::init([](const Deck& deck, const EclipseState& state, const Schedule& schedule) {
|
|
return SummaryConfig( deck, schedule, state.getTableManager() );
|
|
} ) )
|
|
|
|
.def( "__contains__", &SummaryConfig::hasKeyword );
|
|
|
|
py::class_< InitConfig >( module, "InitConfig")
|
|
.def( "hasEquil", &InitConfig::hasEquil )
|
|
.def( "restartRequested", &InitConfig::restartRequested )
|
|
.def( "getRestartStep" , &InitConfig::getRestartStep );
|
|
|
|
py::class_< IOConfig >( module, "IOConfig");
|
|
|
|
py::class_< SimulationConfig >( module, "SimulationConfig")
|
|
.def("hasThresholdPressure", &SimulationConfig::useThresholdPressure )
|
|
.def("useCPR", &SimulationConfig::useCPR )
|
|
.def("hasDISGAS", &SimulationConfig::hasDISGAS )
|
|
.def("hasVAPOIL", &SimulationConfig::hasVAPOIL );
|
|
}
|
|
|