2019-06-03 14:33:16 +02:00
|
|
|
name = "rips"
|
2019-09-23 11:50:33 +02:00
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
import sys
|
2021-01-26 20:48:01 +01:00
|
|
|
|
|
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "generated"))
|
2019-09-23 11:50:33 +02:00
|
|
|
|
2021-01-21 10:45:37 +01:00
|
|
|
from .resinsight_classes import *
|
2020-03-04 15:11:24 +01:00
|
|
|
|
2020-08-19 07:30:51 +02:00
|
|
|
from .case import Case, EclipseCase, GeoMechCase
|
|
|
|
|
from .grid import Grid
|
|
|
|
|
from .instance import Instance
|
|
|
|
|
from .view import View
|
|
|
|
|
from .project import Project
|
|
|
|
|
from .plot import Plot, PlotWindow
|
|
|
|
|
from .contour_map import EclipseContourMap, GeoMechContourMap
|
|
|
|
|
from .well_log_plot import WellLogPlot
|
|
|
|
|
from .simulation_well import SimulationWell
|
2021-01-21 18:48:59 +01:00
|
|
|
|
2023-07-12 11:42:17 +02:00
|
|
|
from typing import List
|
|
|
|
|
|
|
|
|
|
__all__: List[str] = []
|
2021-01-21 18:48:59 +01:00
|
|
|
for key in class_dict():
|
|
|
|
|
__all__.append(key)
|
|
|
|
|
|
|
|
|
|
# Add classes not in resinsight_classes
|
|
|
|
|
__all__.append("Grid")
|
|
|
|
|
__all__.append("Instance")
|
|
|
|
|
|
2021-01-26 20:48:01 +01:00
|
|
|
__all__.sort()
|