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 9 years ago

updated 9 years ago

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.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
4

answered 9 years ago

updated 9 years ago

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
Preview: (hide)
link

Comments

@obuchely See my update

aparker's avatar aparker  ( 9 years ago )

Your Answer

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

Add Answer

Training Workshops

Careers

Question Tools

2 followers

Stats

Asked: 9 years ago

Seen: 422 times

Last updated: Aug 17 '15