FE-Project
Loading...
Searching...
No Matches
Data Types | Functions/Subroutines | Variables
scale_time_manager Module Reference

module common / time More...

Data Types

type  time_manager_component
 

Functions/Subroutines

subroutine, public time_manager_init (setup_timeintegration, restart_in_basename)
 
subroutine, public time_manager_final ()
 
subroutine, public time_manager_advance ()
 
subroutine, public time_manager_checkstate ()
 
subroutine, public time_manager_report_timeintervals ()
 
subroutine, public time_manager_regist_component (tmanager_comp)
 

Variables

integer, dimension(6), public time_startdate = (/ -999, 1, 1, 0, 0, 0 /)
 
real(dp), public time_startms = 0.0_DP
 [millisec]
 
real(dp), public time_startsubsec
 
integer, public time_startday
 
real(dp), public time_startsec
 
integer, dimension(6), public time_enddate
 
real(dp), public time_endsubsec
 
integer, public time_endday
 
real(dp), public time_endsec
 
real(dp), public time_durationsec
 
logical, public time_doresume
 
logical, public time_doend
 
real(dp), public time_dtsec_resume
 
integer, public time_dstep_resume
 

Detailed Description

module common / time

Description
Module to manage time with temporal integration
Author
Yuta Kawai, Team SCALE
NAMELIST
  • PARAM_TIME
    nametypedefault valuecomment
    TIME_STARTDATE integer, dimension(6) (/ -999, 1, 1, 0, 0, 0 /)
    TIME_STARTMS real(DP) 0.0_DP [millisec]
    TIME_DURATION real(DP) UNDEF8
    TIME_DURATION_UNIT character(len=H_SHORT) "SEC"
    TIME_DT real(DP) UNDEF8
    TIME_DT_UNIT character(len=H_SHORT) "SEC"
    TIME_DT_RESUME real(DP) UNDEF8
    TIME_DT_RESUME_UNIT character(len=H_SHORT) ""
    TIME_DT_WALLCLOCK_CHECK real(DP) UNDEF8
    TIME_DT_WALLCLOCK_CHECK_UNIT character(len=H_SHORT) ""
    TIME_WALLCLOCK_LIMIT real(DP) -1.0_DP Elapse time limit of wall clock time [sec]
    TIME_WALLCLOCK_SAFE real(DP) 0.9_DP Safety coefficient for elapse time limit

History Output
No history output

Function/Subroutine Documentation

◆ time_manager_init()

subroutine, public scale_time_manager::time_manager_init ( logical, intent(in), optional setup_timeintegration,
character(len=*), intent(in), optional restart_in_basename )

Definition at line 162 of file scale_time_manager.F90.

