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.
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 | :: | TypeOf | = | '' | ||
character(len=MaxNameLength), | public | :: | Name | = | '' | ||
integer, | public | :: | EquipIndex | = | 0 | ||
logical, | public | :: | ON | = | .true. | ||
integer, | public | :: | InletNodeNum | = | 0 | ||
integer, | public | :: | OutletNodeNum | = | 0 | ||
integer, | public | :: | NumMeteredVars | = | 0 | ||
type(EquipMeterData), | public, | ALLOCATABLE, DIMENSION(:) | :: | MeteredVar | |||
integer, | public | :: | EnergyTransComp | = | 0 | ||
integer, | public | :: | ZoneEqToPlantPtr | = | 0 | ||
integer, | public | :: | OpMode | = | 0 | ||
real(kind=r64), | public | :: | Capacity | = | 0.0d0 | ||
real(kind=r64), | public | :: | Efficiency | = | 0.0d0 | ||
real(kind=r64), | public | :: | TotPlantSupplyElec | = | 0.0d0 | ||
real(kind=r64), | public | :: | PlantSupplyElecEff | = | 0.0d0 | ||
real(kind=r64), | public | :: | PeakPlantSupplyElecEff | = | 0.0d0 | ||
real(kind=r64), | public | :: | TotPlantSupplyGas | = | 0.0d0 | ||
real(kind=r64), | public | :: | PlantSupplyGasEff | = | 0.0d0 | ||
real(kind=r64), | public | :: | PeakPlantSupplyGasEff | = | 0.0d0 | ||
real(kind=r64), | public | :: | TotPlantSupplyPurch | = | 0.0d0 | ||
real(kind=r64), | public | :: | PlantSupplyPurchEff | = | 0.0d0 | ||
real(kind=r64), | public | :: | PeakPlantSupplyPurchEff | = | 0.0d0 | ||
real(kind=r64), | public | :: | TotPlantSupplyOther | = | 0.0d0 | ||
real(kind=r64), | public | :: | PlantSupplyOtherEff | = | 0.0d0 | ||
real(kind=r64), | public | :: | PeakPlantSupplyOtherEff | = | 0.0d0 |
TYPE SubSubEquipmentData !data for an individual component
CHARACTER(len=MaxNameLength) :: TypeOf ='' ! The 'keyWord' identifying component type
CHARACTER(len=MaxNameLength) :: Name ='' ! Component name
INTEGER :: EquipIndex =0 ! Component Index for routines
LOGICAL :: ON =.true. ! When true, the designated component or operation scheme is available
INTEGER :: InletNodeNum =0
INTEGER :: OutletNodeNum =0
INTEGER :: NumMeteredVars =0
TYPE(EquipMeterData),ALLOCATABLE, DIMENSION(:) :: MeteredVar !Index of energy output report data
INTEGER :: EnergyTransComp =0 !1=EnergyTransfer, 0=No EnergyTransfer Flag needed for reporting
INTEGER :: ZoneEqToPlantPtr =0 !0=No plant loop connection, >=0 index to ZoneEqToPlant array
INTEGER :: OpMode = 0
REAL(r64) :: Capacity=0.0d0
REAL(r64) :: Efficiency=0.0d0
REAL(r64) :: TotPlantSupplyElec =0.0d0
REAL(r64) :: PlantSupplyElecEff =0.0d0
REAL(r64) :: PeakPlantSupplyElecEff =0.0d0
REAL(r64) :: TotPlantSupplyGas =0.0d0
REAL(r64) :: PlantSupplyGasEff =0.0d0
REAL(r64) :: PeakPlantSupplyGasEff =0.0d0
REAL(r64) :: TotPlantSupplyPurch =0.0d0
REAL(r64) :: PlantSupplyPurchEff =0.0d0
REAL(r64) :: PeakPlantSupplyPurchEff =0.0d0
REAL(r64) :: TotPlantSupplyOther =0.0d0
REAL(r64) :: PlantSupplyOtherEff =0.0d0
REAL(r64) :: PeakPlantSupplyOtherEff =0.0d0
END TYPE SubSubEquipmentData