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

Can I simulate the cycling process of a boiler?

asked 2017-06-02 13:02:36 -0500

dalin_si's avatar

updated 2018-04-08 09:02:52 -0500

For now I want to simulate boilers with different turn down ratio, but from the source code, seems like when the demand is lower than the minimum part load, EnergyPlus will operate the boiler at 20% capacity (let's say turndown ratio is 5:1) because it can't modulate to lower loads.

$$FuelUse = \frac{TheoreticalFuelUse}{NormalisedBoilerEff}$$

$$TheoreticalFuelUse = \frac{BoilerLoad}{BoilerEff}$$

is that mean the way EnergyPlus simulating boiler consumption can not achieve the cycling process when load below the turndown ratio? If it can, any advice?

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
4

answered 2017-10-17 19:14:36 -0500

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 );
edit flag offensive delete link more
2

answered 2017-10-18 06:04:14 -0500

updated 2017-10-18 06:04:48 -0500

@rraustad gave you the gist of what E+ is doing when cycling the boiler. But as far as I know, E+ doesn't specifically take any purge losses into account when cycling the boiler.

It is common for forced-draft (non atmospheric) boilers to go through a post-purge cycling at the end of a firing event, and a pre-purge cycle before ignition occurs. These are done for safety reasons, air is blown in order to remove any left-over gases. The length of the pre and post purge cycles varies from one burner to another and from experience ranges from 30 secs up to 2 minutes. This aspect is paramount in what is described as "short cycling". Your fuel use might go up by several percentage points if you end up cycling too often.

Now, some of that will be captured if you set a bad efficiency at the min PLR.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Careers

Question Tools

1 follower

Stats

Asked: 2017-06-02 13:02:36 -0500

Seen: 216 times

Last updated: Oct 18 '17