Condenser temperature curve for Chiller:Absorption:Indirect

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;
    }
}
Eikichi Ono's avatar
41
Eikichi Ono
asked 2021-11-15 04:39:29 -0500
__AmirRoth__'s avatar
4.4k
__AmirRoth__
updated 2022-02-22 13:17:15 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments