tem_simControl_dump_now Subroutine

public subroutine tem_simControl_dump_now(me, outUnit)

Dump the current time (now) of the simControl to outUnit.

This also updates the clock in now to really show the current time.

Arguments

Type IntentOptional Attributes Name
type(tem_simControl_type), intent(inout) :: me

Simulation control settings to write to outUnit.

integer, intent(in) :: outUnit

File unit to write to.


Source Code

  subroutine tem_simControl_dump_now(me, outUnit)
    ! -------------------------------------------------------------------- !
    !> Simulation control settings to write to outUnit.
    type(tem_simControl_type), intent(inout) :: me

    !> File unit to write to.
    integer, intent(in) :: outUnit
    ! -------------------------------------------------------------------- !

    call tem_time_set_clock(me%now)
    call tem_time_dump(me%now, outUnit)

  end subroutine tem_simControl_dump_now