コード例 #1
0
ファイル: ecl_file.py プロジェクト: joelmheim/ResInsight
 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
ファイル: ecl_sum.py プロジェクト: joelmheim/ResInsight
 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
ファイル: ecl_sum.py プロジェクト: joelmheim/ResInsight
 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()