Beispiel #1
0
 def iget_restart_sim_time( self , index ):
     """
     Will locate restart block nr @index and return the true time
     as a datetime instance.
     """
     ctime = cfunc.iget_restart_time( self , index ) 
     return ctime.datetime()
Beispiel #2
0
 def start_time(self):
     """
     A Python datetime instance with the start time.
     
     See start_date() for further details.
     """
     ctime = EclSum.cNamespace().get_start_date( self )
     return ctime.datetime()
Beispiel #3
0
 def end_time(self):
     """
     The time of the last (loaded) time step.
     """
     ctime = EclSum.cNamespace().get_end_date( self )
     return ctime.datetime()