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 | :: | ErlInitProgramMngr | = | 0 | ||
integer, | public | :: | ErlSimProgramMngr | = | 0 | ||
integer, | public | :: | LoopNum | = | 0 | ||
integer, | public | :: | LoopSideNum | = | 0 | ||
integer, | public | :: | BranchNum | = | 0 | ||
integer, | public | :: | CompNum | = | 0 | ||
integer, | public | :: | InletNodeNum | = | 0 | ||
integer, | public | :: | OutletNodeNum | = | 0 | ||
integer, | public | :: | FlowPriority | = | LoopFlowStatus_Unknown | ||
integer, | public | :: | HowLoadServed | = | HowMet_Unknown | ||
real(kind=r64), | public | :: | LowOutTempLimit | = | 0.d0 | ||
real(kind=r64), | public | :: | HiOutTempLimit | = | 0.d0 | ||
real(kind=r64), | public | :: | MassFlowRateRequest | = | 0.d0 | ||
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 | :: | InletRho | = | 0.d0 | ||
real(kind=r64), | public | :: | InletCp | = | 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 :: ErlInitProgramMngr = 0 ! points to an EMS:ProgramManager to run for setup and sizing
INTEGER :: ErlSimProgramMngr = 0 ! points to an EMS:ProgramManager to run only when this connection is called
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
INTEGER :: FlowPriority = LoopFlowStatus_Unknown ! how component affects overall loop flow determination
INTEGER :: HowLoadServed = HowMet_Unknown ! nature of component wrt to plant loop's loads
REAL(r64) :: LowOutTempLimit = 0.d0 ! low limit for outlet temp if MEETSLOADWITHNOMINALCAPACITYLOWOUTLIMIT
REAL(r64) :: HiOutTempLimit = 0.d0 ! hi limit for outlet temp if MEETSLOADWITHNOMINALCAPACITYHIOUTLIMIT
REAL(r64) :: MassFlowRateRequest = 0.d0 ! request filled by actuator, might not be satisfied if plant constrained [kg/s]
REAL(r64) :: MassFlowRateMin = 0.d0 ! filled by actuator, reports minimum (hardware) flow rate for component [kg/s]
REAL(r64) :: MassFlowRateMax = 0.d0 ! filled by actuator, reports maximum (hardware) flow rate for component [kg/s]
REAL(r64) :: DesignVolumeFlowRate = 0.d0 ! filled by actuator,
REAL(r64) :: MyLoad =0.d0 ! fills internal variable for user's model to know current load request of supply equip [W]
REAL(r64) :: MinLoad = 0.d0 ! filled by actuator, reports back size for load dispatch routines [W]
REAL(r64) :: MaxLoad = 0.d0 ! filled by actuator, reports back size for load dispatch [W]
REAL(r64) :: OptLoad = 0.d0 ! filled by actuator, reports back size for load dispatch [W]
REAL(r64) :: InletRho = 0.d0 ! fills internal variable, current density for fluid type and inlet temperature [kg/m3]
REAL(r64) :: InletCp = 0.d0 ! fills internal Varaible, current specific heat for fluid type and inlet temperature [J/kg-C]
REAL(r64) :: InletTemp = 0.d0 ! fills internal variable, current inlet fluid temperature [C]
REAL(r64) :: InletMassFlowRate = 0.d0 ! fills internal variable, current inlet mass flow rate [kg/s]
REAL(r64) :: OutletTemp = 0.d0 ! filled by actuator, componenent outlet temperature [C]
END TYPE PlantConnectionStruct