Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Revision history [back]

The boiler will operate at the minimum part-load ratio until the water outlet upper temperature limit is reached. At that point the boiler will cycle off.

Boiler:HotWater,
  0.2,             !- Minimum Part Load Ratio
  1.0,             !- Maximum Part Load Ratio
  100.,            !- Water Outlet Upper Temperature Limit {C}

The code shows:

// Limit BoilerOutletTemp.  If > max temp, trip boiler off
if ( BoilerOutletTemp > TempUpLimitBout ) {
    BoilerOutletTemp = Node( BoilerInletNode ).Temp;
}

OperPLR = BoilerLoad / BoilerNomCap;
OperPLR = min( OperPLR, BoilerMaxPLR );
OperPLR = max( OperPLR, BoilerMinPLR );