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

Producing an .edd output file

asked 2014-12-18 09:08:07 -0500

updated 2015-04-13 13:44:51 -0500

I'm reading through the EMS documentation and I see that I need to include some EMS objects before the .edd file (which tells me what EMS objects are available) is produced. Is this as chicken-and-egg as it sounds or have I missed some higher level EMS object I can add?

I've added this part at the end of the file, but what other object should I add as a starter that will allow the .edd to be produced?

Output:EnergyManagementSystem,
    Verbose,    ! Actuator Availability Dictionary Reporting
    Verbose,    ! Internal Variable Availability Dictionary Reporting
    ErrorsOnly; ! EnergyPlus Runtime Language Debug Output Level
edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
6

answered 2014-12-18 09:24:49 -0500

Archmage's avatar

updated 2014-12-18 09:35:49 -0500

For the .edd, use an Output:EnergyManagementSystem object. You also need some other EMS objects like EnergyManagementSystem:ProgramCallingManager. Yes it is a chicken and the egg situation -- but similiar to working with the .rdd file. The reason it ends up that way is to improve performance when no EMS is being used; if no EMS related input is present the program can avoid all kinds of routines and the actuators and sensors don't actually exist.

Output:EnergyManagementSystem,
    Verbose,    ! Actuator Availability Dictionary Reporting
    Verbose,    ! Internal Variable Availability Dictionary Reporting
    ErrorsOnly; ! EnergyPlus Runtime Language Debug Output Level

EnergyManagementSystem:ProgramCallingManager,
    Dummy Program Manager, ! Name
    EndOfSystemSizing, ! EnergyPlus Model Calling Point
    DummyProgram; ! Program Name 1

EnergyManagementSystem:Program,
    DummyProgram, ! Name
    SET A = 1;
edit flag offensive delete link more

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: 2014-12-18 09:08:07 -0500

Seen: 717 times

Last updated: Dec 18 '14