First time here? Check out the Help page!
1 | initial version |
I'm assuming you have already built your entire model in the simulation program, and just want to cherry pick the zone you want. It's not very practical to delete all the rest of the zones, as many objects are linked in E+. The easiest way, if simulation time isn't too bad, is to run the entire model and then isolate the output.
E+ has two ways of reporting;
- The easiest is to select one of the predefined Output:Table:SummaryReports
. The one you will be most interested in are ZoneCoolingSummaryMonthly
and ZoneHeatingSummaryMonthly
.
ZoneComponentLoadSummary
as @Amir Roth mentions, is to understand where peak heating and cooling loads are coming from by breaking it in various components (it is a load, not how much energy is consumed)
Check out the Input/output reference, section "Output:Table:SummaryReports" and especially the subsection "Predefined Monthly Summary Reports" here
Output:Table:SummaryReports, AllSummary, !- Report 1 Name ZoneComponentLoadSummary,!- Report 2 Name ZoneCoolingSummaryMonthly, !- Report 3 Name ZoneHeatingSummaryMonthly; !- Report 4 Name
HVAC,Sum,Zone Air System Sensible Heating Energy [J]
and HVAC,Sum,Zone Air System Sensible Cooling Energy [J]
) using either Output:Variable
, or use the convenient Output:Table:Monthly
object if that makes sense for you.Output:Table:Monthly, Heating and cooling loads, !- Name 0, !- Digits After Decimal Zone Air System Sensible Heating Energy , !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 Zone Air System Sensible Cooling Energy , !- Variable or Meter 2 Name SumOrAverage; !- Aggregation Type for Variable or Meter 2
2 | No.2 Revision |
I'm assuming you have already built your entire model in the simulation program, and just want to cherry pick the zone you want.
want.
It's not very practical to delete all the rest of the zones, as many objects are linked in E+.
The E+ and having left-overs not linked to the objects E+ is expecting will lead to a crash. Therefore, the easiest way, if simulation time isn't too bad, is to run the entire model and then isolate the output.
I can't give you an OpenStudio specific solution as I'm not familiar with it, but this should get you started.
E+ has two ways of reporting;
- reporting:
1) The easiest is to select one of the predefined Output:Table:SummaryReports
. The one you will be most interested in are ZoneCoolingSummaryMonthly
and ZoneHeatingSummaryMonthly
.
.
ZoneComponentLoadSummary
as @Amir Roth mentions, is also very helpful to understand where peak peak heating and cooling loads loads are coming from by breaking it in various components (it is a load, (peak loads, not how much energy is consumed)
used)
Check out the Input/output reference, section "Output:Table:SummaryReports" and especially the subsection "Predefined Monthly Summary Reports" (herehere online
)
Example
Output:Table:SummaryReports,
AllSummary, !- Report 1 NameZoneCoolingSummaryMonthly, !- Report 2 Name ZoneHeatingSummaryMonthly; !- Report 3 Name ZoneComponentLoadSummary,!- Report2 Name ZoneCoolingSummaryMonthly, !- Report 3 Name ZoneHeatingSummaryMonthly; !- Report4NameName
2) You could also ask for specific variables (HVAC,Sum,Zone Air System Sensible Heating Energy [J]
and HVAC,Sum,Zone Air System Sensible Cooling Energy [J]
) using either Output:Variable
, or use the convenient Output:Table:Monthly
object if that makes sense for you.
Example:
Output:Table:Monthly,
Zone Heating and cooling loads, !- Name0, !- Digits After DecimalZone Air System Sensible Heating Energy , !- Variable or Meter 1 NameSumOrAverage, !- Aggregation Type for Variable or Meter 1Zone Air System Sensible Cooling Energy , !- Variable or Meter 2 NameSumOrAverage; !- Aggregation Type for Variable or Meter22