Nodes of different colours represent the following:
Solid arrows point from one derived type to another which extends (inherits from) it. Dashed arrows point from a derived type to another type containing it as a components, with a label listing the name(s) of said component(s). Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Nodes of different colours represent the following:
Solid arrows point from one derived type to another which extends (inherits from) it. Dashed arrows point from a derived type to another type containing it as a components, with a label listing the name(s) of said component(s). Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
character(len=MaxNameLength), | public | :: | Name | = | ' ' | ||
real(kind=r64), | public | :: | RangeUpperLimit | = | 0.0d0 | ||
real(kind=r64), | public | :: | RangeLowerLimit | = | 0.0d0 | ||
integer, | public | :: | NumComps | = | 0 | ||
type(EquipListCompData), | public, | ALLOCATABLE, DIMENSION(:) | :: | Comp |
TYPE EquipOpList ! DSU
CHARACTER(len=MaxNameLength) :: Name = ' ' ! The name of each item in the list
REAL(r64) :: RangeUpperLimit = 0.0d0 ! for range based controls
REAL(r64) :: RangeLowerLimit = 0.0d0 ! for range based controls
INTEGER :: NumComps = 0 ! ALLOCATABLE to the schedule (for valid schedules)
TYPE(EquipListCompData), &
ALLOCATABLE, DIMENSION(:) :: Comp ! Component type list
END TYPE EquipOpList ! DSU