FE-Project
Loading...
Searching...
No Matches
scale_time_manager.F90
Go to the documentation of this file.
1!-------------------------------------------------------------------------------
10#include "scaleFElib.h"
12 !-----------------------------------------------------------------------------
13 !
14 !++ used modules
15 !
16 use scale_const, only: &
17 undef8 => const_undef8
18 use scale_precision
19 use scale_prc
20 use scale_io
21
22 use scale_time, only: &
23 time_startdaysec, &
24 time_nowdate, &
25 time_nowday, &
26 time_nowdaysec, &
27 time_nowsec, &
28 time_nowsubsec, &
29 time_nowstep, &
30 time_nstep, &
31 time_dtsec, &
32 time_offset_year, &
33 time_dtsec_wallclock_check, &
34 time_dstep_wallclock_check
35
36
37 use scale_calendar, only: &
38 calendar_date2daysec, &
39 calendar_daysec2date, &
40 calendar_combine_daysec, &
41 calendar_adjust_daysec, &
42 calendar_unit2sec, &
43 calendar_cfunits2sec, &
44 calendar_date2char
45
46 !-----------------------------------------------------------------------------
47 implicit none
48 private
49
50 !-----------------------------------------------------------------------------
51 !
52 !++ Public type & procedure
53 !
54 public :: time_manager_init
55 public :: time_manager_final
58 public :: time_manager_advance
60
61
62 type :: time_manager_process
63 real(DP) :: dtsec
64 integer :: dstep
65 integer :: res_step
66 logical :: do_step
67 integer :: inner_itr_num
68 character(len=H_SHORT) :: process_name
69 contains
70 procedure, public :: Init => time_manager_process_init
71 procedure, public :: Check_state => time_manager_process_checkstate
72 procedure, public :: Final => time_manager_process_final
73 end type time_manager_process
74
75 integer, private, parameter :: TIME_MANAGER_PROCESS_MAX_NUM = 10
76 type, public :: time_manager_component
77 real(dp) :: dtsec
78 integer :: dstep
79 integer :: res_step
80 logical :: do_step
81 !-
82 real(dp) :: dtsec_restart
83 integer :: dstep_restart
84 integer :: res_step_restart
85 logical :: do_restart
86 character(len=H_SHORT) :: comp_name
87 !--
88 type(time_manager_process) :: process_list(time_manager_process_max_num)
89 integer :: process_num
90 contains
91 procedure, public :: init => time_manager_component_init
92 procedure, public :: regist_process => time_manager_component_regist_process
93 procedure, public :: check_state => time_manager_component_checkstate
94 procedure, public :: do_process => time_manager_component_do_process
95 procedure, public :: get_process_inner_itr_num => time_manager_component_get_process_inner_itr_num
96 procedure, public :: final => time_manager_component_final
98
99 !-----------------------------------------------------------------------------
100 !
101 !++ Public parameters & variables
102 !
103 integer, public :: time_startdate(6) = (/ -999, 1, 1, 0, 0, 0 /)
104 real(dp), public :: time_startms = 0.0_dp
105 real(dp), public :: time_startsubsec
106 integer, public :: time_startday
107 real(dp), public :: time_startsec
108
109 integer, public :: time_enddate(6)
110 real(dp), public :: time_endsubsec
111 integer, public :: time_endday
112 real(dp), public :: time_endsec
113
114 real(dp), public :: time_durationsec
115
116 logical, public :: time_doresume
117 logical, public :: time_doend
118
119 real(dp), public :: time_dtsec_resume
120 integer, public :: time_dstep_resume
121
122 public :: time_startdaysec
123 public :: time_nowdate, time_nowsubsec, time_nowday, time_nowdaysec, time_nowsec
124 public :: time_nowstep, time_nstep
125 public :: time_dtsec
126 public :: time_offset_year
127
128 !-----------------------------------------------------------------------------
129 !
130 !++ Private type & procedure
131 !
132 !-----------------------------------------------------------------------------
133
134 !-----------------------------------------------------------------------------
135 !
136 !++ Private parameters & variables
137 !
138
139 !-----------------------------------------------------------------------------
140
141 integer, private :: time_res_resume
142
143 real(dp), private :: time_wallclock_start ! Start time of wall clock [sec]
144 real(dp), private :: time_wallclock_limit = -1.0_dp ! Elapse time limit of wall clock time [sec]
145 real(dp), private :: time_wallclock_safe = 0.9_dp ! Safety coefficient for elapse time limit
146 real(dp), private :: time_wallclock_safelim ! TIME_WALLCLOCK_LIMIT * TIME_WALLCLOCK_SAFE
147
148 real(dp), private, parameter :: eps = 1.e-6_dp
149
150
151 integer, private, parameter :: time_manager_component_max_num = 20
152 type time_manager_component_ptr
153 type(time_manager_component), pointer :: ptr
154 end type time_manager_component_ptr
155 type(time_manager_component_ptr), private :: time_manager_comp_ptr_list(time_manager_component_max_num)
156 integer, private :: time_manager_component_num
157
158 logical :: setup_tinteg_flag
159
160contains
161
162 subroutine time_manager_init( &
163 setup_TimeIntegration, &
164 restart_in_basename )
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/ &
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]
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
304 if (setup_tinteg_flag) then
305 call calendar_unit2sec( time_durationsec, time_duration, time_duration_unit )
307 else
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
376 end subroutine time_manager_init
377
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
390 end subroutine time_manager_final
391
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
413 end subroutine time_manager_advance
414
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
471 end subroutine time_manager_checkstate
472
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
510
511 subroutine time_manager_regist_component( tmanager_comp )
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
526 end subroutine time_manager_regist_component
527
528!---
529 subroutine time_manager_component_init( this, comp_name, &
530 dt, dt_unit, dt_restart, dt_restart_unit )
531 implicit none
532
533 class(time_manager_component), intent(inout) :: this
534 character(*), intent(in) :: comp_name
535 real(dp), intent(in) :: dt
536 character(*), intent(in) :: dt_unit
537 real(dp), intent(in) :: dt_restart
538 character(*), intent(in) :: dt_restart_unit
539
540 real(rp) :: start_sec, end_sec
541 real(rp) :: absday, absdaysec, abssec
542 !------------------------------------------------------------------------
543
544 this%process_num = 0
545 this%res_step = 0
546 this%res_step_restart = 0
547 this%comp_name = comp_name
548
549 !--
550 if (.not. setup_tinteg_flag) return
551
552 if (dt == undef8) then
553 log_info_cont(*) 'Not found TIME_DT_'//trim(comp_name)//'. TIME_DTSEC is used.'
554 this%dtsec = time_dtsec
555 else
556 call calendar_unit2sec( this%dtsec, dt, dt_unit )
557 end if
558
559 this%dstep = nint( this%dtsec / time_dtsec )
560
561 if ( abs(this%dtsec - real(this%dstep,kind=dp)*time_dtsec) > eps ) then
562 log_error("TIME_manager_component_Init",*) 'delta t('//trim(comp_name)//') must be a multiple of delta t ', &
563 this%dtsec, real(this%dstep,kind=dp)*time_dtsec
564 call prc_abort
565 end if
566
567 !--
568
569 if (dt_restart == undef8) then
570 log_info_cont(*) 'Not found TIME_DT_'//trim(comp_name)//'_RESTART. TIME_DURATION is used.'
571 this%dtsec_restart = time_durationsec
572 else
573 call calendar_unit2sec( this%dtsec_restart, dt_restart, dt_restart_unit )
574 end if
575
576 this%dstep_restart = nint( this%dtsec_restart / time_dtsec )
577
578 if ( abs(this%dtsec_restart - real(this%dstep_restart,kind=dp)*time_dtsec) > eps ) then
579 log_error("TIME_manager_component_Init",*) 'delta t('//trim(comp_name)//'_RESTART) must be a multiple of delta t ', &
580 this%dtsec_restart, real(this%dstep_restart,kind=dp)*time_dtsec
581 call prc_abort
582 end if
583
584 !--
585
586 return
587 end subroutine time_manager_component_init
588
589 subroutine time_manager_component_checkstate( this )
590 implicit none
591 class(time_manager_component), intent(inout), target :: this
592
593 integer :: n
594 type(time_manager_process), pointer :: tm_process
595 !--------------------------------------------------
596
597 this%do_step = .false.
598
599 if (this%process_num > 0) then
600 do n=1, this%process_num
601 tm_process => this%process_list(n)
602 call tm_process%Check_state()
603 if (tm_process%do_step) this%do_step = .true.
604 end do
605 else
606 this%res_step = this%res_step + 1
607 if ( this%res_step == this%dstep ) then
608 this%do_step = .true.
609 this%res_step = 0
610 end if
611 end if
612
613 !-
614 this%do_restart = .false.
615
616 this%res_step_restart = this%res_step_restart + 1
617 if ( this%res_step_restart == this%dstep_restart ) then
618 this%do_restart = .true.
619 this%res_step_restart = 0
620 end if
621
622 return
623 end subroutine time_manager_component_checkstate
624
625 subroutine time_manager_component_regist_process( this, &
626 process_name, dt, dt_unit, &
627 tm_process_id )
628 implicit none
629
630 class(time_manager_component), intent(inout), target :: this
631 character(*), intent(in) :: process_name
632 real(dp), intent(in) :: dt
633 character(*), intent(in) :: dt_unit
634 integer, intent(out) :: tm_process_id
635
636 type(time_manager_process), pointer :: tm_process
637 !--------------------------------------------------
638
639 this%process_num = this%process_num + 1
640 tm_process_id = this%process_num
641
642 if( this%process_num > time_manager_process_max_num) then
643 log_error("TIME_manager_component_Regist_process",*) 'The number of TIME_manager_process registered exceeds ', &
644 this%process_num, time_manager_process_max_num
645 call prc_abort
646 end if
647
648 tm_process => this%process_list(this%process_num)
649 call tm_process%Init( process_name, dt, dt_unit )
650
651 return
652 end subroutine time_manager_component_regist_process
653
654 subroutine time_manager_component_final( this )
655 implicit none
656 class(time_manager_component), intent(inout) :: this
657
658 integer :: n
659 !--------------------------------------------------
660
661 do n=1, this%process_num
662 call this%process_list(n)%Final()
663 end do
664 this%process_num = 0
665
666 return
667 end subroutine time_manager_component_final
668
669 function time_manager_component_do_process( this, tm_process_id ) result(do_step)
670 implicit none
671 class(time_manager_component), intent(inout) :: this
672 integer, intent(in) :: tm_process_id
673 logical :: do_step
674 !--------------------------------------------------
675 do_step = this%process_list(tm_process_id)%do_step
676 return
677 end function time_manager_component_do_process
678
679 function time_manager_component_get_process_inner_itr_num( this, tm_process_id ) result(itr_num)
680 implicit none
681 class(time_manager_component), intent(inout) :: this
682 integer, intent(in) :: tm_process_id
683 integer :: itr_num
684 !--------------------------------------------------
685 itr_num = this%process_list(tm_process_id)%inner_itr_num
686 return
687 end function time_manager_component_get_process_inner_itr_num
688
689 !---
690
691 subroutine time_manager_process_init( this, process_name, &
692 dt, dt_unit )
693 implicit none
694
695 class(time_manager_process), intent(inout) :: this
696 character(*), intent(in) :: process_name
697 real(dp), intent(in) :: dt
698 character(*), intent(in) :: dt_unit
699 !--------------------------------------------------
700
701 this%res_step = 0
702 this%process_name = process_name
703
704 if (.not. setup_tinteg_flag) return
705
706 if (dt == undef8) then
707 log_info_cont(*) 'Not found TIME_DT_'//trim(process_name)//'. TIME_DTSEC is used.'
708 this%dtsec = time_dtsec
709 else
710 call calendar_unit2sec( this%dtsec, dt, dt_unit )
711 end if
712
713 this%inner_itr_num = max( nint(time_dtsec/this%dtsec), 1 )
714 this%dstep = nint( this%dtsec / time_dtsec * dble(this%inner_itr_num) )
715
716 if ( abs( real(this%inner_itr_num, kind=dp)*this%dtsec &
717 - real(this%dstep ,kind=dp)*time_dtsec ) > eps ) then
718 log_error("TIME_manager_process_Init",*) 'delta t('//trim(process_name)//') must be a multiple of delta t ', &
719 this%dtsec, real(this%dstep,kind=dp)*time_dtsec
720 call prc_abort
721 end if
722
723 return
724 end subroutine time_manager_process_init
725
726
727 subroutine time_manager_process_final( this )
728 implicit none
729 class(time_manager_process), intent(inout) :: this
730 !--------------------------------------------------
731
732 return
733 end subroutine time_manager_process_final
734
735 subroutine time_manager_process_checkstate( this )
736 implicit none
737 class(time_manager_process), intent(inout) :: this
738 !--------------------------------------------------
739
740 this%do_step = .false.
741 this%res_step = this%res_step + 1
742 if ( this%res_step == this%dstep ) then
743 this%do_step = .true.
744 this%res_step = 0
745 end if
746
747 return
748 end subroutine time_manager_process_checkstate
749
750!--
751
752end module scale_time_manager
module common / time
subroutine, public time_manager_advance()
real(dp), public time_endsec
integer, public time_endday
subroutine, public time_manager_report_timeintervals()
real(dp), public time_startsubsec
integer, dimension(6), public time_startdate
real(dp), public time_durationsec
subroutine, public time_manager_checkstate()
real(dp), public time_endsubsec
real(dp), public time_dtsec_resume
subroutine, public time_manager_final()
integer, dimension(6), public time_enddate
real(dp), public time_startsec
integer, public time_startday
logical, public time_doresume
integer, public time_dstep_resume
real(dp), public time_startms
[millisec]
subroutine, public time_manager_regist_component(tmanager_comp)
subroutine, public time_manager_init(setup_timeintegration, restart_in_basename)