TYPE ReportVars
REAL(r64) :: CoolingLoad =0.0d0 ! cooling load on the chiller (previously called QEvap)
REAL(r64) :: CoolingEnergy =0.0d0 ! variable to track total cooling load for period (was EvapEnergy)
REAL(r64) :: HeatingLoad =0.0d0 ! heating load on the chiller
REAL(r64) :: HeatingEnergy =0.0d0 ! heating energy
REAL(r64) :: TowerLoad =0.0d0 ! load on the cooling tower/condenser (previously called QCond)
REAL(r64) :: TowerEnergy =0.0d0 ! variable to track total tower load for a period (was CondEnergy)
REAL(r64) :: FuelUseRate =0.0d0 ! instantaneous use of gas for period
REAL(r64) :: FuelEnergy =0.0d0 ! variable to track total fuel used for a period
REAL(r64) :: CoolFuelUseRate =0.0d0 ! instantaneous use of gas for period for cooling
REAL(r64) :: CoolFuelEnergy =0.0d0 ! variable to track total fuel used for a period for cooling
REAL(r64) :: HeatFuelUseRate =0.0d0 ! instantaneous use of gas for period for heating
REAL(r64) :: HeatFuelEnergy =0.0d0 ! variable to track total fuel used for a period for heating
REAL(r64) :: ElectricPower =0.0d0 ! parasitic electric power used (was PumpingPower)
REAL(r64) :: ElectricEnergy =0.0d0 ! track the total electricity used for a period (was PumpingEnergy)
REAL(r64) :: CoolElectricPower =0.0d0 ! parasitic electric power used for cooling
REAL(r64) :: CoolElectricEnergy =0.0d0 ! track the total electricity used for a period for cooling
REAL(r64) :: HeatElectricPower =0.0d0 ! parasitic electric power used for heating
REAL(r64) :: HeatElectricEnergy =0.0d0 ! track the total electricity used for a period for heating
REAL(r64) :: ChillReturnTemp =0.0d0 ! reporting: evaporator inlet temperature (was EvapInletTemp)
REAL(r64) :: ChillSupplyTemp =0.0d0 ! reporting: evaporator outlet temperature (was EvapOutletTemp)
REAL(r64) :: ChillWaterFlowRate =0.0d0 ! reporting: evaporator mass flow rate (was Evapmdot)
REAL(r64) :: CondReturnTemp =0.0d0 ! reporting: condenser inlet temperature (was CondInletTemp)
REAL(r64) :: CondSupplyTemp =0.0d0 ! reporting: condenser outlet temperature (was CondOutletTemp)
REAL(r64) :: CondWaterFlowRate =0.0d0 ! reporting: condenser mass flow rate (was Condmdot)
REAL(r64) :: HotWaterReturnTemp =0.0d0 ! reporting: hot water return (inlet) temperature
REAL(r64) :: HotWaterSupplyTemp =0.0d0 ! reporting: hot water supply (outlet) temperature
REAL(r64) :: HotWaterFlowRate =0.0d0 ! reporting: hot water mass flow rate
REAL(r64) :: CoolPartLoadRatio =0.0d0 ! operating part load ratio (load/capacity for cooling)
REAL(r64) :: HeatPartLoadRatio =0.0d0 ! operating part load ratio (load/capacity for heating)
REAL(r64) :: CoolingCapacity =0.0d0 ! current capacity after temperature adjustment
REAL(r64) :: HeatingCapacity =0.0d0 ! current heating capacity
REAL(r64) :: FractionOfPeriodRunning =0.0d0 ! fraction of the time period that the unit is operating
REAL(r64) :: FuelCOP =0.0d0 ! reporting: cooling output/fuel input = CoolingLoad/CoolFuelUseRate
END TYPE ReportVars