Added e3Dprops w regs, state.nnc and fixed comment

This commit is contained in:
Pål Grønås Drange
2017-01-10 17:17:50 +01:00
parent 2eab759227
commit f70793129d
3 changed files with 54 additions and 1 deletions

View File

@@ -61,6 +61,12 @@ class Schedule(object):
def not_field(x): return x.name != 'FIELD'
return map(mk, filter(not_field, self._groups))
@delegate(lib.Eclipse3DProperties)
class Eclipse3DProperties(object):
def __repr__(self):
return 'Eclipse3DProperties()'
@delegate(lib.EclipseState)
class EclipseState(object):
def __repr__(self):
@@ -70,6 +76,9 @@ class EclipseState(object):
def schedule(self):
return Schedule(self._schedule())
def props(self):
return Eclipse3DProperties(self._props())
@delegate(lib.Well)
class Well(object):