First time here? Check out the Help page!

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

updated 9 years ago

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

1 Answer

Sort by » oldest newest most voted
6

answered 10 years ago

Archmage's avatar

updated 10 years ago

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

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: 10 years ago

Seen: 813 times

Last updated: Dec 18 '14