165
166 use scale_file, only: &
167 file_get_attribute
168
169 implicit none
170
171 logical, intent(in), optional :: setup_TimeIntegration
172 character(len=*), intent(in), optional :: restart_in_basename
173
174 real(DP) :: TIME_DURATION = undef8
175 character(len=H_SHORT) :: TIME_DURATION_UNIT = "SEC"
176 real(DP) :: TIME_DT = undef8
177 character(len=H_SHORT) :: TIME_DT_UNIT = "SEC"
178
179 real(DP) :: TIME_DT_RESUME = undef8
180 character(len=H_SHORT) :: TIME_DT_RESUME_UNIT = ""
181
182 real(DP) :: TIME_DT_WALLCLOCK_CHECK = undef8
183 character(len=H_SHORT) :: TIME_DT_WALLCLOCK_CHECK_UNIT = ""
184
185 namelist /param_time/ &
186 time_startdate, &
187 time_startms, &
188 time_duration, &
189 time_duration_unit, &
190 time_dt, &
191 time_dt_unit, &
192 time_dt_resume, &
193 time_dt_resume_unit, &
194 time_dt_wallclock_check, &
195 time_dt_wallclock_check_unit, &
196 time_wallclock_limit, &
197 time_wallclock_safe
198
199 integer :: dateday
200 real(DP) :: datesec
201 real(DP) :: cftime(1)
202 character(len=H_MID) :: cfunits
203
204 character(len=27) :: startchardate
205 character(len=27) :: endchardate
206
207 integer :: ierr
208 integer :: n
209 !---------------------------------------------------------------------------
210
211 log_newline
212 log_info("TIME_manager_setup",*) 'Setup'
213
214 !--- read namelist
215 rewind(io_fid_conf)
216 read(io_fid_conf,nml=param_time,iostat=ierr)
217 if( ierr < 0 ) then !--- missing
218 log_info("TIME_manager_setup",*) 'Not found namelist. Default used.'
219 elseif( ierr > 0 ) then !--- fatal error
220 log_error("TIME_manager_setup",*) 'Not appropriate names in namelist PARAM_TIME. Check!'
221 call prc_abort
222 endif
223 log_nml(param_time)
224
225 if ( present(setup_timeintegration) ) then
226 setup_tinteg_flag = setup_timeintegration
227 else
228 setup_tinteg_flag = .true.
229 end if
230
231 if ( setup_tinteg_flag ) then
232 if ( time_dt == undef8 ) then
233 log_error("TIME_manager_setup",*) 'Not found TIME_DT. STOP.'
234 call prc_abort
235 endif
236 if ( time_duration == undef8 ) then
237 log_error("TIME_manager_setup",*) 'Not found TIME_DURATION. STOP.'
238 call prc_abort
239 endif
240
241 if ( time_dt_resume == undef8 ) then
242 time_dt_resume = time_duration
243 endif
244 if ( time_dt_resume_unit == '' ) then
245 log_info_cont(*) 'Not found TIME_DT_RESUME_UNIT. TIME_DURATION_UNIT is used.'
246 time_dt_resume_unit = time_duration_unit
247 endif
248 end if
249
250 !--- calculate time
251 if ( time_startdate(1) == -999 ) then
252 if ( present(restart_in_basename) ) then
253 if ( restart_in_basename /= '' ) then ! read start time from the restart data
254 call file_get_attribute( restart_in_basename, & ! [IN]
255 "global", & ! [IN]
256 'time_start', & ! [IN]
257 cftime(:), & ! [OUT]
258 rankid = prc_myrank, & ! [IN]
259 single = .false. ) ! [IN]
260
261 call file_get_attribute( restart_in_basename, & ! [IN]
262 "global", & ! [IN]
263 'time_units', & ! [IN]
264 cfunits, & ! [OUT]
265 rankid = prc_myrank, & ! [IN]
266 single = .false. ) ! [IN]
267
268 dateday = 0
269 datesec = calendar_cfunits2sec( cftime(1), cfunits, 0 )
270
271 call calendar_adjust_daysec( dateday, datesec )
272
273 call calendar_daysec2date( time_startdate, & ! [OUT]
274 time_startsubsec, & ! [OUT]
275 dateday, & ! [IN]
276 datesec, & ! [IN]
277 0 ) ! [IN]
278 end if
279 else
280 time_startdate = (/ 0, 1, 1, 0, 0, 0 /)
281 time_startsubsec = 0.0_dp
282 endif
283 else
284 time_startsubsec = time_startms * 1.e-3_dp
285 endif
286
287 time_offset_year = time_startdate(1)
288
289 call calendar_date2daysec( time_startday, time_startsec, & ! [OUT]
290 time_startdate(:), time_startms, time_offset_year ) ! [IN]
291
292 call calendar_date2char( startchardate, & ! [OUT]
293 time_startdate(:), time_startsubsec ) ! [IN]
294
295 time_startdaysec = calendar_combine_daysec( time_startday, time_startsec )
296
297 time_nowdate(:) = time_startdate(:)
298 time_nowsubsec = time_startms
299 time_nowday = time_startday
300 time_nowsec = time_startsec
301 time_nowdaysec = calendar_combine_daysec( time_nowday, time_nowsec )
302
303 time_endday = time_startday
304 if (setup_tinteg_flag) then
305 call calendar_unit2sec( time_durationsec, time_duration, time_duration_unit )
306 time_endsec = time_startsec + time_durationsec
307 else
308 time_endsec = time_startsec
309 end if
310
311 call calendar_adjust_daysec( time_endday, time_endsec ) ! [INOUT]
312
313 call calendar_daysec2date( time_enddate(:), & ! [OUT]
314 time_endsubsec, & ! [OUT]
315 time_endday, & ! [IN]
316 time_endsec, & ! [IN]
317 time_offset_year ) ! [IN]
318
319 call calendar_date2char( endchardate, & ! [OUT]
320 time_enddate(:), & ! [IN]
321 time_endsubsec ) ! [IN]
322
323 log_newline
324 log_info("TIME_manager_setup",*) 'Global date / time setting '
325 log_info_cont('(1x,A,A)') 'START Date : ', startchardate
326 log_info_cont('(1x,A,A)') 'END Date : ', endchardate
327
328 if (setup_tinteg_flag) then
329 call calendar_unit2sec( time_dtsec, time_dt, time_dt_unit )
330 time_nstep = int( time_durationsec / time_dtsec )
331 time_nowstep = 1
332
333 call calendar_unit2sec( time_dtsec_resume, time_dt_resume, time_dt_resume_unit )
334 time_dstep_resume = nint( time_dtsec_resume / time_dtsec )
335 time_res_resume = time_dstep_resume - 1
336 else
337 time_dtsec = 1.0_rp
338 end if
339
340 !--
341 time_manager_component_num = 0
342 do n=1, time_manager_component_max_num
343 nullify( time_manager_comp_ptr_list(n)%ptr )
344 end do
345
346 !--
347 time_wallclock_start = prc_mpitime()
348
349 if ( time_wallclock_limit > 0.0_dp ) then
350 log_newline
351 log_info("TIME_manager_setup",*) 'Wall clock time limit of execution is specified.'
352
353 if ( time_dt_wallclock_check == undef8 ) then
354 log_info_cont(*) 'Not found TIME_DT_WALLCLOCK_CHECK. TIME_DT is used.'
355 time_dtsec_wallclock_check = time_dtsec
356 else
357 if ( time_dt_wallclock_check_unit == '' ) then
358 log_info_cont(*) 'Not found TIME_DT_WALLCLOCK_CHECK_UNIT. TIME_DURATION_UNIT is used.'
359 time_dt_wallclock_check_unit = time_duration_unit
360 endif
361 call calendar_unit2sec( time_dtsec_wallclock_check, time_dt_wallclock_check, time_dt_wallclock_check_unit )
362 time_dtsec_wallclock_check = max( time_dtsec_wallclock_check, time_dtsec )
363 endif
364
365 time_dstep_wallclock_check = int( time_dtsec_wallclock_check / time_dtsec )
366
367 time_wallclock_safe = max( min( time_wallclock_safe, 1.0_dp ), 0.0_dp )
368 time_wallclock_safelim = time_wallclock_limit * time_wallclock_safe
369
370 log_info_cont('(1x,A,F10.1,A)') 'This job stops after ', time_wallclock_safelim, ' seconds.'
371 log_info_cont('(1x,A,F10.3,A,I8,A)') 'Time interval for check : ', time_dtsec_wallclock_check, &
372 ' (step interval=', time_dstep_wallclock_check, ')'
373 end if
374
375 return

