2019-09-04 14:42:52 +02:00
|
|
|
# This is the entry point were all the pybind11/C++ symbols are imported into
|
|
|
|
|
# Python. Before actually being used the symbols are typically imported one
|
|
|
|
|
# more time to a more suitable location; e.g the Parser() class is imported in
|
|
|
|
|
# the opm/io/parser/__init__.py file as:
|
|
|
|
|
#
|
|
|
|
|
# from opm._common import Parser
|
|
|
|
|
#
|
|
|
|
|
# So that end user code can import it as:
|
|
|
|
|
#
|
|
|
|
|
# from opm.io.parser import Parser
|
2019-08-19 15:42:24 +02:00
|
|
|
from __future__ import absolute_import
|
2023-01-06 15:59:34 +01:00
|
|
|
from .opmcommon_python import action
|
2019-09-06 10:45:33 +02:00
|
|
|
|
2023-01-06 15:59:34 +01:00
|
|
|
from .opmcommon_python import Parser, ParseContext, Builtin, eclSectionType
|
|
|
|
|
from .opmcommon_python import DeckKeyword
|
|
|
|
|
from .opmcommon_python import DeckItem
|
|
|
|
|
from .opmcommon_python import UDAValue
|
|
|
|
|
from .opmcommon_python import Dimension
|
|
|
|
|
from .opmcommon_python import UnitSystem
|
2019-09-11 11:46:46 +02:00
|
|
|
|
2023-01-06 15:59:34 +01:00
|
|
|
from .opmcommon_python import EclipseState
|
|
|
|
|
from .opmcommon_python import FieldProperties
|
|
|
|
|
from .opmcommon_python import Schedule
|
|
|
|
|
from .opmcommon_python import OpmLog
|
|
|
|
|
from .opmcommon_python import SummaryConfig
|
|
|
|
|
from .opmcommon_python import EclFile, eclArrType
|
|
|
|
|
from .opmcommon_python import ERst
|
|
|
|
|
from .opmcommon_python import ESmry
|
|
|
|
|
from .opmcommon_python import EGrid
|
|
|
|
|
from .opmcommon_python import ERft
|
|
|
|
|
from .opmcommon_python import EclOutput
|
|
|
|
|
from .opmcommon_python import EModel
|
|
|
|
|
from .opmcommon_python import calc_cell_vol
|
|
|
|
|
from .opmcommon_python import SummaryState
|