示例#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()
示例#2
0
文件: ecl_file.py 项目: rolk/ert
 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()
示例#3
0
 def start_time(self):
     """
     A Python datetime instance with the start time.
     
     See start_date() for further details.
     """
     ctime = cfunc.get_start_date( self ) 
     return ctime.datetime()
示例#4
0
文件: ecl_sum.py 项目: rolk/ert
 def start_time(self):
     """
     A Python datetime instance with the start time.
     
     See start_date() for further details.
     """
     ctime = cfunc.get_start_date(self)
     return ctime.datetime()
示例#5
0
 def end_time(self):
     """
     The time of the last (loaded) time step.
     """
     ctime = cfunc.get_end_date( self )
     return ctime.datetime()
示例#6
0
文件: ecl_sum.py 项目: rolk/ert
 def end_time(self):
     """
     The time of the last (loaded) time step.
     """
     ctime = cfunc.get_end_date(self)
     return ctime.datetime()