tem_restartControl_type Derived Type

type, public :: tem_restartControl_type

Control the behavior of the restart, like at which point in time etc.


Components

Type Visibility Attributes Name Initial
logical, public :: init_on_missing

Do a normal initialization if the read restart file is not found?

logical, public :: readRestart

is the restart read active?

logical, public :: writeRestart

is the restart write active?

character(len=PathLen), public :: readFileName

read the restart file from following file

character(len=PathLen), public :: writePrefix

write the restart file into a file with the following prefix

type(tem_timeControl_type), public :: timeControl

control about when to do the restart


Source Code

  type tem_restartControl_type
    !> Do a normal initialization if the read restart file is not found?
    logical :: init_on_missing
    !> is the restart read active?
    logical :: readRestart
    !> is the restart write active?
    logical :: writeRestart
    !> read the restart file from following file
    character(len=PathLen) :: readFileName
    !> write the restart file into a file with the following prefix
    character(len=PathLen) :: writePrefix
    !> control about when to do the restart
    type(tem_timeControl_type) :: timeControl
  end type tem_restartControl_type