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 | |||
---|---|---|---|---|---|---|---|
real(kind=r64), | public | :: | CoolingDemand | = | 0.d0 | ||
real(kind=r64), | public | :: | HeatingDemand | = | 0.d0 | ||
real(kind=r64), | public | :: | DemandNotDispatched | = | 0.d0 | ||
real(kind=r64), | public | :: | UnmetDemand | = | 0.d0 | ||
type(LoopSideReportVars), | public, | DIMENSION(2) | :: | LoopSide | |||
real(kind=r64), | public | :: | BypassFrac | = | 0.d0 | ||
real(kind=r64), | public | :: | InletNodeFlowrate | = | 0.d0 | ||
real(kind=r64), | public | :: | InletNodeTemperature | = | 0.d0 | ||
real(kind=r64), | public | :: | OutletNodeFlowrate | = | 0.d0 | ||
real(kind=r64), | public | :: | OutletNodeTemperature | = | 0.d0 | ||
integer, | public | :: | LastLoopSideSimulated | = | 0 |
TYPE ReportVars
! Whole loop descriptions
REAL(r64) :: CoolingDemand = 0.d0 ! Plant Loop Cooling Demand, W
REAL(r64) :: HeatingDemand = 0.d0 ! Plant Loop Heating Demand[W]
REAL(r64) :: DemandNotDispatched = 0.d0 ! Plant Loop Demand that was not distributed [W]
REAL(r64) :: UnmetDemand = 0.d0 ! Plant Loop Unmet Demand [W]
! Loop side data
TYPE(LoopSideReportVars), DIMENSION(2) :: LoopSide
REAL(r64) :: BypassFrac = 0.d0 ! Debug Variable
REAL(r64) :: InletNodeFlowrate = 0.d0 ! Debug Variable
REAL(r64) :: InletNodeTemperature = 0.d0 ! Debug Variable
REAL(r64) :: OutletNodeFlowrate = 0.d0 ! Debug Variable
REAL(r64) :: OutletNodeTemperature = 0.d0 ! Debug Variable
INTEGER :: LastLoopSideSimulated = 0
END TYPE ReportVars