References time_dstep_resume, time_dtsec_resume, time_durationsec, time_enddate, time_endday, time_endsec, time_endsubsec, time_startdate, time_startday, time_startms, time_startsec, and time_startsubsec.

Referenced by mod_dg_driver::dg_driver(), and mod_dg_prep::dg_prep().

◆ time_manager_final()

subroutine, public scale_time_manager::time_manager_final

Definition at line 378 of file scale_time_manager.F90.

379 implicit none
380
381 integer :: n
382 !---------------------------------------------------------------------------
383
384 do n=1, time_manager_component_num
385 nullify( time_manager_comp_ptr_list(n)%ptr )
386 end do
387 time_manager_component_num = 0
388
389 return

Referenced by mod_dg_driver::dg_driver(), and mod_dg_prep::dg_prep().

◆ time_manager_advance()

subroutine, public scale_time_manager::time_manager_advance

Definition at line 392 of file scale_time_manager.F90.

393 implicit none
394 !---------------------------------------------------------------------------
395
396 time_nowstep = time_nowstep + 1
397 time_nowday = time_startday
398 time_nowsec = time_startsec + real(time_nowstep-1,kind=dp) * time_dtsec
399
400 ! reallocate day & sub-day
401 call calendar_adjust_daysec( time_nowday, time_nowsec ) ! [INOUT]
402
403 call calendar_daysec2date( time_nowdate(:), time_nowsubsec, & ! [OUT]
404 time_nowday, time_nowsec, time_offset_year ) ! [IN]
405
406 time_nowdaysec = calendar_combine_daysec( time_nowday, time_nowsec )
407
408 if (time_nowstep > time_nstep) then
409 time_doend = .true.
410 end if
411
412 return

References time_doend, time_startday, and time_startsec.

Referenced by mod_dg_driver::dg_driver(), and mod_dg_prep::dg_prep().

◆ time_manager_checkstate()

subroutine, public scale_time_manager::time_manager_checkstate

Definition at line 415 of file scale_time_manager.F90.

