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

Custom Meter in EnergyPlus

asked 2015-01-30 14:06:36 -0500

updated 2015-07-11 16:57:44 -0500

I'm trying to create a custom meter in EnergyPlus to report demand by end use. For example I would like to create a meter to report the hourly Lights Electric Power OutputVariable to the *Meter.csv file. I think this is possible, but I'm not completely sure if it is, what the correct syntax is, or if there's another object I need (the documentation is rather sparse). Here's what I've specified in the IDF:

Meter:Custom,
  MeterCustom,             !- Name
  Electricity,             !- Fuel Type
  ,                       !- Key Name 1
  Lights Electric Power;  !- Output Variable or Meter Name 1

Output:Meter:MeterFileOnly,
  METERCUSTOM,             !- Name
  Hourly;                  !- Reporting Frequency
edit retag flag offensive close merge delete

Comments

1

This thread may help.

David Goldwasser's avatar David Goldwasser  ( 2015-01-30 14:34:59 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
3

answered 2015-02-06 07:26:10 -0500

If you are just looking for the annual peak demand, you may want to take a look at the "Energy Meters" table in tabular output file. If you want monthly peak demands, take a look at the 5ZoneEconomicsTariffAndLifeCycleCosts.idf example file and the PEAK ENERGY END-USE - ELECTRICITY PART 1 and 2 reports in the tabular output file. If you want monthly values in the meter file, you can use:

  Output:Meter:MeterFileOnly,Electricity:Facility,monthly;
  Output:Meter:MeterFileOnly,Electricity:Building,monthly;
  Output:Meter:MeterFileOnly,InteriorLights:Electricity,monthly;
  Output:Meter:MeterFileOnly,Electricity:HVAC,monthly;
  Output:Meter:MeterFileOnly,Electricity:Plant,monthly;

etc...

Note that the raw MTR file has the maximum value for each meter but that is not included in the Meter.csv file. If you want them in the normal CSV file you can use the "power" versions of the outputs for individual items like:

Lights Electric Power

edit flag offensive delete link more

Comments

Thanks @JasonGlazer, the annual peak demand by end use in Energy Meters has what I was looking for.

MatthewSteen's avatar MatthewSteen  ( 2015-02-24 15:27:33 -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

1 follower

Stats

Asked: 2015-01-30 14:06:36 -0500

Seen: 722 times

Last updated: Feb 06 '15