Dump timecontrol information to the specified outUnit.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(tem_timeControl_type), | intent(inout) | :: | me |
Time control to write on outUnit. |
||
integer, | intent(in) | :: | outUnit |
The file unit to write the time control to. |
subroutine tem_timeControl_dump(me, outUnit)
! -------------------------------------------------------------------- !
!> Time control to write on outUnit.
type(tem_timeControl_type), intent(inout) :: me
!> The file unit to write the time control to.
integer, intent(in) :: outUnit
! -------------------------------------------------------------------- !
! -------------------------------------------------------------------- !
write(outUnit,*) '+-------------------------------------------+'
write(outUnit,'(A,I0)') 'Iterations between trigger checks: ', me%check_iter
write(outUnit,*) ' - Min:'
call tem_time_dump(me%min, outUnit)
write(outUnit,*) ''
write(outUnit,*) ' - Max:'
call tem_time_dump(me%max, outUnit)
write(outUnit,*) ''
write(outUnit,*) ' - Interval:'
call tem_time_dump(me%interval, outUnit)
write(outUnit,*) '+-------------------------------------------+'
end subroutine tem_timeControl_dump