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

How do I add the Component Sizing Summary Report in OS?

asked 2015-08-13 15:51:14 -0500

obuchely's avatar

updated 2015-08-14 06:41:34 -0500

I know you can add some line in e+ to get the Component Sizing Summary report. But I want to do it from OS. In OS Result Summary tab I can click EnergyPlus Results in the Report box but the Component Sizing Summary section is empty.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
4

answered 2015-08-14 11:44:31 -0500

updated 2015-08-17 09:43:44 -0500

The Component Sizing section of the EnergyPlus HTML Report automatically shows if you have autosized objects in your model. If you don't have any autosized objects in your model, check out the Equipment Summary section to see the details of your HVAC equipment.

--Update--

Based on your comment, it sounds like you are actually looking for the Zone Component Load Summary report:

image description

You can request this report by adding the Zone Report Measure to your run. This Reporting Measure also gives you some nice graphics to visualize the load breakdown.

Or, you can request this report yourself by adding the following code to a Reporting Measure:

def energyPlusOutputRequests(runner, user_arguments)
    super(runner, user_arguments)

    result = OpenStudio::IdfObjectVector.new

    # use the built-in error checking
    if !runner.validateUserArguments(arguments(), user_arguments)
      return result
    end

    request = OpenStudio::IdfObject.load("Output:Table:SummaryReports,AllSummaryAndSizingPeriod;").get
    result << request
  return result
end
edit flag offensive delete link more

Comments

@obuchely See my update

aparker's avatar aparker  ( 2015-08-17 09:44:14 -0500 )edit

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

2 followers

Stats

Asked: 2015-08-13 15:51:14 -0500

Seen: 378 times

Last updated: Aug 17 '15