First time here? Check out the Help page!
1 | initial version |
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 );