First time here? Check our help page!
1

Total GSF For Building

I need to compute the total Gross Square Feet (GSF) for each building that I simulate with EnergyPlus. Is there an easy way to extract GSF from the IDF or simulation output, preferably in an automated way?

k's avatar
57
k
asked 2019-04-25 13:11:21 -0500
shorowit's avatar
11.8k
shorowit
updated 2019-04-25 17:58:39 -0500
edit flag offensive 0 remove flag close merge delete

Comments

Do you have multiple buildings in the same IDF file?

Luis Lara's avatar Luis Lara (2019-04-25 13:29:24 -0500) edit

Nope - one building per IDF in my case.

k's avatar k (2019-04-25 13:54:00 -0500) edit
add a comment see more comments

2 Answers

2

When you successfully run your simulation, you will get a file named eplustbl (normally eplustbl.html but you can change to other extensions such as .tab or .xml).

If you navigate to the Annual Building Utility Performance Summary you will find a section for the Building Area.

Luis Lara's avatar
2.1k
Luis Lara
answered 2019-04-25 14:04:44 -0500
edit flag offensive 0 remove flag delete link

Comments

Thank you! This is exactly what I need!

k's avatar k (2019-04-25 14:11:17 -0500) edit
add a comment see more comments
2

For an automated way, you could query the output SQLite file with:

SELECT Value from tabulardatawithstrings WHERE ReportName='AnnualBuildingUtilityPerformanceSummary' AND ReportForString='Entire Facility' AND TableName='Building Area' AND RowName='Total Building Area'

ericringold's avatar
10.6k
ericringold
answered 2019-04-25 14:24:03 -0500, updated 2019-04-25 14:24:29 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments