type_time_control Derived Type

type, public :: type_time_control


Inherits

type~~type_time_control~~InheritsGraph type~type_time_control type_time_control type~type_time_control_simulation_period type_time_control_simulation_period type~type_time_control->type~type_time_control_simulation_period simulation_period type~type_time_control_time_stepping type_time_control_time_stepping type~type_time_control->type~type_time_control_time_stepping time_stepping

Inherited by

type~~type_time_control~~InheritedByGraph type~type_time_control type_time_control 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, allocatable :: boundary_time_points(:)
type(type_time_control_simulation_period), public :: simulation_period
type(type_time_control_time_stepping), public :: time_stepping

Source Code

    type :: type_time_control
        type(type_time_control_simulation_period) :: simulation_period
        type(type_time_control_time_stepping) :: time_stepping
        real(real64), allocatable :: boundary_time_points(:)
    end type type_time_control