File: _common.py

package info (click to toggle)
opm-common 2022.10%2Bds-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 78,468 kB
  • sloc: cpp: 164,554; python: 2,872; sh: 216; xml: 174; ansic: 149; pascal: 136; makefile: 12
file content (34 lines) | stat: -rw-r--r-- 1,377 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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
from __future__ import absolute_import
from .libopmcommon_python import action

from .libopmcommon_python import Parser, ParseContext, Builtin, eclSectionType
from .libopmcommon_python import DeckKeyword
from .libopmcommon_python import DeckItem
from .libopmcommon_python import UDAValue
from .libopmcommon_python import Dimension
from .libopmcommon_python import UnitSystem

from .libopmcommon_python import EclipseState
from .libopmcommon_python import FieldProperties
from .libopmcommon_python import Schedule
from .libopmcommon_python import OpmLog
from .libopmcommon_python import SummaryConfig
from .libopmcommon_python import EclFile, eclArrType
from .libopmcommon_python import ERst
from .libopmcommon_python import ESmry
from .libopmcommon_python import EGrid
from .libopmcommon_python import ERft
from .libopmcommon_python import EclOutput
from .libopmcommon_python import EModel
from .libopmcommon_python import calc_cell_vol
from .libopmcommon_python import SummaryState