tem_restart_openRead Subroutine

public subroutine tem_restart_openRead(me)

open the restart dump file and write out the 'normal' restart header.

Arguments

Type IntentOptional Attributes Name
type(tem_restart_type) :: me

the restart information


Calls

proc~~tem_restart_openread~~CallsGraph proc~tem_restart_openread tem_restart_openRead proc~tem_restart_openread_single tem_restart_openRead_single proc~tem_restart_openread->proc~tem_restart_openread_single mpi_file_open mpi_file_open proc~tem_restart_openread_single->mpi_file_open mpi_file_set_view mpi_file_set_view proc~tem_restart_openread_single->mpi_file_set_view proc~check_mpi_error check_mpi_error proc~tem_restart_openread_single->proc~check_mpi_error mpi_error_string mpi_error_string proc~check_mpi_error->mpi_error_string proc~tem_abort tem_abort proc~check_mpi_error->proc~tem_abort mpi_abort mpi_abort proc~tem_abort->mpi_abort

Source Code

  subroutine tem_restart_openRead(me)
    ! -------------------------------------------------------------------- !
    !> the restart information
    type(tem_restart_type) :: me

    write(logUnit(1),*)' Open read... '

    ! read the restart header file
    ! prepare everything for the serialization of the data
    ! Invoke the routine to open single variable system from restart file
    call tem_restart_openRead_single(me)

  end subroutine tem_restart_openRead