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

Revision history [back]

You can use Output:Meter for this, if you are looking for a single value for the home. In particular:

Output:Meter,Heating:*,Hourly;
Output:Meter,Cooling:*,Hourly;

Let's break down the first one Output:Meter,Heating*,Hourly;:

  • This is the form <EndUseType>:<ResourceType>:<name>. You are asking to report the End Use Heating and using a wildcard to return all ResourceType (fuels)
  • The reporting frequency is set to "Hourly", meaning you will get 8760 values.

Look at the documentation I linked above for more information (and more options), and after a succesful run you can also look at the *.mtd file that is created by E+. You can also look at the Output Details and Examples Volume for eplusout.mtd documentation.

You can use Output:Meter for this, if you are looking for a single total value for the home. In particular:particular, these meters will be of interest

Output:Meter,Heating:*,Hourly;
Output:Meter,Cooling:*,Hourly;

Let's break down the first one Output:Meter,Heating*,Hourly;:

  • This is the form <EndUseType>:<ResourceType>:<name>. You are asking to report the End Use Heating and using a wildcard to return all ResourceType (fuels)
  • The reporting frequency is set to "Hourly", meaning you will get 8760 values.

You might want to be more specific, for example Heating:Gas to return the gas consumption used for heating (if you have a boiler for example). Or Heating:EnergyTransfer if you want to look at the energy actually used to condition your zones.

Look at the documentation I linked above for more information (and more options), and after a succesful run you can options). You should also look at the *.mtdOutput Details and Examples Volume for eplusout.mtd documentation: after a successful run you can look at the eplusout.mtd file that is created by E+. You can also look at the Output Details E+ which will show you available meters and Examples Volume for eplusout.mtd documentation.

what they report exactly.