tem_ini_condition_type Derived Type

type, public :: tem_ini_condition_type

Definition of the initial condition. The ini_state must exist for each variable


Components

Type Visibility Attributes Name Initial
character(len=labelLen), public, allocatable :: StateName(:)

spatial variable names expected from config file

type(tem_spatial_type), public, allocatable :: ini_state(:)

initial state of each variable. size is nVars


Source Code

  type tem_ini_condition_type
    !> spatial variable names expected from config file
    character(len=labelLen), allocatable :: StateName(:)
    !> initial state of each variable. size is nVars
    type(tem_spatial_type), allocatable :: ini_state(:)
  end type tem_ini_condition_type