416 use scale_calendar, only: calendar_date2char
417 implicit none
418
419 integer :: n
420 type(TIME_manager_component), pointer :: tm_comp
421
422 real(DP) :: WALLCLOCK_elapse
423 character(len=27) :: nowchardate
424 logical :: TO_STDOUT
425 !---------------------------------------------------------------------------
426
427 do n=1, time_manager_component_num
428 tm_comp => time_manager_comp_ptr_list(n)%ptr
429 call tm_comp%Check_state()
430 end do
431
432 time_doresume = .false.
433 time_res_resume = time_res_resume + 1
434
435 if (time_res_resume == time_dstep_resume) then
436 time_doresume = .true.
437 time_res_resume = 0
438 end if
439
440 !----
441
442 to_stdout = .false.
443 if ( io_step_to_stdout > 0 ) then
444 if( mod(time_nowstep-1,io_step_to_stdout) == 0 ) to_stdout = .true.
445 endif
446
447 call calendar_date2char( nowchardate, & ! [OUT]
448 time_nowdate(:), & ! [IN]
449 time_nowsubsec ) ! [IN]
450
451 wallclock_elapse = prc_mpitime() - time_wallclock_start
452
453 log_newline
454 if ( time_wallclock_limit > 0.0_dp ) then
455 log_progress('(1x,2A,2(A,I7),2(A,F10.1))') 'TIME: ', nowchardate,' STEP:',time_nowstep, '/', time_nstep, &
456 ' WCLOCK:', wallclock_elapse, '/', time_wallclock_safelim
457 if ( prc_universal_ismaster .AND. to_stdout ) then ! universal master node
458 write(*,'(1x,2A,2(A,I7),2(A,F10.1))') 'TIME: ', nowchardate,' STEP:',time_nowstep, '/', time_nstep, &
459 ' WCLOCK:', wallclock_elapse, '/', time_wallclock_safelim
460 endif
461 else
462 log_progress('(1x,2A,2(A,I7),A,F10.1)') 'TIME: ', nowchardate,' STEP:',time_nowstep, '/', time_nstep, &
463 ' WCLOCK:', wallclock_elapse
464 if ( prc_universal_ismaster .AND. to_stdout ) then ! universal master node
465 write(*,'(1x,2A,2(A,I7),A,F10.1)') 'TIME: ', nowchardate,' STEP:',time_nowstep, '/', time_nstep, &
466 ' WCLOCK:', wallclock_elapse
467 endif
468 endif
469
470 return

References time_doresume, and time_dstep_resume.

Referenced by mod_dg_driver::dg_driver(), and mod_dg_prep::dg_prep().

◆ time_manager_report_timeintervals()

subroutine, public scale_time_manager::time_manager_report_timeintervals

Definition at line 473 of file scale_time_manager.F90.

474 implicit none
475
476 integer :: n, p
477 type(TIME_manager_component), pointer :: tm_comp
478 type(TIME_manager_process), pointer :: tm_process
479 !-------------------------------------------------------------------
480
481 log_newline
482 log_info("TIME_manager_report_timeintervals",*) 'Time interval for each component (sec.)'
483
484 do n=1, time_manager_component_num
485 tm_comp => time_manager_comp_ptr_list(n)%ptr
486 log_info_cont(*) trim(tm_comp%comp_name)
487 do p=1, tm_comp%process_num
488 tm_process => tm_comp%process_list(p)
489 log_info_cont('(1x,A,F10.3)') trim(tm_process%process_name)//' (time) : ', tm_process%dtsec
490 if (tm_process%inner_itr_num > 1) then
491 log_info_cont('(1x,A,I10)') ' (step) : ', tm_process%inner_itr_num
492 end if
493 log_info_cont('(1x,A,I8,A)') ' (step interval=', tm_process%dstep, ')'
494 end do
495 end do
496
497 log_newline
498 log_info_cont(*) 'Time interval for restart (sec.)'
499
500 do n=1, time_manager_component_num
501 tm_comp => time_manager_comp_ptr_list(n)%ptr
502 log_info_cont('(1x,A,F10.3,A,I8,A)') trim(tm_comp%comp_name)//' variables : ', tm_comp%dtsec_restart, &
503 ' (step interval=', tm_comp%dstep_restart, ')'
504 end do
505 log_info_cont('(1x,A,F10.3,A,I8,A)') 'Resume : ', time_dtsec_resume, &
506 ' (step interval=', time_dstep_resume, ')'
507
508 return

References time_dstep_resume, and time_dtsec_resume.

Referenced by mod_dg_driver::dg_driver().

