3

How to Report EFLH for schedules in Open Studio?

Is there a way to output the equivalent full load hours for a given fractional or on/off schedule, or is there some location in OS that displays this value?

nsimhai's avatar
105
nsimhai
asked 2019-08-13 12:22:34 -0500, updated 2019-08-13 13:58:15 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

3

Use the custom reporting measure to edit a sql query from the Energy Meters EPlus table of whichever end use you are looking for.

EFLH = Annual / Max

https://bcl.nrel.gov/node/83274

pow_skier's avatar
290
pow_skier
answered 2019-08-14 09:11:31 -0500
edit flag offensive 0 remove flag delete link

Comments

2

Thanks, this is a helpful measure I didn't know about, and could be useful for other things as well. Is there some more information on what methods are required to get the different model outputs - e.g. whether to get it from the model as in "model.getBuilding.name.to_s" or from the SQL file or from the SQL tabular data?

nsimhai's avatar nsimhai (2019-08-14 11:12:13 -0500) edit
3

In a reporting measure you will most likely be using the SQL output file as well as the energy plus table data. Both are accessible via queries accompanied with the .execAndReturn methods to the sqlFile object that is already set up for you in the template!

ParticleSwarm's avatar ParticleSwarm (2019-08-15 12:04:12 -0500) edit
add a comment see more comments
2

I usually calculate the equivalent full load hours based on the resulting energy use of the equipment associated with the fractional or on/off schedule. The calculation is EFLHs = annual energy use / peak energy demand.

An example would be a light fixture with input power of 1 kW that has an annual energy use of 1,126 kWh and a peak energy demand of 0.9 kW. The calculated EFLHs of the schedule assigned to this light fixture would be 1,251.1 hours/year. Note that you use the peak demand and not the input power. If the peak demand is less than the input power, that means that the schedule doesn't include an hour with a fractional value of 1.0.

anchapin's avatar
626
anchapin
answered 2019-08-14 06:58:18 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments