setup.py moved to python/python. moved python tests to python/python. added __init__.py under python/tests. added 'test_' before all python test names. test_ prefix added to tests. setup.py and python tests moved back to python base. setuptools executes from root python. python: tests run from root python w/ setup.py. python tests: temp reduced to test_deck only. python setup.py: manually linked opmcommon. setup.py: linked ecl. setup.py linked boost_filesystem. setup.py: linked boost_regex. python all tests run. removec usr/local from setup.py ext_module. cmake make copies entire python dir to build. setup.py can execute from build. setup.py executes from build/python. python tests run under setup.py. setup.py library_dirs and include-dirs set by cmake command. removed cmake files from sunbeam. sunbeam: added code for install. setup.py: removed 'import ecl'. python/src -> python->src_sunbeam. setup.py: discontinued use of glob, all files listed instead. build-opm_module.sh: added prefix_path to opm. build-opm-module.sh: changed spell error for EXTRA_MODULE_FLAGS[opm-common]. setup.py: infer include directories from cmake target CMakeLists.txt: under python: align install statement. CMakeLists build python: removed find_package. src_sunbeam -> cxx. setup.py: test_suite as string. setup.py: tests_suite -> test_suite. setup.py: added exception if 'build_ext' not used. temporarily moved files to python/sunbeam.
37 lines
1.5 KiB
C++
37 lines
1.5 KiB
C++
#include <opm/parser/eclipse/EclipseState/Schedule/Well/Connection.hpp>
|
|
|
|
#include "sunbeam.hpp"
|
|
|
|
namespace {
|
|
|
|
std::string state( const Connection& c ) {
|
|
return WellCompletion::StateEnum2String( c.state() );
|
|
}
|
|
|
|
std::string direction( const Connection& c ) {
|
|
return WellCompletion::DirectionEnum2String( c.dir() );
|
|
}
|
|
|
|
}
|
|
|
|
|
|
void sunbeam::export_Connection(py::module& module) {
|
|
|
|
py::class_< Connection >( module, "Connection")
|
|
.def_property_readonly("direction", &direction )
|
|
.def_property_readonly("state", &state )
|
|
.def_property_readonly( "I", &Connection::getI )
|
|
.def_property_readonly( "J", &Connection::getJ )
|
|
.def_property_readonly( "K", &Connection::getK )
|
|
.def_property_readonly( "attached_to_segment", &Connection::attachedToSegment )
|
|
.def_property_readonly( "center_depth", &Connection::depth)
|
|
.def_property_readonly( "rw", &Connection::rw)
|
|
.def_property_readonly( "complnum", &Connection::complnum)
|
|
.def_property_readonly( "number", &Connection::complnum) // This is deprecated; complnum is the "correct" proeprty name
|
|
.def_property_readonly( "sat_table_id", &Connection::satTableId)
|
|
.def_property_readonly( "segment_number", &Connection::segment)
|
|
.def_property_readonly( "CF", &Connection::CF)
|
|
.def_property_readonly( "Kh", &Connection::Kh)
|
|
.def_property_readonly( "well_pi", &Connection::wellPi );
|
|
}
|