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, | ALLOCATABLE, DIMENSION(:) | :: | SurfName | |||
real(kind=r64), | public, | ALLOCATABLE, DIMENSION(:) | :: | DeltaTai | |||
integer, | public | :: | numSurfs | = | 0 | ||
integer, | public, | ALLOCATABLE, DIMENSION(:) | :: | SurfID |
TYPE SurfMapPattern ! nested structure in RoomAirPattern
! user variables
CHARACTER(len=MaxNameLength), ALLOCATABLE, DIMENSION(:) :: SurfName ! user defined name
REAL(r64), ALLOCATABLE, DIMENSION(:) :: DeltaTai ! (Tai - MAT ) offset from mean air temp
INTEGER :: numSurfs = 0 ! number of surfaces in this pattern
!calculated and from elsewhere
INTEGER , ALLOCATABLE, DIMENSION(:) :: SurfID ! index in HB surface structure array
END TYPE SurfMapPattern