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 | |||
---|---|---|---|---|---|---|---|
integer, | public | :: | LoopNum | = | 0 | ||
integer, | public | :: | LoopSideNum | = | 0 | ||
integer, | public | :: | BranchNum | = | 0 | ||
integer, | public | :: | CompNum | = | 0 | ||
integer, | public | :: | InletNodeNum | = | 0 | ||
integer, | public | :: | OutletNodeNum | = | 0 | ||
real(kind=r64), | public | :: | MassFlowRateMin | = | 0.d0 | ||
real(kind=r64), | public | :: | MassFlowRateMax | = | 0.d0 | ||
real(kind=r64), | public | :: | DesignVolumeFlowRate | = | 0.d0 | ||
real(kind=r64), | public | :: | MyLoad | = | 0.d0 | ||
real(kind=r64), | public | :: | MinLoad | = | 0.d0 | ||
real(kind=r64), | public | :: | MaxLoad | = | 0.d0 | ||
real(kind=r64), | public | :: | OptLoad | = | 0.d0 | ||
real(kind=r64), | public | :: | InletTemp | = | 0.d0 | ||
real(kind=r64), | public | :: | InletMassFlowRate | = | 0.d0 | ||
real(kind=r64), | public | :: | OutletTemp | = | 0.d0 |
TYPE PlantConnectionStruct
INTEGER :: LoopNum = 0 ! plant loop connection index
INTEGER :: LoopSideNum = 0 ! plant loop side connection index
INTEGER :: BranchNum = 0 ! plant loop branch connection index
INTEGER :: CompNum = 0 ! plant loop component connection index
INTEGER :: InletNodeNum = 0 ! plant loop inlet node index
INTEGER :: OutletNodeNum = 0 ! plant loop outlet node index
REAL(r64) :: MassFlowRateMin = 0.d0 ! minimum (hardware) flow rate for component [kg/s]
REAL(r64) :: MassFlowRateMax = 0.d0 ! maximum (hardware) flow rate for component [kg/s]
REAL(r64) :: DesignVolumeFlowRate = 0.d0 ! design flow rate [m3/s]
REAL(r64) :: MyLoad =0.d0 ! current load request of supply equip for op scheme control[W]
REAL(r64) :: MinLoad = 0.d0 ! reports back size for load dispatch routines [W]
REAL(r64) :: MaxLoad = 0.d0 ! reports back size for load dispatch [W]
REAL(r64) :: OptLoad = 0.d0 ! reports back size for load dispatch [W]
REAL(r64) :: InletTemp = 0.d0 ! current inlet fluid temperature [C]
REAL(r64) :: InletMassFlowRate = 0.d0 ! current inlet mass flow rate [kg/s]
REAL(r64) :: OutletTemp = 0.d0 ! componenent outlet temperature [C]
END TYPE PlantConnectionStruct