mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
18 lines
392 B
Python
18 lines
392 B
Python
"""
|
|
ResInsight Well
|
|
"""
|
|
import rips.generated.Commands_pb2 as Cmd
|
|
|
|
from rips.pdmobject import PdmObject
|
|
|
|
class Well(PdmObject):
|
|
"""ResInsight well class
|
|
|
|
Attributes:
|
|
name(string): Name of the well.
|
|
|
|
"""
|
|
def __init__(self, name, pdm_object):
|
|
PdmObject.__init__(self, pdm_object.pb2_object(), pdm_object.channel(), pdm_object.project())
|
|
self.name = name
|