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 | = | ' ' | ||
integer, | public | :: | PatrnID | = | 0 | ||
integer, | public | :: | PatternMode | = | 0 | ||
type(ConstGradPattern), | public | :: | GradPatrn | ||||
type(TwoVertGradInterpolPattern), | public | :: | TwoGradPatrn | ||||
type(TempVsHeightPattern), | public | :: | VertPatrn | ||||
type(SurfMapPattern), | public | :: | MapPatrn | ||||
real(kind=r64), | public | :: | DeltaTstat | = | 0.0d0 | ||
real(kind=r64), | public | :: | DeltaTleaving | = | 0.0d0 | ||
real(kind=r64), | public | :: | DeltaTexhaust | = | 0.0d0 |
TYPE TemperaturePatternStruct ! RoomAirPattern
CHARACTER(Len=MaxNameLength) :: Name = ' ' ! unique identifier
INTEGER :: PatrnID = 0 ! control ID for referencing in Schedules
INTEGER :: PatternMode = 0 ! Control for what type of calcs in this pattern
TYPE(ConstGradPattern) :: GradPatrn ! Constant gradient pattern
TYPE(TwoVertGradInterpolPattern) :: TwoGradPatrn ! Two gradient interpolation pattern
TYPE(TempVsHeightPattern) :: VertPatrn ! Vertical gradient profile pattern
TYPE(SurfMapPattern ) :: MapPatrn ! Generic Surface map pattern
REAL(r64) :: DeltaTstat = 0.0d0 ! (Tstat - MAT) offset deg C
REAL(r64) :: DeltaTleaving = 0.0d0 ! (Tleaving - MAT) deg C
REAL(r64) :: DeltaTexhaust = 0.0d0 ! (Texhaust - MAT) deg C
END TYPE TemperaturePatternStruct