Condenser temperature curve for Chiller:Absorption:Indirect

asked 2021-11-15 04:39:29 -0500

Eikichi Ono's avatar

updated 2022-02-22 13:17:15 -0500

It seems like Chiller:Absorption:Indirect does not reflect the input of condenser temperature curve. I tried different curves several times but the results were exactly the same. Does anyone know the reason?

Looking at the source code at NREL's github (https://github.com/NREL/EnergyPlus/bl...), the code seems to refer to the generator inlet temperature, not the condenser inlet temperature, as pasted below. It might be a bug?

if (this->GeneratorInletNodeNum > 0) {
    if (this->HeatInputFCondTempPtr > 0) {
        HeatInputfCondTemp =
            CurveManager::CurveValue(state, this->HeatInputFCondTempPtr, state.dataLoopNodes->Node(this->GeneratorInletNodeNum).Temp);
    } else {
        HeatInputfCondTemp = 1.0;
    }
}
edit retag flag offensive close merge delete