type_conditions Derived Type

type, public :: type_conditions


Inherits

type~~type_conditions~~InheritsGraph type~type_conditions type_conditions type~type_boundary_conditions type_boundary_conditions type~type_conditions->type~type_boundary_conditions boundary_conditions type~type_initail_conditions type_initail_conditions type~type_conditions->type~type_initail_conditions initial_conditions type~type_time_control type_time_control type~type_conditions->type~type_time_control time_control type~type_boundary_local type_boundary_local type~type_boundary_conditions->type~type_boundary_local thermal, hydraulic type~type_initial_local type_initial_local type~type_initail_conditions->type~type_initial_local thermal, hydraulic, porosity 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 type~type_boundary_local_initial type_boundary_local_initial type~type_initial_local->type~type_boundary_local_initial boundary type~type_boundary_local_initial->type~type_boundary_local

Inherited by

type~~type_conditions~~InheritedByGraph type~type_conditions type_conditions type~type_input type_input type~type_input->type~type_conditions conditions

Components

Type Visibility Attributes Name Initial
type(type_boundary_conditions), public, allocatable :: boundary_conditions(:)
type(type_initail_conditions), public :: initial_conditions
integer(kind=int32), public :: num_boundaries
type(type_time_control), public :: time_control

Source Code

    type :: type_conditions
        type(type_time_control) :: time_control
        type(type_boundary_conditions), allocatable :: boundary_conditions(:)
        integer(int32) :: num_boundaries
        type(type_initail_conditions) :: initial_conditions
    end type type_conditions