type_time_control_time_stepping Derived Type

type, public :: type_time_control_time_stepping


Inherited by

type~~type_time_control_time_stepping~~InheritedByGraph type~type_time_control_time_stepping type_time_control_time_stepping type~type_time_control type_time_control type~type_time_control->type~type_time_control_time_stepping time_stepping type~type_conditions type_conditions type~type_conditions->type~type_time_control time_control type~type_input type_input type~type_input->type~type_conditions conditions

Components

Type Visibility Attributes Name Initial
real(kind=real64), public :: initial_step
real(kind=real64), public :: max_step
real(kind=real64), public :: min_step
character(len=:), public, allocatable :: unit

Source Code

    type :: type_time_control_time_stepping
        character(:), allocatable :: unit
        real(real64) :: initial_step
        real(real64) :: min_step
        real(real64) :: max_step
    end type type_time_control_time_stepping