First time here? Check out the Help page!
1 | initial version |
Looks like EnergyPlus currently allows Design Heat Recovery Water Flow Rate
to be autosized for Chiller:Electric:ReformulatedEIR
and Chiller:Electric
objects only. Though Chiller:Electric:EIR
in the Energy+.idd
mentions this field as "autosizable", the source code ChillerElectricEIR.cc
, is missing the below calculations which are in ChillerReformulatedEIR.cc
and PlantChillers.cc
(only for electric and not other chillers in the modules). In your file, changing the EIR chiller to reformulated EIR gets the E+ to size heat recovery flow rates.
if ( ElectricChiller( ChillNum ).HeatRecActive ) {
tmpHeatRecVolFlowRate = ElectricChiller( ChillNum ).Base.CondVolFlowRate * ElectricChiller( ChillNum ).HeatRecCapacityFraction;
if ( ! ElectricChiller( ChillNum ).DesignHeatRecVolFlowRateWasAutoSized ) tmpHeatRecVolFlowRate = ElectricChiller( ChillNum ).DesignHeatRecVolFlowRate;
if ( PlantFirstSizesOkayToFinalize ) {
if ( ElectricChiller( ChillNum ).DesignHeatRecVolFlowRateWasAutoSized ) {
ElectricChiller( ChillNum ).DesignHeatRecVolFlowRate = tmpHeatRecVolFlowRate;
.......................
.......................