◆ time_manager_regist_component()

subroutine, public scale_time_manager::time_manager_regist_component ( type(time_manager_component), intent(in), target tmanager_comp)

Definition at line 511 of file scale_time_manager.F90.

512 implicit none
513
514 type(TIME_manager_component), intent(in), target :: tmanager_comp
515 !------------------------------------------------------------------------
516
517 time_manager_component_num = time_manager_component_num + 1
518 if (time_manager_component_num > time_manager_component_max_num) then
519 log_error("TIME_manager_regist_component",*) 'The number of TIME_manager_component registered exceeds ', &
520 time_manager_component_num, time_manager_component_max_num
521 call prc_abort
522 end if
523
524 time_manager_comp_ptr_list(time_manager_component_num)%ptr => tmanager_comp
525 return

References time_durationsec.

Referenced by mod_atmos_component::atmos_setup().

Variable Documentation

◆ time_startdate

integer, dimension(6), public scale_time_manager::time_startdate = (/ -999, 1, 1, 0, 0, 0 /)

Definition at line 103 of file scale_time_manager.F90.

103 integer, public :: TIME_STARTDATE(6) = (/ -999, 1, 1, 0, 0, 0 /)

Referenced by time_manager_init().

◆ time_startms

real(dp), public scale_time_manager::time_startms = 0.0_DP

[millisec]

Definition at line 104 of file scale_time_manager.F90.

104 real(DP), public :: TIME_STARTMS = 0.0_dp

Referenced by time_manager_init().

◆ time_startsubsec

real(dp), public scale_time_manager::time_startsubsec

Definition at line 105 of file scale_time_manager.F90.

105 real(DP), public :: TIME_STARTSUBSEC

Referenced by time_manager_init().

◆ time_startday

integer, public scale_time_manager::time_startday

Definition at line 106 of file scale_time_manager.F90.

106 integer, public :: TIME_STARTDAY

Referenced by time_manager_advance(), and time_manager_init().

◆ time_startsec

real(dp), public scale_time_manager::time_startsec

Definition at line 107 of file scale_time_manager.F90.

107 real(DP), public :: TIME_STARTSEC

Referenced by time_manager_advance(), and time_manager_init().

◆ time_enddate

integer, dimension(6), public scale_time_manager::time_enddate

Definition at line 109 of file scale_time_manager.F90.

109 integer, public :: TIME_ENDDATE(6)

Referenced by time_manager_init().

◆ time_endsubsec

real(dp), public scale_time_manager::time_endsubsec

Definition at line 110 of file scale_time_manager.F90.

110 real(DP), public :: TIME_ENDSUBSEC

Referenced by time_manager_init().

◆ time_endday

integer, public scale_time_manager::time_endday

Definition at line 111 of file scale_time_manager.F90.

111 integer, public :: TIME_ENDDAY

Referenced by time_manager_init().

◆ time_endsec

real(dp), public scale_time_manager::time_endsec

Definition at line 112 of file scale_time_manager.F90.

112 real(DP), public :: TIME_ENDSEC

Referenced by time_manager_init().

◆ time_durationsec

real(dp), public scale_time_manager::time_durationsec

Definition at line 114 of file scale_time_manager.F90.

114 real(DP), public :: TIME_DURATIONSEC

Referenced by time_manager_init(), and time_manager_regist_component().

◆ time_doresume

logical, public scale_time_manager::time_doresume

Definition at line 116 of file scale_time_manager.F90.

116 logical, public :: TIME_DOresume

Referenced by mod_dg_driver::dg_driver(), mod_dg_prep::dg_prep(), and time_manager_checkstate().

◆ time_doend

logical, public scale_time_manager::time_doend

Definition at line 117 of file scale_time_manager.F90.

117 logical, public :: TIME_DOend

Referenced by mod_dg_driver::dg_driver(), mod_dg_prep::dg_prep(), and time_manager_advance().

◆ time_dtsec_resume

real(dp), public scale_time_manager::time_dtsec_resume

Definition at line 119 of file scale_time_manager.F90.

119 real(DP), public :: TIME_DTSEC_RESUME

Referenced by time_manager_init(), and time_manager_report_timeintervals().

◆ time_dstep_resume

integer, public scale_time_manager::time_dstep_resume

Definition at line 120 of file scale_time_manager.F90.

120 integer, public :: TIME_DSTEP_RESUME

Referenced by time_manager_checkstate(), time_manager_init(), and time_manager_report_timeintervals().